{{ doc.subject }}
-- {{ frappe.format_date(doc.modified) }} -
-From e9fed9dcc985172d5096f3491b07c419ff67fc8b Mon Sep 17 00:00:00 2001 From: marination <25857446+marination@users.noreply.github.com> Date: Tue, 15 Apr 2025 18:18:31 +0200 Subject: [PATCH 001/211] fix: Render List row buttons as columns to avoid overflow - In the RHS, the buttons caused the like button to flow outside the container --- cypress/integration/list_view.js | 29 ++++++++++++ frappe/public/js/frappe/list/list_view.js | 56 +++++++++++++++-------- frappe/tests/ui_test_helpers.py | 4 +- 3 files changed, 68 insertions(+), 21 deletions(-) diff --git a/cypress/integration/list_view.js b/cypress/integration/list_view.js index 7117d8f98d..d6cc16fef1 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -51,4 +51,33 @@ context("List View", () => { cy.get(".list-row-container:visible").should("contain", "Approved"); }); }); + + it("Adds a button to each list view row", () => { + // Get a ToDo with a reference name + cy.call("frappe.client.get_value", { + doctype: "ToDo", + filters: { + reference_name: ["is", "set"], + }, + fieldname: "name", + }).then((r) => { + const todo_name = r.message.name; + cy.go_to_list("ToDo"); + + // Check if the 'Open' button is present in the ToDo list view + cy.get(".btn-default[data-name='" + todo_name + "']") + .should((el) => { + expect(el).to.exist; + }) + .click(); + + cy.window() + .its("cur_frm") + .then((frm) => { + // Routes to the reference document + expect(frm.doc.doctype).to.equal("ToDo"); + expect(frm.doc.name).to.not.equal(todo_name); + }); + }); + }); }); diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 763b1b7466..e79dfc1fc1 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -692,7 +692,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { ${__(subject_field.label)} `; - const $columns = this.columns + let $columns = this.columns .map((col) => { let classes = [ "list-row-col ellipsis", @@ -717,6 +717,14 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { }) .join(""); + // Add column for button and dropdown button to the header + if (this.settings.button) { + $columns += `
`; + } + if (this.settings.dropdown_button) { + $columns += ``; + } + const right_html = ` @@ -755,7 +763,26 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { } get_left_html(doc) { - return this.columns.map((col) => this.get_column_html(col, doc)).join(""); + let left_html = this.columns.map((col) => this.get_column_html(col, doc)).join(""); + + if (this.settings.button) { + const button_html = ` + + `; + left_html += ` +Condition Examples:
\ndoc.status==\"Open\"\n" @@ -311,12 +319,31 @@ "fieldtype": "Datetime", "label": "Last Run", "read_only": 1 + }, + { + "default": "Python", + "fieldname": "condition_type", + "fieldtype": "Select", + "label": "Condition Type", + "options": "Python\nFilters" + }, + { + "depends_on": "eval:doc.condition_type===\"Filters\"", + "fieldname": "filters_editor", + "fieldtype": "HTML", + "label": "Filters Editor" + }, + { + "fieldname": "filters_section", + "fieldtype": "Section Break", + "label": "Filters" } ], + "grid_page_length": 50, "icon": "fa fa-envelope", "index_web_pages_for_search": 1, "links": [], - "modified": "2024-09-12 10:28:35.077180", + "modified": "2025-05-10 21:03:15.561558", "modified_by": "Administrator", "module": "Email", "name": "Notification", @@ -334,9 +361,10 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "subject", "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index 07b8d54d25..24e344f09c 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -15,6 +15,7 @@ from frappe.integrations.doctype.slack_webhook_url.slack_webhook_url import send from frappe.model.document import Document from frappe.modules.utils import export_module_json, get_doc_module from frappe.utils import add_to_date, cast, now_datetime, nowdate, validate_email_address +from frappe.utils.data import evaluate_filters from frappe.utils.jinja import validate_template from frappe.utils.safe_exec import get_safe_globals @@ -36,6 +37,7 @@ class Notification(Document): attach_print: DF.Check channel: DF.Literal["Email", "Slack", "System Notification", "SMS"] condition: DF.Code | None + condition_type: DF.Literal["Python", "Filters"] date_changed: DF.Literal[None] datetime_changed: DF.Literal[None] datetime_last_run: DF.Datetime | None @@ -56,6 +58,7 @@ class Notification(Document): "Method", "Custom", ] + filters: DF.Code | None is_standard: DF.Check message: DF.Code | None message_type: DF.Literal["Markdown", "HTML", "Plain Text"] @@ -88,12 +91,15 @@ class Notification(Document): @frappe.whitelist() def preview_meets_condition(self, preview_document): - if not self.condition: + if not self.condition and not self.filters: return _("Yes") try: doc = frappe.get_cached_doc(self.document_type, preview_document) - context = get_context(doc) - return _("Yes") if frappe.safe_eval(self.condition, eval_locals=context) else _("No") + if self.condition_type == "Python": + context = get_context(doc) + return _("Yes") if frappe.safe_eval(self.condition, eval_locals=context) else _("No") + elif self.condition_type == "Filters": + return _("Yes") if evaluate_filters(doc, json.loads(self.filters)) else _("No") except Exception as e: frappe.local.message_log = [] return _("Failed to evaluate conditions: {}").format(e) @@ -135,6 +141,9 @@ class Notification(Document): # END: PreviewRenderer API + def before_save(self): + self.remove_invalid_condition() + def validate(self): if self.channel in ("Email", "Slack", "System Notification"): validate_template(self.subject) @@ -159,6 +168,7 @@ class Notification(Document): self.validate_forbidden_document_types() self.validate_condition() + self.validate_filters() self.validate_standard() clear_notification_cache() @@ -192,13 +202,29 @@ def get_context(context): _("Cannot edit Standard Notification. To edit, please disable this and duplicate it") ) + def remove_invalid_condition(self): + if self.condition_type == "Filters": + self.condition = None + elif self.condition_type == "Python": + self.filters = None + def validate_condition(self): + if not self.condition: + return + temp_doc = frappe.new_doc(self.document_type) - if self.condition: - try: - frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict())) - except Exception: - frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) + try: + frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict())) + except Exception: + frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) + + def validate_filters(self): + if not self.filters: + return + + filters = json.loads(self.filters) + dummy_doc = frappe.new_doc(self.document_type) + evaluate_filters(dummy_doc, filters) def validate_forbidden_document_types(self): if self.document_type in FORBIDDEN_DOCUMENT_TYPES or ( @@ -232,10 +258,18 @@ def get_context(context): ], ) + filters = json.loads(self.filters) if self.condition_type == "Filters" and self.filters else None + for d in doc_list: doc = frappe.get_doc(self.document_type, d.name) - if self.condition and not frappe.safe_eval(self.condition, None, get_context(doc)): + if ( + self.condition_type == "Python" + and self.condition + and not frappe.safe_eval(self.condition, None, get_context(doc)) + ): + continue + elif filters and not evaluate_filters(doc, filters): continue docs.append(doc) @@ -281,10 +315,18 @@ def get_context(context): self.db_set("datetime_last_run", now) # set reference now for next run + filters = json.loads(self.filters) if self.condition_type == "Filters" and self.filters else None + for d in doc_list: doc = frappe.get_doc(self.document_type, d.name) - if self.condition and not frappe.safe_eval(self.condition, None, get_context(doc)): + if ( + self.condition_type == "Python" + and self.condition + and not frappe.safe_eval(self.condition, None, get_context(doc)) + ): + continue + elif filters and not evaluate_filters(doc, filters): continue docs.append(doc) @@ -705,9 +747,12 @@ def evaluate_alert(doc: Document, alert, event=None): context = get_context(doc) - if alert.condition: + if alert.condition_type == "Python" and alert.condition: if not frappe.safe_eval(alert.condition, None, context): return + elif alert.condition_type == "Filters" and alert.filters: + if not evaluate_filters(doc, json.loads(alert.filters)): + return if event == "Value Change" and not doc.is_new(): if not frappe.db.has_column(doc.doctype, alert.value_changed): From 498314e2c5d678609fa066e86e81ddde139fe55d Mon Sep 17 00:00:00 2001 From: mahsem <137205921+mahsem@users.noreply.github.com> Date: Sun, 25 May 2025 19:05:57 +0200 Subject: [PATCH 005/211] fix: Clear_All _translation --- frappe/public/js/frappe/form/controls/multiselect_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/multiselect_list.js b/frappe/public/js/frappe/form/controls/multiselect_list.js index 9fd7eb909e..b26b9ecb3d 100644 --- a/frappe/public/js/frappe/form/controls/multiselect_list.js +++ b/frappe/public/js/frappe/form/controls/multiselect_list.js @@ -16,7 +16,7 @@ frappe.ui.form.ControlMultiSelectList = class ControlMultiSelectList extends (
doc.due_date==nowdate()
doc.total > 40000\n
{}. {}.
- - """.format(*translatable_content) - - frappe.sendmail( - email, - subject=email_subject, - content=content, - ) - - -@frappe.whitelist(allow_guest=True) -def confirm_subscription(email, email_group=None): - """API endpoint to confirm email subscription. - This endpoint is called when user clicks on the link sent to their mail. - """ - if not verify_request(): - return - - if email_group is None: - email_group = get_default_email_group() - - try: - group = frappe.get_doc("Email Group", email_group) - except frappe.DoesNotExistError: - group = frappe.get_doc({"doctype": "Email Group", "title": email_group}).insert( - ignore_permissions=True - ) - - frappe.flags.ignore_permissions = True - - add_subscribers(email_group, email) - frappe.db.commit() - - welcome_url = group.get_welcome_url(email) - - if welcome_url: - frappe.local.response["type"] = "redirect" - frappe.local.response["location"] = welcome_url - else: - frappe.respond_as_web_page( - _("Confirmed"), - _("{0} has been successfully added to the Email Group.").format(email), - indicator_color="green", - ) - - -def get_list_context(context=None): - context.update( - { - "show_search": True, - "no_breadcrumbs": True, - "title": _("Newsletters"), - "filters": {"published": 1}, - "row_template": "email/doctype/newsletter/templates/newsletter_row.html", - } - ) - - -def send_scheduled_email(): - """Send scheduled newsletter to the recipients.""" - frappe.flags.is_scheduler_running = True - - scheduled_newsletter = frappe.get_all( - "Newsletter", - filters={ - "schedule_send": ("<=", frappe.utils.now_datetime()), - "email_sent": False, - "schedule_sending": True, - }, - ignore_ifnull=True, - pluck="name", - ) - - for newsletter_name in scheduled_newsletter: - try: - newsletter = frappe.get_doc("Newsletter", newsletter_name) - newsletter.queue_all() - - except Exception: - frappe.db.rollback() - - # wasn't able to send emails :( - frappe.db.set_value("Newsletter", newsletter_name, "email_sent", 0) - newsletter.log_error("Failed to send newsletter") - - if not frappe.in_test: - frappe.db.commit() - - frappe.flags.is_scheduler_running = False - - -@frappe.whitelist(allow_guest=True) -def newsletter_email_read(recipient_email=None, reference_doctype=None, reference_name=None): - if not (recipient_email and reference_name): - return - verify_request() - try: - doc = frappe.get_cached_doc("Newsletter", reference_name) - if doc.add_viewed(recipient_email, force=True, unique_views=True): - newsletter = frappe.qb.DocType("Newsletter") - ( - frappe.qb.update(newsletter) - .set(newsletter.total_views, newsletter.total_views + 1) - .where(newsletter.name == doc.name) - ).run() - - except Exception: - frappe.log_error( - title=f"Unable to mark as viewed for {recipient_email}", - reference_doctype="Newsletter", - reference_name=reference_name, - ) - - finally: - frappe.response.update(frappe.utils.get_imaginary_pixel_response()) - - -def get_default_email_group(): - return _("Website", lang=frappe.db.get_default("language")) diff --git a/frappe/email/doctype/newsletter/newsletter_list.js b/frappe/email/doctype/newsletter/newsletter_list.js deleted file mode 100644 index 71e9423b7e..0000000000 --- a/frappe/email/doctype/newsletter/newsletter_list.js +++ /dev/null @@ -1,12 +0,0 @@ -frappe.listview_settings["Newsletter"] = { - add_fields: ["subject", "email_sent", "schedule_sending"], - get_indicator: function (doc) { - if (doc.email_sent) { - return [__("Sent"), "green", "email_sent,=,1"]; - } else if (doc.schedule_sending) { - return [__("Scheduled"), "purple", "email_sent,=,0|schedule_sending,=,1"]; - } else { - return [__("Not Sent"), "gray", "email_sent,=,0"]; - } - }, -}; diff --git a/frappe/email/doctype/newsletter/templates/newsletter.html b/frappe/email/doctype/newsletter/templates/newsletter.html deleted file mode 100644 index 05f3560648..0000000000 --- a/frappe/email/doctype/newsletter/templates/newsletter.html +++ /dev/null @@ -1,65 +0,0 @@ -{% extends "templates/web.html" %} - -{% block title %} {{ doc.subject }} {% endblock %} - -{% block page_content %} - - -- {{ frappe.format_date(doc.modified) }} -
-{{ _(subtitle) }}
{%- endif -%} From ed14fafe32293022de26122439664b6b2edd9f04 Mon Sep 17 00:00:00 2001 From: Antoine Maas{{ _(subtitle) }}
{%- endif -%} From a2bca73ac3d9a902a8ad57d783ae7eed2fa959cf Mon Sep 17 00:00:00 2001 From: Antoine Maas
{{ _(subtitle) }}
From e9c302ac0de1b10e7f0105edb6077b0e1bca4712 Mon Sep 17 00:00:00 2001
From: Antoine Maas
{{ _(subtitle) }}
From 2b20e93fe72c755362779a7127bb9b49f2f596a5 Mon Sep 17 00:00:00 2001
From: Antoine Maas {{ _(subtitle) }} {{ _(subtitle) }} {{ subtitle }} {{ subtitle }} Please use following links to download file backup. Public Files Backup: {{ backup_path_files }} Private Files Backup: {{ backup_path_private_files }} {{ _("Please use following links to download file backup.") {{ _("Public Files Backup:") {{ backup_path_files }} {{ _("Private Files Backup:") {{ backup_path_private_files }}
{{ _(title) }}
+ {%- endif -%}
{%- if subtitle -%}
{{ _(title) }}
+ {%- endif -%}
{%- if subtitle -%}
{{ _(title) }}
+ {%- endif -%}
{%- if subtitle -%}
{{ title }}
+ {%- if title -%}
+ {{ _(title) }}
+ {%- endif -%}
{{ title or '' }}
+ {%- if title -%}
+ {{ _(title) }}
+ {%- endif -%}
{%- if subtitle -%}
" +
+ `${url.bold()}`,
+ __("Here's your tracking URL")
+ );
+ },
+ __("Generate Tracking URL")
+ );
+ },
/**
* Checks if a value is empty.
*
From 0d58394db0c0bbd9cc794d2ae5b2392bc3bda44b Mon Sep 17 00:00:00 2001
From: flaviacastro
{1}"
-msgstr ""
+msgstr "การปรับแต่งสำหรับ {0} ถูกส่งออกไปยัง:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
-msgstr ""
+msgstr "ปรับแต่ง"
#: frappe/public/js/frappe/list/list_view.js:1802
msgctxt "Button in list view menu"
msgid "Customize"
-msgstr ""
+msgstr "ปรับแต่ง"
#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
-msgstr ""
+msgstr "ปรับแต่งตารางย่อย"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
msgid "Customize Dashboard"
-msgstr ""
+msgstr "ปรับแต่งแดชบอร์ด"
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -6038,16 +6038,16 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
msgid "Customize Form"
-msgstr ""
+msgstr "ปรับแต่งฟอร์ม"
#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
-msgstr ""
+msgstr "ปรับแต่งฟอร์ม - {0}"
#. Name of a DocType
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
-msgstr ""
+msgstr "ปรับแต่งฟิลด์ฟอร์ม"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -6108,46 +6108,46 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
-msgstr ""
+msgstr "รายวัน"
#: frappe/templates/emails/upcoming_events.html:8
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
-msgstr ""
+msgstr "ส่งสรุปเหตุการณ์รายวันสำหรับกิจกรรมในปฏิทินที่ตั้งค่าการเตือน"
#: frappe/desk/doctype/event/event.py:100
msgid "Daily Events should finish on the Same Day."
-msgstr ""
+msgstr "กิจกรรมรายวันควรเสร็จสิ้นในวันเดียวกัน"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr ""
+msgstr "รายวันแบบยาว"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Daily Maintenance"
-msgstr ""
+msgstr "การบำรุงรักษารายวัน"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr ""
+msgstr "อันตราย"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Dark"
-msgstr ""
+msgstr "มืด"
#. Label of the dark_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr ""
+msgstr "สีเข้ม"
#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
-msgstr ""
+msgstr "ธีมมืด"
#. Label of the dashboard (Check) field in DocType 'User'
#. Label of a Link in the Build Workspace
@@ -6164,7 +6164,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
#: frappe/public/js/frappe/utils/utils.js:932
msgid "Dashboard"
-msgstr ""
+msgstr "แดชบอร์ด"
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -6172,48 +6172,48 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
msgid "Dashboard Chart"
-msgstr ""
+msgstr "แผนภูมิแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
msgid "Dashboard Chart Field"
-msgstr ""
+msgstr "ฟิลด์แผนภูมิแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Dashboard Chart Link"
-msgstr ""
+msgstr "ลิงก์แผนภูมิแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Dashboard Chart Source"
-msgstr ""
+msgstr "แหล่งข้อมูลแผนภูมิแดชบอร์ด"
#. Name of a role
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Dashboard Manager"
-msgstr ""
+msgstr "ผู้จัดการแดชบอร์ด"
#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr ""
+msgstr "ชื่อแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Dashboard Settings"
-msgstr ""
+msgstr "การตั้งค่าแดชบอร์ด"
#: frappe/public/js/frappe/list/base_list.js:204
msgid "Dashboard View"
-msgstr ""
+msgstr "มุมมองแดชบอร์ด"
#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr ""
+msgstr "แดชบอร์ด"
#. Label of a Card Break in the Tools Workspace
#. Label of the data (Code) field in DocType 'Deleted Document'
@@ -6242,67 +6242,67 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Data"
-msgstr ""
+msgstr "ข้อมูล"
#: frappe/public/js/frappe/form/controls/data.js:59
msgid "Data Clipped"
-msgstr ""
+msgstr "ข้อมูลถูกตัด"
#. Name of a DocType
#: frappe/core/doctype/data_export/data_export.json
msgid "Data Export"
-msgstr ""
+msgstr "การส่งออกข้อมูล"
#. Name of a DocType
#. Label of the data_import (Link) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import"
-msgstr ""
+msgstr "การนำเข้าข้อมูล"
#. Name of a DocType
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import Log"
-msgstr ""
+msgstr "บันทึกการนำเข้าข้อมูล"
#: frappe/core/doctype/data_export/exporter.py:174
msgid "Data Import Template"
-msgstr ""
+msgstr "แม่แบบการนำเข้าข้อมูล"
#: frappe/custom/doctype/customize_form/customize_form.py:614
msgid "Data Too Long"
-msgstr ""
+msgstr "ข้อมูลยาวเกินไป"
#. Label of the database (Data) field in DocType 'System Health Report'
#. Label of the database_section (Section Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Database"
-msgstr ""
+msgstr "ฐานข้อมูล"
#. Label of the engine (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Database Engine"
-msgstr ""
+msgstr "เอนจินฐานข้อมูล"
#. Label of the database_processes_section (Section Break) field in DocType
#. 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Database Processes"
-msgstr ""
+msgstr "กระบวนการฐานข้อมูล"
#: frappe/public/js/frappe/doctype/index.js:38
msgid "Database Row Size Utilization"
-msgstr ""
+msgstr "การใช้งานขนาดแถวฐานข้อมูล"
#. Name of a report
#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
msgid "Database Storage Usage By Tables"
-msgstr ""
+msgstr "การใช้งานพื้นที่จัดเก็บฐานข้อมูลตามตาราง"
#: frappe/custom/doctype/customize_form/customize_form.py:248
msgid "Database Table Row Size Limit"
-msgstr ""
+msgstr "ขีดจำกัดขนาดแถวของตารางฐานข้อมูล"
#: frappe/public/js/frappe/doctype/index.js:40
msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
@@ -6311,7 +6311,7 @@ msgstr ""
#. Label of the database_version (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Database Version"
-msgstr ""
+msgstr "เวอร์ชันฐานข้อมูล"
#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
#. Label of the communication_date (Datetime) field in DocType 'Communication'
@@ -6333,7 +6333,7 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
-msgstr ""
+msgstr "วันที่"
#. Label of the date_format (Select) field in DocType 'Language'
#. Label of the date_format (Select) field in DocType 'System Settings'
@@ -6342,28 +6342,28 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr ""
+msgstr "รูปแบบวันที่"
#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/public/js/frappe/widgets/chart_widget.js:237
msgid "Date Range"
-msgstr ""
+msgstr "ช่วงวันที่"
#. Label of the date_and_number_format (Section Break) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr ""
+msgstr "รูปแบบวันที่และตัวเลข"
#: frappe/public/js/frappe/form/controls/date.js:247
msgid "Date {0} must be in format: {1}"
-msgstr ""
+msgstr "วันที่ {0} ต้องอยู่ในรูปแบบ: {1}"
#: frappe/utils/password_strength.py:129
msgid "Dates are often easy to guess."
-msgstr ""
+msgstr "วันที่มักจะเดาได้ง่าย"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -6378,7 +6378,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Datetime"
-msgstr ""
+msgstr "วันที่และเวลา"
#. Label of the day (Select) field in DocType 'Assignment Rule Day'
#. Label of the day (Select) field in DocType 'Auto Repeat Day'
@@ -6386,7 +6386,7 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
#: frappe/public/js/frappe/views/calendar/calendar.js:277
msgid "Day"
-msgstr ""
+msgstr "วัน"
#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -6396,51 +6396,51 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr ""
+msgstr "วันหลังจาก"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr ""
+msgstr "วันก่อน"
#. Label of the days_in_advance (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr ""
+msgstr "วันก่อนหรือหลัง"
#: frappe/public/js/frappe/request.js:252
msgid "Deadlock Occurred"
-msgstr ""
+msgstr "เกิดการล็อกตาย"
#: frappe/templates/emails/password_reset.html:1
msgid "Dear"
-msgstr ""
+msgstr "เรียน"
#: frappe/templates/emails/administrator_logged_in.html:1
msgid "Dear System Manager,"
-msgstr ""
+msgstr "เรียน ผู้จัดการระบบ,"
#: frappe/templates/emails/account_deletion_notification.html:1
#: frappe/templates/emails/delete_data_confirmation.html:1
msgid "Dear User,"
-msgstr ""
+msgstr "เรียน ผู้ใช้,"
#: frappe/templates/emails/download_data.html:1
msgid "Dear {0}"
-msgstr ""
+msgstr "เรียน {0}"
#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Debug Log"
-msgstr ""
+msgstr "บันทึกการดีบัก"
#: frappe/public/js/frappe/views/reports/report_utils.js:308
msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
-msgstr ""
+msgstr "ตัวคั่นทศนิยมต้องเป็น '.' เมื่อการอ้างอิงถูกตั้งค่าเป็นไม่ใช่ตัวเลข"
#: frappe/public/js/frappe/views/reports/report_utils.js:300
msgid "Decimal Separator must be a single character"
-msgstr ""
+msgstr "ตัวคั่นทศนิยมต้องเป็นตัวอักษรเดียว"
#. Label of the default (Small Text) field in DocType 'DocField'
#. Label of the default (Small Text) field in DocType 'Report Filter'
@@ -6456,7 +6456,7 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Default"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#: frappe/contacts/doctype/address_template/address_template.py:41
msgid "Default Address Template cannot be deleted"
@@ -6593,24 +6593,24 @@ msgstr ""
#. Label of the default_workspace (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Default Workspace"
-msgstr ""
+msgstr "พื้นที่ทำงานเริ่มต้น"
#. Description of the 'Currency' (Link) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Default display currency"
-msgstr ""
+msgstr "สกุลเงินแสดงผลเริ่มต้น"
#: frappe/core/doctype/doctype/doctype.py:1376
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
-msgstr ""
+msgstr "ค่าเริ่มต้นสำหรับฟิลด์ประเภท 'Check' {0} ต้องเป็น '0' หรือ '1'"
#: frappe/core/doctype/doctype/doctype.py:1389
msgid "Default value for {0} must be in the list of options."
-msgstr ""
+msgstr "ค่าดีฟอลต์สำหรับ {0} ต้องอยู่ในรายการตัวเลือก"
#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
msgid "Default {0}"
-msgstr ""
+msgstr "ค่าเริ่มต้น {0}"
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -6620,33 +6620,33 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/defaultvalue/defaultvalue.json
msgid "DefaultValue"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#. Label of the defaults_section (Section Break) field in DocType 'DocField'
#. Label of the sb2 (Section Break) field in DocType 'User'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#: frappe/email/doctype/email_account/email_account.py:243
msgid "Defaults Updated"
-msgstr ""
+msgstr "อัปเดตค่าเริ่มต้นแล้ว"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Defines actions on states and the next step and allowed roles."
-msgstr ""
+msgstr "กำหนดการกระทำในสถานะ ขั้นตอนถัดไป และบทบาทที่อนุญาต"
#. Description of a DocType
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Defines workflow states and rules for a document."
-msgstr ""
+msgstr "กำหนดสถานะและกฎของเวิร์กโฟลว์สำหรับเอกสาร"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Delayed"
-msgstr ""
+msgstr "ล่าช้า"
#. Label of the delete (Check) field in DocType 'Custom DocPerm'
#. Label of the delete (Check) field in DocType 'DocPerm'
@@ -6663,95 +6663,95 @@ msgstr ""
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
-msgstr ""
+msgstr "ลบ"
#: frappe/public/js/frappe/list/list_view.js:2027
msgctxt "Button in list view actions menu"
msgid "Delete"
-msgstr ""
+msgstr "ลบ"
#: frappe/www/me.html:65
msgid "Delete Account"
-msgstr ""
+msgstr "ลบบัญชี"
#: frappe/public/js/frappe/form/grid.js:66
msgid "Delete All"
-msgstr ""
+msgstr "ลบทั้งหมด"
#: frappe/public/js/form_builder/components/Section.vue:196
msgctxt "Title of confirmation dialog"
msgid "Delete Column"
-msgstr ""
+msgstr "ลบคอลัมน์"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
msgid "Delete Data"
-msgstr ""
+msgstr "ลบข้อมูล"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
msgid "Delete Kanban Board"
-msgstr ""
+msgstr "ลบกระดานคัมบัง"
#: frappe/public/js/form_builder/components/Section.vue:125
msgctxt "Title of confirmation dialog"
msgid "Delete Section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/public/js/form_builder/components/Tabs.vue:64
msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
-msgstr ""
+msgstr "ลบแท็บ"
#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
-msgstr ""
+msgstr "ลบและสร้างใหม่"
#: frappe/public/js/form_builder/components/Section.vue:203
msgctxt "Button text"
msgid "Delete column"
-msgstr ""
+msgstr "ลบคอลัมน์"
#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
-msgstr ""
+msgstr "ลบความคิดเห็น?"
#: frappe/public/js/form_builder/components/Section.vue:205
msgctxt "Button text"
msgid "Delete entire column with fields"
-msgstr ""
+msgstr "ลบทั้งคอลัมน์พร้อมฟิลด์"
#: frappe/public/js/form_builder/components/Section.vue:134
msgctxt "Button text"
msgid "Delete entire section with fields"
-msgstr ""
+msgstr "ลบทั้งส่วนพร้อมฟิลด์"
#: frappe/public/js/form_builder/components/Tabs.vue:73
msgctxt "Button text"
msgid "Delete entire tab with fields"
-msgstr ""
+msgstr "ลบทั้งแท็บพร้อมฟิลด์"
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/public/js/form_builder/components/Tabs.vue:71
msgctxt "Button text"
msgid "Delete tab"
-msgstr ""
+msgstr "ลบแท็บ"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
msgid "Delete this record to allow sending to this email address"
-msgstr ""
+msgstr "ลบบันทึกนี้เพื่ออนุญาตให้ส่งไปยังที่อยู่อีเมลนี้"
#: frappe/public/js/frappe/list/list_view.js:2032
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
-msgstr ""
+msgstr "ลบ {0} รายการอย่างถาวร?"
#: frappe/public/js/frappe/list/list_view.js:2038
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
-msgstr ""
+msgstr "ลบ {0} รายการอย่างถาวร?"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
@@ -6762,17 +6762,17 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Deleted"
-msgstr ""
+msgstr "ลบแล้ว"
#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr ""
+msgstr "ลบ DocType แล้ว"
#. Name of a DocType
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Document"
-msgstr ""
+msgstr "ลบเอกสารแล้ว"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
@@ -6782,23 +6782,23 @@ msgstr ""
#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr ""
+msgstr "ลบชื่อแล้ว"
#: frappe/desk/reportview.py:606
msgid "Deleted all documents successfully"
-msgstr ""
+msgstr "ลบเอกสารทั้งหมดสำเร็จแล้ว"
#: frappe/desk/reportview.py:583
msgid "Deleting {0}"
-msgstr ""
+msgstr "กำลังลบ {0}"
#: frappe/public/js/frappe/list/bulk_operations.js:202
msgid "Deleting {0} records..."
-msgstr ""
+msgstr "กำลังลบบันทึก {0}..."
#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
-msgstr ""
+msgstr "กำลังลบ {0}..."
#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
#. Request'
@@ -6809,25 +6809,25 @@ msgstr ""
#: frappe/core/doctype/page/page.py:110
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
msgid "Deletion of this document is only permitted in developer mode."
-msgstr ""
+msgstr "การลบเอกสารนี้ได้รับอนุญาตเฉพาะในโหมดนักพัฒนาเท่านั้น"
#. Label of the delimiter_options (Data) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Delimiter Options"
-msgstr ""
+msgstr "ตัวเลือกตัวคั่น"
#: frappe/utils/csvutils.py:76
msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
-msgstr ""
+msgstr "การตรวจจับตัวคั่นล้มเหลว ลองเปิดใช้งานตัวคั่นที่กำหนดเองและปรับตัวเลือกตัวคั่นตามข้อมูลของคุณ"
#: frappe/public/js/frappe/views/reports/report_utils.js:296
msgid "Delimiter must be a single character"
-msgstr ""
+msgstr "ตัวคั่นต้องเป็นตัวอักษรเดียว"
#. Label of the delivery_status (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Delivery Status"
-msgstr ""
+msgstr "สถานะการจัดส่ง"
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -7690,120 +7690,120 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:59
msgid "Document Type and Function are required to create a number card"
-msgstr ""
+msgstr "ต้องการประเภทเอกสารและฟังก์ชันเพื่อสร้างการ์ดตัวเลข"
#: frappe/permissions.py:149
msgid "Document Type is not importable"
-msgstr ""
+msgstr "ประเภทเอกสารไม่สามารถนำเข้าได้"
#: frappe/permissions.py:145
msgid "Document Type is not submittable"
-msgstr ""
+msgstr "ประเภทเอกสารไม่สามารถส่งได้"
#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr ""
+msgstr "ประเภทเอกสารที่ต้องติดตาม"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
-msgstr ""
+msgstr "ประเภทเอกสาร {0} ถูกทำซ้ำ"
#. Label of the user_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr ""
+msgstr "ประเภทเอกสาร"
#. Label of the select_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types (Select Permissions Only)"
-msgstr ""
+msgstr "ประเภทเอกสาร (เลือกสิทธิ์เท่านั้น)"
#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types and Permissions"
-msgstr ""
+msgstr "ประเภทเอกสารและสิทธิ์"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
#: frappe/model/document.py:1942
msgid "Document Unlocked"
-msgstr ""
+msgstr "เอกสารถูกปลดล็อก"
#: frappe/desk/form/document_follow.py:56
msgid "Document follow is not enabled for this user."
-msgstr ""
+msgstr "การติดตามเอกสารไม่ได้เปิดใช้งานสำหรับผู้ใช้นี้"
#: frappe/public/js/frappe/list/list_view.js:1157
msgid "Document has been cancelled"
-msgstr ""
+msgstr "เอกสารถูกยกเลิกแล้ว"
#: frappe/public/js/frappe/list/list_view.js:1156
msgid "Document has been submitted"
-msgstr ""
+msgstr "เอกสารถูกส่งแล้ว"
#: frappe/public/js/frappe/list/list_view.js:1155
msgid "Document is in draft state"
-msgstr ""
+msgstr "เอกสารอยู่ในสถานะร่าง"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Document is only editable by users with role"
-msgstr ""
+msgstr "เอกสารสามารถแก้ไขได้เฉพาะผู้ใช้ที่มีบทบาท"
#: frappe/core/doctype/communication/communication.js:182
msgid "Document not Relinked"
-msgstr ""
+msgstr "เอกสารไม่ได้เชื่อมโยงใหม่"
#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
msgid "Document renamed from {0} to {1}"
-msgstr ""
+msgstr "เอกสารถูกเปลี่ยนชื่อจาก {0} เป็น {1}"
#: frappe/public/js/frappe/form/toolbar.js:164
msgid "Document renaming from {0} to {1} has been queued"
-msgstr ""
+msgstr "การเปลี่ยนชื่อเอกสารจาก {0} เป็น {1} ถูกจัดคิวแล้ว"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
-msgstr ""
+msgstr "ต้องการประเภทเอกสารเพื่อสร้างแผนภูมิแดชบอร์ด"
#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
-msgstr ""
+msgstr "เอกสาร {0} ถูกกู้คืนแล้ว"
#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
msgid "Document {0} has been set to state {1} by {2}"
-msgstr ""
+msgstr "เอกสาร {0} ถูกตั้งค่าเป็นสถานะ {1} โดย {2}"
#: frappe/client.py:430
msgid "Document {0} {1} does not exist"
-msgstr ""
+msgstr "เอกสาร {0} {1} ไม่มีอยู่"
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr ""
+msgstr "ลิงก์เอกสารประกอบ"
#. Label of the documentation_url (Data) field in DocType 'DocField'
#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr ""
+msgstr "URL เอกสารประกอบ"
#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
msgid "Documents"
-msgstr ""
+msgstr "เอกสาร"
#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
msgid "Documents restored successfully"
-msgstr ""
+msgstr "เอกสารถูกกู้คืนสำเร็จ"
#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
msgid "Documents that failed to restore"
-msgstr ""
+msgstr "เอกสารที่กู้คืนล้มเหลว"
#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
msgid "Documents that were already restored"
-msgstr ""
+msgstr "เอกสารที่ถูกกู้คืนแล้ว"
#. Name of a DocType
#. Label of the domain (Data) field in DocType 'Domain'
@@ -7813,32 +7813,32 @@ msgstr ""
#: frappe/core/doctype/has_domain/has_domain.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Domain"
-msgstr ""
+msgstr "โดเมน"
#. Label of the domain_name (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Domain Name"
-msgstr ""
+msgstr "ชื่อโดเมน"
#. Name of a DocType
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domain Settings"
-msgstr ""
+msgstr "การตั้งค่าโดเมน"
#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr ""
+msgstr "โดเมน HTML"
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr ""
+msgstr "อย่าเข้ารหัส HTML แท็ก HTML เช่น <script> หรือเพียงตัวอักษรเช่น < หรือ > เนื่องจากอาจถูกใช้โดยเจตนาในฟิลด์นี้"
#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
-msgstr ""
+msgstr "อย่านำเข้า"
#. Label of the override_status (Check) field in DocType 'Workflow'
#. Label of the avoid_status_override (Check) field in DocType 'Workflow
@@ -7846,12 +7846,12 @@ msgstr ""
#: frappe/workflow/doctype/workflow/workflow.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr ""
+msgstr "อย่าเขียนทับสถานะ"
#. Label of the mute_emails (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Don't Send Emails"
-msgstr ""
+msgstr "อย่าส่งอีเมล"
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
@@ -7859,12 +7859,12 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr ""
+msgstr "อย่าเข้ารหัสแท็ก HTML เช่น <script> หรือเพียงตัวอักษรเช่น < หรือ > เนื่องจากอาจถูกใช้โดยเจตนาในฟิลด์นี้"
#: frappe/www/login.html:139 frappe/www/login.html:155
#: frappe/www/update-password.html:57
msgid "Don't have an account?"
-msgstr ""
+msgstr "ไม่มีบัญชีใช่ไหม?"
#: frappe/public/js/frappe/form/form_tour.js:16
#: frappe/public/js/frappe/ui/messages.js:238
@@ -7872,16 +7872,16 @@ msgstr ""
#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Done"
-msgstr ""
+msgstr "เสร็จสิ้น"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr ""
+msgstr "โดนัท"
#: frappe/public/js/form_builder/components/EditableInput.vue:43
msgid "Double click to edit label"
-msgstr ""
+msgstr "ดับเบิลคลิกเพื่อแก้ไขป้ายกำกับ"
#: frappe/core/doctype/file/file.js:15
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
@@ -7898,27 +7898,27 @@ msgstr "ดาวน์โหลด"
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/page/backups/backups.js:4
msgid "Download Backups"
-msgstr ""
+msgstr "ดาวน์โหลดการสำรองข้อมูล"
#: frappe/templates/emails/download_data.html:6
msgid "Download Data"
-msgstr ""
+msgstr "ดาวน์โหลดข้อมูล"
#: frappe/desk/page/backups/backups.js:14
msgid "Download Files Backup"
-msgstr ""
+msgstr "ดาวน์โหลดการสำรองไฟล์"
#: frappe/templates/emails/download_data.html:9
msgid "Download Link"
-msgstr ""
+msgstr "ดาวน์โหลดลิงก์"
#: frappe/public/js/frappe/list/bulk_operations.js:134
msgid "Download PDF"
-msgstr ""
+msgstr "ดาวน์โหลด PDF"
#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
-msgstr ""
+msgstr "ดาวน์โหลดรายงาน"
#. Label of the download_template (Button) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -7929,19 +7929,19 @@ msgstr "ดาวน์โหลดเทมเพลต"
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
-msgstr ""
+msgstr "ดาวน์โหลดข้อมูลของคุณ"
#: frappe/core/doctype/prepared_report/prepared_report.js:49
msgid "Download as CSV"
-msgstr ""
+msgstr "ดาวน์โหลดเป็น CSV"
#: frappe/contacts/doctype/contact/contact.js:98
msgid "Download vCard"
-msgstr ""
+msgstr "ดาวน์โหลด vCard"
#: frappe/contacts/doctype/contact/contact_list.js:4
msgid "Download vCards"
-msgstr ""
+msgstr "ดาวน์โหลด vCards"
#: frappe/desk/page/setup_wizard/install_fixtures.py:46
msgid "Dr"
@@ -7950,83 +7950,83 @@ msgstr ""
#: frappe/public/js/frappe/model/indicator.js:73
#: frappe/public/js/frappe/ui/filters/filter.js:538
msgid "Draft"
-msgstr ""
+msgstr "ร่าง"
#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
#: frappe/public/js/frappe/widgets/base_widget.js:33
msgid "Drag"
-msgstr ""
+msgstr "ลาก"
#: frappe/public/js/form_builder/components/Tabs.vue:189
msgid "Drag & Drop a section here from another tab"
-msgstr ""
+msgstr "ลากและวางส่วนที่นี่จากแท็บอื่น"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14
msgid "Drag and drop files here or upload from"
-msgstr ""
+msgstr "ลากและวางไฟล์ที่นี่หรืออัปโหลดจาก"
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76
msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed."
-msgstr ""
+msgstr "ลากคอลัมน์เพื่อกำหนดลำดับ ความกว้างของคอลัมน์ถูกตั้งค่าเป็นเปอร์เซ็นต์ ความกว้างรวมไม่ควรเกิน 100 คอลัมน์ที่ทำเครื่องหมายเป็นสีแดงจะถูกลบ"
#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3
msgid "Drag elements from the sidebar to add. Drag them back to trash."
-msgstr ""
+msgstr "ลากองค์ประกอบจากแถบด้านข้างเพื่อเพิ่ม ลากกลับไปที่ถังขยะ"
#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296
msgid "Drag to add state"
-msgstr ""
+msgstr "ลากเพื่อเพิ่มสถานะ"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172
msgid "Drop files here"
-msgstr ""
+msgstr "วางไฟล์ที่นี่"
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr ""
+msgstr "เมนูแบบเลื่อนลง"
#. Label of the date (Date) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
msgid "Due Date"
-msgstr ""
+msgstr "วันที่ครบกำหนด"
#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Due Date Based On"
-msgstr ""
+msgstr "วันที่ครบกำหนดตาม"
#: frappe/public/js/frappe/form/grid_row_form.js:42
#: frappe/public/js/frappe/form/toolbar.js:419
msgid "Duplicate"
-msgstr ""
+msgstr "ซ้ำ"
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
msgid "Duplicate Entry"
-msgstr ""
+msgstr "รายการซ้ำ"
#: frappe/public/js/frappe/list/list_filter.js:144
msgid "Duplicate Filter Name"
-msgstr ""
+msgstr "ชื่อฟิลเตอร์ซ้ำ"
#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
-msgstr ""
+msgstr "ชื่อซ้ำ"
#: frappe/public/js/frappe/form/grid.js:66
msgid "Duplicate Row"
-msgstr ""
+msgstr "แถวซ้ำ"
#: frappe/public/js/frappe/form/form.js:209
msgid "Duplicate current row"
-msgstr ""
+msgstr "แถวปัจจุบันซ้ำ"
#: frappe/public/js/form_builder/components/Field.vue:245
msgid "Duplicate field"
-msgstr ""
+msgstr "ฟิลด์ซ้ำ"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
@@ -8043,31 +8043,31 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Duration"
-msgstr ""
+msgstr "ระยะเวลา"
#. Option for the 'Row Format' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Dynamic"
-msgstr ""
+msgstr "ไดนามิก"
#. Label of the dynamic_filters_section (Section Break) field in DocType
#. 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Dynamic Filters"
-msgstr ""
+msgstr "ฟิลเตอร์ไดนามิก"
#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart'
#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Dynamic Filters JSON"
-msgstr ""
+msgstr "ฟิลเตอร์ไดนามิก JSON"
#. Label of the dynamic_filters_section (Section Break) field in DocType
#. 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Dynamic Filters Section"
-msgstr ""
+msgstr "ส่วนฟิลเตอร์ไดนามิก"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Name of a DocType
@@ -8082,23 +8082,23 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Dynamic Link"
-msgstr ""
+msgstr "ลิงก์ไดนามิก"
#. Label of the dynamic_report_filters_section (Section Break) field in DocType
#. 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Dynamic Report Filters"
-msgstr ""
+msgstr "ฟิลเตอร์รายงานไดนามิก"
#. Label of the dynamic_route (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Route"
-msgstr ""
+msgstr "เส้นทางไดนามิก"
#. Label of the dynamic_template (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Template"
-msgstr ""
+msgstr "แม่แบบไดนามิก"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "ESC"
@@ -8127,126 +8127,126 @@ msgstr ""
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/list/list_view.js:2113
msgctxt "Button in list view actions menu"
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/website/doctype/web_form/templates/web_form.html:23
msgctxt "Button in web form"
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/form/grid_row.js:345
msgctxt "Edit grid row"
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
msgid "Edit Address in Form"
-msgstr ""
+msgstr "แก้ไขที่อยู่ในฟอร์ม"
#: frappe/templates/emails/auto_email_report.html:63
msgid "Edit Auto Email Report Settings"
-msgstr ""
+msgstr "แก้ไขการตั้งค่ารายงานอีเมลอัตโนมัติ"
#: frappe/public/js/frappe/widgets/widget_dialog.js:38
msgid "Edit Chart"
-msgstr ""
+msgstr "แก้ไขแผนภูมิ"
#: frappe/public/js/frappe/widgets/widget_dialog.js:50
msgid "Edit Custom Block"
-msgstr ""
+msgstr "แก้ไขบล็อกที่กำหนดเอง"
#: frappe/printing/page/print_format_builder/print_format_builder.js:727
msgid "Edit Custom HTML"
-msgstr ""
+msgstr "แก้ไข HTML ที่กำหนดเอง"
#: frappe/public/js/frappe/form/toolbar.js:616
msgid "Edit DocType"
-msgstr ""
+msgstr "แก้ไข DocType"
#: frappe/public/js/frappe/list/list_view.js:1829
msgctxt "Button in list view menu"
msgid "Edit DocType"
-msgstr ""
+msgstr "แก้ไข DocType"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
msgid "Edit Existing"
-msgstr ""
+msgstr "แก้ไขที่มีอยู่"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
msgid "Edit Filters"
-msgstr ""
+msgstr "แก้ไขฟิลเตอร์"
#: frappe/public/js/print_format_builder/PrintFormat.vue:29
msgid "Edit Footer"
-msgstr ""
+msgstr "แก้ไขส่วนท้าย"
#: frappe/printing/doctype/print_format/print_format.js:28
msgid "Edit Format"
-msgstr ""
+msgstr "แก้ไขรูปแบบ"
#: frappe/public/js/frappe/form/quick_entry.js:326
msgid "Edit Full Form"
-msgstr ""
+msgstr "แก้ไขฟอร์มเต็ม"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27
#: frappe/public/js/print_format_builder/Field.vue:83
msgid "Edit HTML"
-msgstr ""
+msgstr "แก้ไข HTML"
#: frappe/public/js/print_format_builder/PrintFormat.vue:9
msgid "Edit Header"
-msgstr ""
+msgstr "แก้ไขส่วนหัว"
#: frappe/printing/page/print_format_builder/print_format_builder.js:609
#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8
msgid "Edit Heading"
-msgstr ""
+msgstr "แก้ไขหัวข้อ"
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Edit Letter Head"
-msgstr ""
+msgstr "แก้ไขหัวจดหมาย"
#: frappe/public/js/print_format_builder/PrintFormat.vue:35
msgid "Edit Letter Head Footer"
-msgstr ""
+msgstr "แก้ไขส่วนท้ายหัวจดหมาย"
#: frappe/public/js/frappe/widgets/widget_dialog.js:42
msgid "Edit Links"
-msgstr ""
+msgstr "แก้ไขลิงก์"
#: frappe/public/js/frappe/widgets/widget_dialog.js:44
msgid "Edit Number Card"
-msgstr ""
+msgstr "แก้ไขการ์ดตัวเลข"
#: frappe/public/js/frappe/widgets/widget_dialog.js:46
msgid "Edit Onboarding"
-msgstr ""
+msgstr "แก้ไขการเริ่มต้นใช้งาน"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24
msgid "Edit Print Format"
-msgstr ""
+msgstr "แก้ไขรูปแบบการพิมพ์"
#: frappe/www/me.html:38
msgid "Edit Profile"
-msgstr ""
+msgstr "แก้ไขโปรไฟล์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:173
msgid "Edit Properties"
-msgstr ""
+msgstr "แก้ไขคุณสมบัติ"
#: frappe/public/js/frappe/widgets/widget_dialog.js:48
msgid "Edit Quick List"
-msgstr ""
+msgstr "แก้ไขรายการด่วน"
#: frappe/public/js/frappe/widgets/widget_dialog.js:40
msgid "Edit Shortcut"
-msgstr ""
+msgstr "แก้ไขทางลัด"
#. Label of the edit_values (Button) field in DocType 'Web Page Block'
#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
@@ -8257,33 +8257,33 @@ msgstr ""
#: frappe/website/doctype/web_page_block/web_page_block.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Edit Values"
-msgstr ""
+msgstr "แก้ไขค่า"
#: frappe/desk/doctype/note/note.js:11
msgid "Edit mode"
-msgstr ""
+msgstr "โหมดแก้ไข"
#: frappe/public/js/form_builder/components/Field.vue:254
msgid "Edit the {0} Doctype"
-msgstr ""
+msgstr "แก้ไข Doctype {0}"
#: frappe/printing/page/print_format_builder/print_format_builder.js:721
msgid "Edit to add content"
-msgstr ""
+msgstr "แก้ไขเพื่อเพิ่มเนื้อหา"
#: frappe/public/js/frappe/web_form/web_form.js:446
msgctxt "Button in web form"
msgid "Edit your response"
-msgstr ""
+msgstr "แก้ไขคำตอบของคุณ"
#: frappe/workflow/doctype/workflow/workflow.js:18
msgid "Edit your workflow visually using the Workflow Builder."
-msgstr ""
+msgstr "แก้ไขเวิร์กโฟลว์ของคุณด้วยภาพโดยใช้ตัวสร้างเวิร์กโฟลว์"
#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
-msgstr ""
+msgstr "แก้ไข {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
@@ -8291,31 +8291,31 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype_list.js:57
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
-msgstr ""
+msgstr "กริดที่แก้ไขได้"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Editing Row"
-msgstr ""
+msgstr "กำลังแก้ไขแถว"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
msgid "Editing {0}"
-msgstr ""
+msgstr "กำลังแก้ไข {0}"
#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr ""
+msgstr "เช่น smsgateway.com/api/send_sms.cgi"
#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
-msgstr ""
+msgstr "ต้องการคีย์หรือธง IP อย่างใดอย่างหนึ่ง"
#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Element Selector"
-msgstr ""
+msgstr "ตัวเลือกองค์ประกอบ"
#. Label of a Card Break in the Tools Workspace
#. Option for the 'Type' (Select) field in DocType 'Communication'
@@ -8352,7 +8352,7 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
-msgstr ""
+msgstr "อีเมล"
#. Label of a Link in the Tools Workspace
#. Label of the email_account (Link) field in DocType 'Communication'
@@ -8370,28 +8370,28 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Email Account"
-msgstr ""
+msgstr "บัญชีอีเมล"
#: frappe/email/doctype/email_account/email_account.py:343
msgid "Email Account Disabled."
-msgstr ""
+msgstr "บัญชีอีเมลถูกปิดใช้งาน"
#. Label of the email_account_name (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Email Account Name"
-msgstr ""
+msgstr "ชื่อบัญชีอีเมล"
#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
-msgstr ""
+msgstr "เพิ่มบัญชีอีเมลหลายครั้ง"
#: frappe/email/smtp.py:43
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
-msgstr ""
+msgstr "ยังไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จาก การตั้งค่า > บัญชีอีเมล"
#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
-msgstr ""
+msgstr "บัญชีอีเมล {0} ถูกปิดใช้งาน"
#. Label of the email_id (Data) field in DocType 'Address'
#. Label of the email_id (Data) field in DocType 'Contact'
@@ -8405,34 +8405,34 @@ msgstr ""
#: frappe/www/complete_signup.html:11 frappe/www/login.html:184
#: frappe/www/login.html:216
msgid "Email Address"
-msgstr ""
+msgstr "ที่อยู่อีเมล"
#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Email Address whose Google Contacts are to be synced."
-msgstr ""
+msgstr "ที่อยู่อีเมลที่ต้องการซิงค์กับ Google Contacts"
#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
-msgstr ""
+msgstr "ที่อยู่อีเมล"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Email Domain"
-msgstr ""
+msgstr "โดเมนอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Email Flag Queue"
-msgstr ""
+msgstr "คิวธงอีเมล"
#. Label of the email_footer_address (Small Text) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr ""
+msgstr "ที่อยู่ส่วนท้ายอีเมล"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -8443,17 +8443,17 @@ msgstr ""
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
-msgstr ""
+msgstr "กลุ่มอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_group_member/email_group_member.json
msgid "Email Group Member"
-msgstr ""
+msgstr "สมาชิกกลุ่มอีเมล"
#. Label of the email_header (Data) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Email Header"
-msgstr ""
+msgstr "ส่วนหัวอีเมล"
#. Label of the email_id (Data) field in DocType 'Contact Email'
#. Label of the email_id (Data) field in DocType 'User Email'
@@ -8463,68 +8463,68 @@ msgstr ""
#: frappe/core/doctype/user_email/user_email.json
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email ID"
-msgstr ""
+msgstr "รหัสอีเมล"
#. Label of the email_ids (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr ""
+msgstr "รหัสอีเมล"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
-msgstr ""
+msgstr "รหัสอีเมล"
#. Label of the email_inbox (Section Break) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr ""
+msgstr "กล่องจดหมายอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue"
-msgstr ""
+msgstr "คิวอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Email Queue Recipient"
-msgstr ""
+msgstr "ผู้รับคิวอีเมล"
#: frappe/email/queue.py:160
msgid "Email Queue flushing aborted due to too many failures."
-msgstr ""
+msgstr "การล้างคิวอีเมลถูกยกเลิกเนื่องจากความล้มเหลวมากเกินไป"
#. Description of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue records."
-msgstr ""
+msgstr "บันทึกคิวอีเมล"
#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
msgid "Email Reply Help"
-msgstr ""
+msgstr "ความช่วยเหลือในการตอบกลับอีเมล"
#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Retry Limit"
-msgstr ""
+msgstr "ขีดจำกัดการลองใหม่ของอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email Rule"
-msgstr ""
+msgstr "กฎอีเมล"
#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
-msgstr ""
+msgstr "ส่งอีเมลแล้ว"
#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Email Sent At"
-msgstr ""
+msgstr "ส่งอีเมลเมื่อ"
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
@@ -8538,22 +8538,22 @@ msgstr ""
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr ""
+msgstr "การตั้งค่าอีเมล"
#. Label of the email_signature (Text Editor) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr ""
+msgstr "ลายเซ็นอีเมล"
#. Label of the email_status (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr ""
+msgstr "สถานะอีเมล"
#. Label of the email_sync_option (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Email Sync Option"
-msgstr ""
+msgstr "ตัวเลือกการซิงค์อีเมล"
#. Label of a Link in the Tools Workspace
#. Label of the email_template (Link) field in DocType 'Communication'
@@ -8563,78 +8563,78 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/public/js/frappe/views/communication.js:104
msgid "Email Template"
-msgstr ""
+msgstr "แม่แบบอีเมล"
#. Label of the enable_email_threads_on_assigned_document (Check) field in
#. DocType 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Email Threads on Assigned Document"
-msgstr ""
+msgstr "เธรดอีเมลในเอกสารที่กำหนด"
#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email To"
-msgstr ""
+msgstr "อีเมลถึง"
#. Name of a DocType
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Email Unsubscribe"
-msgstr ""
+msgstr "ยกเลิกการสมัครรับอีเมล"
#: frappe/core/doctype/communication/communication.js:342
msgid "Email has been marked as spam"
-msgstr ""
+msgstr "อีเมลถูกทำเครื่องหมายว่าเป็นสแปม"
#: frappe/core/doctype/communication/communication.js:355
msgid "Email has been moved to trash"
-msgstr ""
+msgstr "อีเมลถูกย้ายไปที่ถังขยะ"
#: frappe/core/doctype/user/user.js:272
msgid "Email is mandatory to create User Email"
-msgstr ""
+msgstr "อีเมลเป็นสิ่งจำเป็นในการสร้างอีเมลผู้ใช้"
#: frappe/public/js/frappe/views/communication.js:816
msgid "Email not sent to {0} (unsubscribed / disabled)"
-msgstr ""
+msgstr "ไม่ได้ส่งอีเมลถึง {0} (ยกเลิกการสมัคร / ปิดใช้งาน)"
#: frappe/utils/oauth.py:163
msgid "Email not verified with {0}"
-msgstr ""
+msgstr "อีเมลไม่ได้รับการยืนยันกับ {0}"
#: frappe/email/doctype/email_queue/email_queue.js:19
msgid "Email queue is currently suspended. Resume to automatically send other emails."
-msgstr ""
+msgstr "คิวอีเมลถูกระงับชั่วคราว ดำเนินการต่อเพื่อส่งอีเมลอื่นโดยอัตโนมัติ"
#. Label of the section_break_udjs (Section Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Emails"
-msgstr ""
+msgstr "อีเมล"
#: frappe/email/doctype/email_account/email_account.js:216
msgid "Emails Pulled"
-msgstr ""
+msgstr "ดึงอีเมลแล้ว"
#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
-msgstr ""
+msgstr "กำลังดึงอีเมลจากบัญชีนี้อยู่แล้ว"
#: frappe/email/queue.py:137
msgid "Emails are muted"
-msgstr ""
+msgstr "อีเมลถูกปิดเสียง"
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr ""
+msgstr "อีเมลจะถูกส่งพร้อมกับการดำเนินการเวิร์กโฟลว์ถัดไปที่เป็นไปได้"
#: frappe/website/doctype/web_form/web_form.js:34
msgid "Embed code copied"
-msgstr ""
+msgstr "คัดลอกรหัสฝังแล้ว"
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
-msgstr ""
+msgstr "คอลัมน์ว่างเปล่า"
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
@@ -8643,67 +8643,67 @@ msgstr ""
#: frappe/integrations/doctype/google_contacts/google_contacts.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr ""
+msgstr "เปิดใช้งาน"
#. Label of the enable_address_autocompletion (Check) field in DocType
#. 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Enable Address Autocompletion"
-msgstr ""
+msgstr "เปิดใช้งานการเติมที่อยู่อัตโนมัติ"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119
msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
-msgstr ""
+msgstr "เปิดใช้งานอนุญาตการทำซ้ำอัตโนมัติสำหรับ doctype {0} ในการปรับแต่งฟอร์ม"
#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr ""
+msgstr "เปิดใช้งานการตอบกลับอัตโนมัติ"
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr ""
+msgstr "เปิดใช้งานการเชื่อมโยงอัตโนมัติในเอกสาร"
#. Label of the enable_comments (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr ""
+msgstr "เปิดใช้งานความคิดเห็น"
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
-msgstr ""
+msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมล"
#. Label of the enable_email_notifications (Check) field in DocType
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr ""
+msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมล"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
#: frappe/website/doctype/website_settings/website_settings.py:129
msgid "Enable Google API in Google Settings."
-msgstr ""
+msgstr "เปิดใช้งาน Google API ในการตั้งค่า Google"
#. Label of the enable_google_indexing (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable Google indexing"
-msgstr ""
+msgstr "เปิดใช้งานการจัดทำดัชนีของ Google"
#. Label of the enable_incoming (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_account/email_account.py:225
msgid "Enable Incoming"
-msgstr ""
+msgstr "เปิดใช้งานขาเข้า"
#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr ""
+msgstr "เปิดใช้งานการเริ่มต้นใช้งาน"
#. Label of the enable_outgoing (Check) field in DocType 'User Email'
#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
@@ -8711,93 +8711,93 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_account/email_account.py:233
msgid "Enable Outgoing"
-msgstr ""
+msgstr "เปิดใช้งานขาออก"
#. Label of the enable_password_policy (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr ""
+msgstr "เปิดใช้งานนโยบายรหัสผ่าน"
#. Label of the enable_prepared_report (Check) field in DocType 'Role
#. Permission for Page and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Enable Prepared Report"
-msgstr ""
+msgstr "เปิดใช้งานรายงานที่เตรียมไว้"
#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Print Server"
-msgstr ""
+msgstr "เปิดใช้งานเซิร์ฟเวอร์การพิมพ์"
#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
#. Notification Settings'
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Enable Push Notification Relay"
-msgstr ""
+msgstr "เปิดใช้งานการส่งต่อการแจ้งเตือนแบบพุช"
#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Enable Rate Limit"
-msgstr ""
+msgstr "เปิดใช้งานการจำกัดอัตรา"
#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Raw Printing"
-msgstr ""
+msgstr "เปิดใช้งานการพิมพ์แบบดิบ"
#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
-msgstr ""
+msgstr "เปิดใช้งานรายงาน"
#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Scheduled Jobs"
-msgstr ""
+msgstr "เปิดใช้งานงานที่กำหนดเวลาไว้"
#: frappe/core/doctype/rq_job/rq_job_list.js:23
msgid "Enable Scheduler"
-msgstr ""
+msgstr "เปิดใช้งานตัวจัดตารางเวลา"
#. Label of the enable_security (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr ""
+msgstr "เปิดใช้งานความปลอดภัย"
#. Label of the enable_social_login (Check) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Enable Social Login"
-msgstr ""
+msgstr "เปิดใช้งานการเข้าสู่ระบบโซเชียล"
#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Enable Social Sharing"
-msgstr ""
+msgstr "เปิดใช้งานการแชร์โซเชียล"
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
-msgstr ""
+msgstr "เปิดใช้งานการติดตามการดูหน้า"
#. Label of the enable_two_factor_auth (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/twofactor.py:433
msgid "Enable Two Factor Auth"
-msgstr ""
+msgstr "เปิดใช้งานการยืนยันตัวตนสองขั้นตอน"
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28
msgid "Enable developer mode to create a standard Print Template"
-msgstr ""
+msgstr "เปิดใช้งานโหมดนักพัฒนาเพื่อสร้างแม่แบบการพิมพ์มาตรฐาน"
#: frappe/website/doctype/web_template/web_template.py:33
msgid "Enable developer mode to create a standard Web Template"
-msgstr ""
+msgstr "เปิดใช้งานโหมดนักพัฒนาเพื่อสร้างแม่แบบเว็บมาตรฐาน"
#. Description of the 'Enable Email Notification' (Check) field in DocType
#. 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable email notification for any comment or likes received on your Blog Post."
-msgstr ""
+msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมลสำหรับความคิดเห็นหรือการถูกใจที่ได้รับในโพสต์บล็อกของคุณ"
#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -8809,7 +8809,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable in-app website tracking"
-msgstr ""
+msgstr "เปิดใช้งานการติดตามเว็บไซต์ในแอป"
#. Label of the enabled (Check) field in DocType 'Language'
#. Label of the enabled (Check) field in DocType 'User'
@@ -8834,15 +8834,15 @@ msgstr ""
#: frappe/public/js/frappe/model/indicator.js:117
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
-msgstr ""
+msgstr "เปิดใช้งานแล้ว"
#: frappe/core/doctype/rq_job/rq_job_list.js:29
msgid "Enabled Scheduler"
-msgstr ""
+msgstr "เปิดใช้งานตัวจัดตารางเวลาแล้ว"
#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
-msgstr ""
+msgstr "เปิดใช้งานกล่องจดหมายอีเมลสำหรับผู้ใช้ {0}"
#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
#. 'DocType'
@@ -8851,16 +8851,16 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
-msgstr ""
+msgstr "เปิดใช้งานมุมมองปฏิทินและ Gantt"
#: frappe/email/doctype/email_account/email_account.js:295
msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
-msgstr ""
+msgstr "การเปิดใช้งานการตอบกลับอัตโนมัติในบัญชีอีเมลขาเข้าจะส่งการตอบกลับอัตโนมัติไปยังอีเมลที่ซิงค์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?"
#. Description of a DocType
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
-msgstr ""
+msgstr "การเปิดใช้งานนี้จะลงทะเบียนไซต์ของคุณบนเซิร์ฟเวอร์รีเลย์กลางเพื่อส่งการแจ้งเตือนแบบพุชสำหรับแอปที่ติดตั้งทั้งหมดผ่าน Firebase Cloud Messaging เซิร์ฟเวอร์นี้จะจัดเก็บเฉพาะโทเค็นของผู้ใช้และบันทึกข้อผิดพลาด และไม่มีการบันทึกข้อความ"
#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
#. Notification Settings'
@@ -8875,7 +8875,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enabling this will submit documents in background"
-msgstr ""
+msgstr "การเปิดใช้งานนี้จะส่งเอกสารในพื้นหลัง"
#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -8919,62 +8919,62 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
-msgstr ""
+msgstr "สิ้นสุดที่"
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
-msgstr ""
+msgstr "ปลายทาง"
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr ""
+msgstr "สิ้นสุดในวันที่"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr ""
+msgstr "คะแนนพลังงาน"
#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
-msgstr ""
+msgstr "จัดคิวโดย"
#: frappe/core/doctype/recorder/recorder.py:125
msgid "Enqueued creation of indexes"
-msgstr ""
+msgstr "จัดคิวการสร้างดัชนี"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
msgid "Ensure the user and group search paths are correct."
-msgstr ""
+msgstr "ตรวจสอบให้แน่ใจว่าเส้นทางการค้นหาผู้ใช้และกลุ่มถูกต้อง"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
msgid "Enter Client Id and Client Secret in Google Settings."
-msgstr ""
+msgstr "ป้อน Client Id และ Client Secret ในการตั้งค่า Google"
#: frappe/templates/includes/login/login.js:351
msgid "Enter Code displayed in OTP App."
-msgstr ""
+msgstr "ป้อนรหัสที่แสดงในแอป OTP"
#: frappe/public/js/frappe/views/communication.js:771
msgid "Enter Email Recipient(s)"
-msgstr ""
+msgstr "ป้อนผู้รับอีเมล"
#. Label of the doc_type (Link) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enter Form Type"
-msgstr ""
+msgstr "ป้อนประเภทฟอร์ม"
#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
msgid "Enter Value"
-msgstr ""
+msgstr "ป้อนค่า"
#: frappe/public/js/frappe/form/form_tour.js:60
msgid "Enter a name for this {0}"
-msgstr ""
+msgstr "ป้อนชื่อสำหรับ {0} นี้"
#. Description of the 'User Defaults' (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -8983,41 +8983,41 @@ msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
-msgstr ""
+msgstr "ป้อนชื่อโฟลเดอร์"
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
-msgstr ""
+msgstr "ป้อนพารามิเตอร์ URL แบบคงที่ที่นี่ (เช่น sender=ERPNext, username=ERPNext, password=1234 เป็นต้น)"
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr ""
+msgstr "ป้อนพารามิเตอร์ URL สำหรับข้อความ"
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr ""
+msgstr "ป้อนพารามิเตอร์ URL สำหรับหมายเลขผู้รับ"
#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
-msgstr ""
+msgstr "ป้อนรหัสผ่านของคุณ"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
msgid "Entity Name"
-msgstr ""
+msgstr "ชื่อเอนทิตี"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
msgid "Entity Type"
-msgstr ""
+msgstr "ประเภทเอนทิตี"
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
-msgstr ""
+msgstr "เท่ากับ"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Data Import'
@@ -9039,17 +9039,17 @@ msgstr ""
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/public/js/frappe/ui/messages.js:22
msgid "Error"
-msgstr ""
+msgstr "ข้อผิดพลาด"
#: frappe/public/js/frappe/web_form/web_form.js:240
msgctxt "Title of error message in web form"
msgid "Error"
-msgstr ""
+msgstr "ข้อผิดพลาด"
#. Name of a DocType
#: frappe/core/doctype/error_log/error_log.json
msgid "Error Log"
-msgstr ""
+msgstr "บันทึกข้อผิดพลาด"
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -9059,7 +9059,7 @@ msgstr ""
#. Label of the error_message (Text) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
-msgstr ""
+msgstr "ข้อความข้อผิดพลาด"
#: frappe/public/js/frappe/form/print_utils.js:128
msgid "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."
@@ -9067,63 +9067,63 @@ msgstr ""
#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Error connecting via IMAP/POP3: {e}"
-msgstr ""
+msgstr "ข้อผิดพลาดในการเชื่อมต่อผ่าน IMAP/POP3: {e}"
#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Error connecting via SMTP: {e}"
-msgstr ""
+msgstr "ข้อผิดพลาดในการเชื่อมต่อผ่าน SMTP: {e}"
#: frappe/email/doctype/email_domain/email_domain.py:101
msgid "Error has occurred in {0}"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดใน {0}"
#: frappe/public/js/frappe/form/script_manager.js:199
msgid "Error in Client Script"
-msgstr ""
+msgstr "ข้อผิดพลาดใน Client Script"
#: frappe/public/js/frappe/form/script_manager.js:256
msgid "Error in Client Script."
-msgstr ""
+msgstr "ข้อผิดพลาดใน Client Script."
#: frappe/printing/doctype/letter_head/letter_head.js:21
msgid "Error in Header/Footer Script"
-msgstr ""
+msgstr "ข้อผิดพลาดในสคริปต์ส่วนหัว/ส่วนท้าย"
#: frappe/email/doctype/notification/notification.py:598
#: frappe/email/doctype/notification/notification.py:735
#: frappe/email/doctype/notification/notification.py:741
msgid "Error in Notification"
-msgstr ""
+msgstr "ข้อผิดพลาดในการแจ้งเตือน"
#: frappe/utils/pdf.py:59
msgid "Error in print format on line {0}: {1}"
-msgstr ""
+msgstr "ข้อผิดพลาดในรูปแบบการพิมพ์ในบรรทัด {0}: {1}"
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
-msgstr ""
+msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}"
#: frappe/email/doctype/notification/notification.py:732
msgid "Error while evaluating Notification {0}. Please fix your template."
-msgstr ""
+msgstr "ข้อผิดพลาดขณะประเมินการแจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ"
#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
-msgstr ""
+msgstr "ข้อผิดพลาด: ข้อมูลหายไปในตาราง {0}"
#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
-msgstr ""
+msgstr "ข้อผิดพลาด: ค่าหายไปสำหรับ {0}: {1}"
#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
-msgstr ""
+msgstr "ข้อผิดพลาด: {0} แถว #{1}: ค่าหายไปสำหรับ: {2}"
#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
#. DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Errors"
-msgstr ""
+msgstr "ข้อผิดพลาด"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
@@ -9131,56 +9131,56 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/desk/doctype/event/event.json
msgid "Event"
-msgstr ""
+msgstr "เหตุการณ์"
#. Label of the event_category (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr ""
+msgstr "หมวดหมู่เหตุการณ์"
#. Label of the event_frequency (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
-msgstr ""
+msgstr "ความถี่ของเหตุการณ์"
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/event_participants/event_participants.json
msgid "Event Participants"
-msgstr ""
+msgstr "ผู้เข้าร่วมเหตุการณ์"
#. Label of the enable_email_event_reminders (Check) field in DocType
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Event Reminders"
-msgstr ""
+msgstr "การเตือนเหตุการณ์"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
msgid "Event Synced with Google Calendar."
-msgstr ""
+msgstr "เหตุการณ์ซิงค์กับ Google Calendar แล้ว"
#. Label of the event_type (Data) field in DocType 'Recorder'
#. Label of the event_type (Select) field in DocType 'Event'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/desk/doctype/event/event.json
msgid "Event Type"
-msgstr ""
+msgstr "ประเภทเหตุการณ์"
#: frappe/public/js/frappe/ui/notifications/notifications.js:56
msgid "Events"
-msgstr ""
+msgstr "เหตุการณ์"
#: frappe/desk/doctype/event/event.py:274
msgid "Events in Today's Calendar"
-msgstr ""
+msgstr "เหตุการณ์ในปฏิทินวันนี้"
#. Label of the everyone (Check) field in DocType 'DocShare'
#: frappe/core/doctype/docshare/docshare.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:11
msgid "Everyone"
-msgstr ""
+msgstr "ทุกคน"
#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
#. Chart'
@@ -9191,12 +9191,12 @@ msgstr ""
#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Exact Copies"
-msgstr ""
+msgstr "สำเนาที่เหมือนกัน"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr ""
+msgstr "ตัวอย่าง"
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
@@ -9207,33 +9207,33 @@ msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr ""
+msgstr "ตัวอย่าง: #Tree/Account"
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr ""
+msgstr "ตัวอย่าง: 00001"
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
-msgstr ""
+msgstr "ตัวอย่าง: การตั้งค่านี้เป็น 24:00 จะออกจากระบบผู้ใช้หากพวกเขาไม่ใช้งานเป็นเวลา 24:00 ชั่วโมง"
#. Description of the 'Description' (Small Text) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Example: {{ subject }}"
-msgstr ""
+msgstr "ตัวอย่าง: {{ subject }}"
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr ""
+msgstr "เอ็กเซล"
#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
-msgstr ""
+msgstr "ยอดเยี่ยม"
#. Label of the exception (Text) field in DocType 'Data Import Log'
#. Label of the exc_info (Code) field in DocType 'RQ Job'
@@ -9242,7 +9242,7 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr ""
+msgstr "ข้อยกเว้น"
#. Label of the execute_section (Section Break) field in DocType 'System
#. Console'
@@ -9250,59 +9250,59 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.js:22
#: frappe/desk/doctype/system_console/system_console.json
msgid "Execute"
-msgstr ""
+msgstr "ดำเนินการ"
#: frappe/desk/doctype/system_console/system_console.js:10
msgid "Execute Console script"
-msgstr ""
+msgstr "ดำเนินการสคริปต์คอนโซล"
#: frappe/public/js/frappe/ui/dropdown_console.js:125
msgid "Executing Code"
-msgstr ""
+msgstr "กำลังดำเนินการโค้ด"
#: frappe/desk/doctype/system_console/system_console.js:18
msgid "Executing..."
-msgstr ""
+msgstr "กำลังดำเนินการ..."
#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
-msgstr ""
+msgstr "เวลาการดำเนินการ: {0} วินาที"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
-msgstr ""
+msgstr "ผู้บริหาร"
#. Label of the existing_role (Link) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
msgid "Existing Role"
-msgstr ""
+msgstr "บทบาทที่มีอยู่"
#: frappe/public/js/frappe/views/treeview.js:115
#: frappe/public/js/frappe/views/treeview.js:127
#: frappe/public/js/frappe/views/treeview.js:137
#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Expand"
-msgstr ""
+msgstr "ขยาย"
#: frappe/public/js/frappe/form/controls/code.js:185
msgctxt "Enlarge code field."
msgid "Expand"
-msgstr ""
+msgstr "ขยาย"
#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
-msgstr ""
+msgstr "ขยายทั้งหมด"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
-msgstr ""
+msgstr "การทดลอง"
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr ""
+msgstr "ผู้เชี่ยวชาญ"
#. Label of the expiration_time (Datetime) field in DocType 'OAuth
#. Authorization Code'
@@ -9311,34 +9311,34 @@ msgstr ""
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Expiration time"
-msgstr ""
+msgstr "เวลาหมดอายุ"
#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Expire Notification On"
-msgstr ""
+msgstr "การแจ้งเตือนหมดอายุเมื่อ"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Expired"
-msgstr ""
+msgstr "หมดอายุ"
#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token'
#. Label of the expires_in (Int) field in DocType 'Token Cache'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Expires In"
-msgstr ""
+msgstr "หมดอายุใน"
#. Label of the expires_on (Date) field in DocType 'Document Share Key'
#: frappe/core/doctype/document_share_key/document_share_key.json
msgid "Expires On"
-msgstr ""
+msgstr "หมดอายุเมื่อ"
#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Expiry time of QR Code Image Page"
-msgstr ""
+msgstr "เวลาหมดอายุของหน้าภาพ QR Code"
#. Label of the export (Check) field in DocType 'Custom DocPerm'
#. Label of the export (Check) field in DocType 'DocPerm'
@@ -9351,126 +9351,126 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
-msgstr ""
+msgstr "ส่งออก"
#: frappe/public/js/frappe/list/list_view.js:2135
msgctxt "Button in list view actions menu"
msgid "Export"
-msgstr ""
+msgstr "ส่งออก"
#: frappe/public/js/frappe/data_import/data_exporter.js:245
msgid "Export 1 record"
-msgstr ""
+msgstr "ส่งออก 1 รายการ"
#: frappe/custom/doctype/customize_form/customize_form.js:262
msgid "Export Custom Permissions"
-msgstr ""
+msgstr "ส่งออกสิทธิ์ที่กำหนดเอง"
#: frappe/custom/doctype/customize_form/customize_form.js:242
msgid "Export Customizations"
-msgstr ""
+msgstr "ส่งออกการปรับแต่ง"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
#: frappe/public/js/frappe/data_import/data_exporter.js:14
msgid "Export Data"
-msgstr ""
+msgstr "ส่งออกข้อมูล"
#: frappe/core/doctype/data_import/data_import.js:86
#: frappe/public/js/frappe/data_import/import_preview.js:199
msgid "Export Errored Rows"
-msgstr ""
+msgstr "ส่งออกแถวที่มีข้อผิดพลาด"
#. Label of the export_from (Data) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr ""
+msgstr "ส่งออกจาก"
#: frappe/core/doctype/data_import/data_import.js:518
msgid "Export Import Log"
-msgstr ""
+msgstr "ส่งออกบันทึกการนำเข้า"
#: frappe/public/js/frappe/views/reports/report_utils.js:235
msgctxt "Export report"
msgid "Export Report: {0}"
-msgstr ""
+msgstr "ส่งออกรายงาน: {0}"
#: frappe/public/js/frappe/data_import/data_exporter.js:26
msgid "Export Type"
-msgstr ""
+msgstr "ประเภทการส่งออก"
#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
-msgstr ""
+msgstr "ส่งออกแถวที่ตรงกันทั้งหมดหรือไม่?"
#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
-msgstr ""
+msgstr "ส่งออกแถว {0} ทั้งหมดหรือไม่?"
#: frappe/public/js/frappe/views/file/file_view.js:154
msgid "Export as zip"
-msgstr ""
+msgstr "ส่งออกเป็น zip"
#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
-msgstr ""
+msgstr "ไม่อนุญาตให้ส่งออก คุณต้องมีบทบาท {0} เพื่อส่งออก"
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
-msgstr ""
+msgstr "ส่งออกข้อมูลโดยไม่มีบันทึกส่วนหัวและคำอธิบายคอลัมน์"
#. Label of the export_without_main_header (Check) field in DocType 'Data
#. Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Export without main header"
-msgstr ""
+msgstr "ส่งออกโดยไม่มีส่วนหัวหลัก"
#: frappe/public/js/frappe/data_import/data_exporter.js:247
msgid "Export {0} records"
-msgstr ""
+msgstr "ส่งออก {0} รายการ"
#: frappe/custom/doctype/customize_form/customize_form.js:263
msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
-msgstr ""
+msgstr "สิทธิ์ที่ส่งออกจะถูกซิงค์โดยบังคับในทุกการย้ายข้อมูลแทนที่การปรับแต่งอื่น ๆ"
#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr ""
+msgstr "เปิดเผยผู้รับ"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression"
-msgstr ""
+msgstr "นิพจน์"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression (old style)"
-msgstr ""
+msgstr "นิพจน์ (รูปแบบเก่า)"
#. Description of the 'Condition' (Data) field in DocType 'Notification
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr ""
+msgstr "นิพจน์, ไม่บังคับ"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/views/workspace/workspace.js:426
msgid "External Link"
-msgstr ""
+msgstr "ลิงก์ภายนอก"
#. Label of the section_break_18 (Section Break) field in DocType 'Connected
#. App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Extra Parameters"
-msgstr ""
+msgstr "พารามิเตอร์เพิ่มเติม"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -9573,95 +9573,95 @@ msgstr ""
#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
msgid "Failed to generate preview of series"
-msgstr ""
+msgstr "ล้มเหลวในการสร้างตัวอย่างของซีรีส์"
#: frappe/handler.py:75
msgid "Failed to get method for command {0} with {1}"
-msgstr ""
+msgstr "ล้มเหลวในการดึงวิธีการสำหรับคำสั่ง {0} ด้วย {1}"
#: frappe/api/v2.py:46
msgid "Failed to get method {0} with {1}"
-msgstr ""
+msgstr "ล้มเหลวในการดึงวิธีการ {0} ด้วย {1}"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
msgid "Failed to get site info"
-msgstr ""
+msgstr "ล้มเหลวในการดึงข้อมูลไซต์"
#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
-msgstr ""
+msgstr "ล้มเหลวในการนำเข้า virtual doctype {}, มีไฟล์ตัวควบคุมอยู่หรือไม่?"
#: frappe/utils/image.py:75
msgid "Failed to optimize image: {0}"
-msgstr ""
+msgstr "ล้มเหลวในการปรับแต่งภาพ: {0}"
#: frappe/email/doctype/notification/notification.py:116
msgid "Failed to render message: {}"
-msgstr ""
+msgstr "ล้มเหลวในการแสดงข้อความ: {}"
#: frappe/email/doctype/notification/notification.py:134
msgid "Failed to render subject: {}"
-msgstr ""
+msgstr "ล้มเหลวในการแสดงหัวเรื่อง: {}"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
msgid "Failed to request login to Frappe Cloud"
-msgstr ""
+msgstr "ล้มเหลวในการร้องขอเข้าสู่ระบบ Frappe Cloud"
#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
-msgstr ""
+msgstr "ล้มเหลวในการส่งอีเมลที่มีหัวเรื่อง:"
#: frappe/desk/doctype/notification_log/notification_log.py:43
msgid "Failed to send notification email"
-msgstr ""
+msgstr "ล้มเหลวในการส่งอีเมลแจ้งเตือน"
#: frappe/desk/page/setup_wizard/setup_wizard.py:24
msgid "Failed to update global settings"
-msgstr ""
+msgstr "ล้มเหลวในการอัปเดตการตั้งค่าทั่วโลก"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
msgid "Failed while calling API {0}"
-msgstr ""
+msgstr "ล้มเหลวขณะเรียก API {0}"
#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failing Scheduled Jobs (last 7 days)"
-msgstr ""
+msgstr "งานที่กำหนดเวลาไว้ล้มเหลว (7 วันที่ผ่านมา)"
#: frappe/core/doctype/data_import/data_import.js:459
msgid "Failure"
-msgstr ""
+msgstr "ความล้มเหลว"
#. Label of the failure_rate (Percent) field in DocType 'System Health Report
#. Failing Jobs'
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Failure Rate"
-msgstr ""
+msgstr "อัตราความล้มเหลว"
#. Label of the favicon (Attach) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "FavIcon"
-msgstr ""
+msgstr "ไอคอนโปรด"
#. Label of the fax (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr ""
+msgstr "แฟกซ์"
#. Label of the featured (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19
msgid "Featured"
-msgstr ""
+msgstr "แนะนำ"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
msgid "Feedback"
-msgstr ""
+msgstr "ข้อเสนอแนะ"
#: frappe/desk/page/setup_wizard/install_fixtures.py:29
msgid "Female"
-msgstr ""
+msgstr "หญิง"
#. Label of the fetch_from (Small Text) field in DocType 'DocField'
#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
@@ -9672,15 +9672,15 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr ""
+msgstr "ดึงข้อมูลจาก"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
-msgstr ""
+msgstr "ดึงภาพ"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
msgid "Fetch attached images from document"
-msgstr ""
+msgstr "ดึงภาพที่แนบมาจากเอกสาร"
#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
@@ -9689,11 +9689,11 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fetch on Save if Empty"
-msgstr ""
+msgstr "ดึงข้อมูลเมื่อบันทึกหากว่างเปล่า"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
msgid "Fetching default Global Search documents."
-msgstr ""
+msgstr "กำลังดึงเอกสารการค้นหาทั่วโลกเริ่มต้น"
#. Label of the field (Select) field in DocType 'Assignment Rule'
#. Label of the field (Select) field in DocType 'Document Naming Rule
@@ -10177,33 +10177,33 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
msgid "First Name"
-msgstr ""
+msgstr "ชื่อแรก"
#. Label of the first_success_message (Data) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "First Success Message"
-msgstr ""
+msgstr "ข้อความความสำเร็จครั้งแรก"
#: frappe/core/report/transaction_log_report/transaction_log_report.py:49
msgid "First Transaction"
-msgstr ""
+msgstr "ธุรกรรมแรก"
#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
-msgstr ""
+msgstr "คอลัมน์ข้อมูลแรกต้องว่างเปล่า"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
msgid "First set the name and save the record."
-msgstr ""
+msgstr "ตั้งชื่อก่อนแล้วบันทึกบันทึก"
#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
msgid "Fit"
-msgstr ""
+msgstr "พอดี"
#. Label of the flag (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr ""
+msgstr "ธง"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10218,12 +10218,12 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr ""
+msgstr "ลอยตัว"
#. Label of the float_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr ""
+msgstr "ความแม่นยำของการลอยตัว"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10236,85 +10236,85 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr ""
+msgstr "พับ"
#: frappe/core/doctype/doctype/doctype.py:1450
msgid "Fold can not be at the end of the form"
-msgstr ""
+msgstr "การพับไม่สามารถอยู่ที่ส่วนท้ายของฟอร์มได้"
#: frappe/core/doctype/doctype/doctype.py:1448
msgid "Fold must come before a Section Break"
-msgstr ""
+msgstr "การพับต้องมาก่อนการแบ่งส่วน"
#. Label of the folder (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Folder"
-msgstr ""
+msgstr "โฟลเดอร์"
#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
-msgstr ""
+msgstr "ชื่อโฟลเดอร์"
#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
-msgstr ""
+msgstr "ชื่อโฟลเดอร์ไม่ควรรวม '/' (สแลช)"
#: frappe/core/doctype/file/file.py:472
msgid "Folder {0} is not empty"
-msgstr ""
+msgstr "โฟลเดอร์ {0} ไม่ว่างเปล่า"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Folio"
-msgstr ""
+msgstr "โฟลิโอ"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Follow"
-msgstr ""
+msgstr "ติดตาม"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
msgid "Followed by"
-msgstr ""
+msgstr "ตามด้วย"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
msgid "Following Report Filters have missing values:"
-msgstr ""
+msgstr "ตัวกรองรายงานต่อไปนี้มีค่าที่ขาดหายไป:"
#: frappe/desk/form/document_follow.py:63
msgid "Following document {0}"
-msgstr ""
+msgstr "เอกสารต่อไปนี้ {0}"
#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้ขาดหายไป:"
#: frappe/public/js/frappe/ui/field_group.js:139
msgid "Following fields have invalid values:"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้มีค่าที่ไม่ถูกต้อง:"
#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป"
#: frappe/public/js/frappe/ui/field_group.js:126
msgid "Following fields have missing values:"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป:"
#: frappe/email/doctype/newsletter/newsletter.js:30
msgid "Following links are broken in the email content: {0}"
-msgstr ""
+msgstr "ลิงก์ต่อไปนี้เสียในเนื้อหาอีเมล: {0}"
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr ""
+msgstr "ฟอนต์"
#. Label of the font_properties (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr ""
+msgstr "คุณสมบัติฟอนต์"
#. Label of the font_size (Int) field in DocType 'Print Format'
#. Label of the font_size (Float) field in DocType 'Print Settings'
@@ -10324,13 +10324,13 @@ msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr ""
+msgstr "ขนาดฟอนต์"
#. Label of the section_break_8 (Section Break) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Fonts"
-msgstr ""
+msgstr "ฟอนต์"
#. Label of the set_footer (Section Break) field in DocType 'Email Account'
#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
@@ -10343,7 +10343,7 @@ msgstr ""
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr ""
+msgstr "ส่วนท้าย"
#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -10353,70 +10353,70 @@ msgstr ""
#. Label of the footer_source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Based On"
-msgstr ""
+msgstr "ส่วนท้ายตาม"
#. Label of the footer (Text Editor) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
-msgstr ""
+msgstr "เนื้อหาส่วนท้าย"
#. Label of the footer_details_section (Section Break) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Details"
-msgstr ""
+msgstr "รายละเอียดส่วนท้าย"
#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr ""
+msgstr "HTML ส่วนท้าย"
#: frappe/printing/doctype/letter_head/letter_head.py:75
msgid "Footer HTML set from attachment {0}"
-msgstr ""
+msgstr "HTML ส่วนท้ายตั้งค่าจากไฟล์แนบ {0}"
#. Label of the footer_image_section (Section Break) field in DocType 'Letter
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
-msgstr ""
+msgstr "ภาพส่วนท้าย"
#. Label of the footer (Section Break) field in DocType 'Website Settings'
#. Label of the footer_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr ""
+msgstr "รายการส่วนท้าย"
#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Logo"
-msgstr ""
+msgstr "โลโก้ส่วนท้าย"
#. Label of the footer_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Script"
-msgstr ""
+msgstr "สคริปต์ส่วนท้าย"
#. Label of the footer_template (Link) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr ""
+msgstr "แม่แบบส่วนท้าย"
#. Label of the footer_template_values (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template Values"
-msgstr ""
+msgstr "ค่าแม่แบบส่วนท้าย"
#: frappe/printing/page/print/print.js:116
msgid "Footer might not be visible as {0} option is disabledReference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr ""
+msgstr "เคล็ดลับ: เพิ่ม อ้างอิง: {{ reference_doctype }} {{ reference_name }} เพื่อส่งการอ้างอิงเอกสาร"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
-msgstr ""
+msgstr "ดำเนินการต่อ"
#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
-msgstr ""
+msgstr "ดำเนินการต่ออยู่ดี"
#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
-msgstr ""
+msgstr "กำลังประมวลผล"
#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
-msgstr ""
+msgstr "กำลังประมวลผล..."
#: frappe/desk/page/setup_wizard/install_fixtures.py:51
msgid "Prof"
-msgstr ""
+msgstr "ศาสตราจารย์"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr ""
+msgstr "โปรไฟล์"
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr ""
+msgstr "ความคืบหน้า"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
msgid "Project"
-msgstr ""
+msgstr "โครงการ"
#. Label of the property (Data) field in DocType 'Property Setter'
#: frappe/core/doctype/version/version_view.html:12
@@ -19668,7 +19668,7 @@ msgstr ""
#: frappe/core/doctype/version/version_view.html:74
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
-msgstr ""
+msgstr "คุณสมบัติ"
#. Label of the property_depends_on_section (Section Break) field in DocType
#. 'Customize Form Field'
@@ -19677,22 +19677,22 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr ""
+msgstr "คุณสมบัติขึ้นอยู่กับ"
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
-msgstr ""
+msgstr "ตัวตั้งค่าคุณสมบัติ"
#. Description of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter overrides a standard DocType or Field property"
-msgstr ""
+msgstr "ตัวตั้งค่าคุณสมบัติแทนที่คุณสมบัติมาตรฐานของ DocType หรือฟิลด์"
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr ""
+msgstr "ประเภททรัพย์สิน"
#. Label of the protect_attached_files (Check) field in DocType 'DocType'
#. Label of the protect_attached_files (Check) field in DocType 'Customize
@@ -19700,24 +19700,24 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Protect Attached Files"
-msgstr ""
+msgstr "ป้องกันไฟล์ที่แนบมา"
#: frappe/core/doctype/file/file.py:501
msgid "Protected File"
-msgstr ""
+msgstr "ไฟล์ที่ป้องกัน"
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG"
-msgstr ""
+msgstr "ระบุรายการนามสกุลไฟล์ที่อนุญาตให้อัปโหลดไฟล์ได้ แต่ละบรรทัดควรมีประเภทไฟล์ที่อนุญาตหนึ่งประเภท หากไม่ได้ตั้งค่า จะอนุญาตให้อัปโหลดไฟล์ทุกนามสกุล ตัวอย่าง:
CSV
JPG
PNG"
#. Label of the provider (Data) field in DocType 'User Social Login'
#. Label of the provider (Select) field in DocType 'Geolocation Settings'
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr ""
+msgstr "ผู้ให้บริการ"
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -19726,7 +19726,7 @@ msgstr ""
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Provider Name"
-msgstr ""
+msgstr "ชื่อผู้ให้บริการ"
#. Option for the 'Event Type' (Select) field in DocType 'Event'
#. Label of the public (Check) field in DocType 'Note'
@@ -19737,13 +19737,13 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:78
#: frappe/public/js/frappe/views/workspace/workspace.js:440
msgid "Public"
-msgstr ""
+msgstr "สาธารณะ"
#. Label of the public_files_size (Float) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Public Files (MB)"
-msgstr ""
+msgstr "ไฟล์สาธารณะ (MB)"
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -19751,13 +19751,13 @@ msgstr ""
#: frappe/website/doctype/blog_post/blog_post.js:36
#: frappe/website/doctype/web_form/web_form.js:86
msgid "Publish"
-msgstr ""
+msgstr "เผยแพร่"
#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
#. 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Publish as a web page"
-msgstr ""
+msgstr "เผยแพร่เป็นหน้าเว็บ"
#. Label of the published (Check) field in DocType 'Comment'
#. Label of the published (Check) field in DocType 'Newsletter'
@@ -19780,83 +19780,83 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page/web_page_list.js:5
msgid "Published"
-msgstr ""
+msgstr "เผยแพร่แล้ว"
#. Label of the published_on (Date) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Published On"
-msgstr ""
+msgstr "เผยแพร่เมื่อ"
#: frappe/website/doctype/blog_post/templates/blog_post.html:59
msgid "Published on"
-msgstr ""
+msgstr "เผยแพร่เมื่อ"
#. Label of the publishing_dates_section (Section Break) field in DocType 'Web
#. Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Publishing Dates"
-msgstr ""
+msgstr "วันที่เผยแพร่"
#: frappe/email/doctype/email_account/email_account.js:208
msgid "Pull Emails"
-msgstr ""
+msgstr "ดึงอีเมล"
#. Label of the pull_from_google_calendar (Check) field in DocType 'Google
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr ""
+msgstr "ดึงจาก Google Calendar"
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr ""
+msgstr "ดึงจาก Google Contacts"
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr ""
+msgstr "ดึงจาก Google Calendar แล้ว"
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr ""
+msgstr "ดึงจาก Google Contacts แล้ว"
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
-msgstr ""
+msgstr "กำลังดึงอีเมล..."
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Manager"
-msgstr ""
+msgstr "ผู้จัดการการซื้อ"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Master Manager"
-msgstr ""
+msgstr "ผู้จัดการมาสเตอร์การซื้อ"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Purchase User"
-msgstr ""
+msgstr "ผู้ใช้การซื้อ"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Purple"
-msgstr ""
+msgstr "สีม่วง"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Push Notification Settings"
-msgstr ""
+msgstr "การตั้งค่าการแจ้งเตือนแบบพุช"
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -19867,30 +19867,30 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr ""
+msgstr "ส่งไปยัง Google Calendar"
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr ""
+msgstr "ส่งไปยัง Google Contacts"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
-msgstr ""
+msgstr "พักการใช้งาน"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Python"
-msgstr ""
+msgstr "ไพธอน"
#: frappe/www/qrcode.html:3
msgid "QR Code"
-msgstr ""
+msgstr "คิวอาร์โค้ด"
#: frappe/www/qrcode.html:6
msgid "QR Code for Login Verification"
-msgstr ""
+msgstr "คิวอาร์โค้ดสำหรับการยืนยันการเข้าสู่ระบบ"
#: frappe/public/js/frappe/form/print_utils.js:206
msgid "QZ Tray Failed: "
@@ -19906,83 +19906,83 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/utils/common.js:401
msgid "Quarterly"
-msgstr ""
+msgstr "รายไตรมาส"
#. Label of the query (Data) field in DocType 'Recorder Query'
#. Label of the query (Code) field in DocType 'Report'
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr ""
+msgstr "คำสั่งค้นหา"
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr ""
+msgstr "คำสั่งค้นหา / สคริปต์"
#. Label of the query_options (Small Text) field in DocType 'Contact Us
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr ""
+msgstr "ตัวเลือกการค้นหา"
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/query_parameters/query_parameters.json
msgid "Query Parameters"
-msgstr ""
+msgstr "พารามิเตอร์การค้นหา"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
#: frappe/public/js/frappe/views/reports/query_report.js:17
msgid "Query Report"
-msgstr ""
+msgstr "รายงานการค้นหา"
#: frappe/core/doctype/recorder/recorder.py:188
msgid "Query analysis complete. Check suggested indexes."
-msgstr ""
+msgstr "การวิเคราะห์การค้นหาเสร็จสมบูรณ์ ตรวจสอบดัชนีที่แนะนำ"
#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
-msgstr ""
+msgstr "การค้นหาต้องเป็นประเภท SELECT หรือ read-only WITH"
#. Label of the queue (Select) field in DocType 'RQ Job'
#. Label of the queue (Data) field in DocType 'System Health Report Queue'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
-msgstr ""
+msgstr "คิว"
#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
-msgstr ""
+msgstr "คิวเกินพิกัด"
#. Label of the queue_status (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Queue Status"
-msgstr ""
+msgstr "สถานะคิว"
#. Label of the queue_type (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
-msgstr ""
+msgstr "ประเภทคิว"
#. Label of the queue_in_background (Check) field in DocType 'DocType'
#. Label of the queue_in_background (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Queue in Background (BETA)"
-msgstr ""
+msgstr "คิวในพื้นหลัง (เบต้า)"
#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
-msgstr ""
+msgstr "คิวควรเป็นหนึ่งใน {0}"
#. Label of the queue (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
-msgstr ""
+msgstr "คิว"
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
@@ -19992,69 +19992,69 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
-msgstr ""
+msgstr "อยู่ในคิว"
#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued At"
-msgstr ""
+msgstr "อยู่ในคิวที่"
#. Label of the queued_by (Data) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued By"
-msgstr ""
+msgstr "อยู่ในคิวโดย"
#: frappe/core/doctype/submission_queue/submission_queue.py:174
msgid "Queued for Submission. You can track the progress over {0}."
-msgstr ""
+msgstr "อยู่ในคิวสำหรับการส่ง คุณสามารถติดตามความคืบหน้าได้ที่ {0}"
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
-msgstr ""
+msgstr "อยู่ในคิวสำหรับการสำรองข้อมูล คุณจะได้รับอีเมลพร้อมลิงก์ดาวน์โหลด"
#: frappe/email/doctype/newsletter/newsletter.js:95
msgid "Queued {0} emails"
-msgstr ""
+msgstr "อยู่ในคิว {0} อีเมล"
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
-msgstr ""
+msgstr "คิว"
#: frappe/email/doctype/newsletter/newsletter.js:90
msgid "Queuing emails..."
-msgstr ""
+msgstr "กำลังจัดคิวอีเมล..."
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
-msgstr ""
+msgstr "กำลังจัดคิว {0} สำหรับการส่ง"
#. Label of the quick_entry (Check) field in DocType 'DocType'
#. Label of the quick_entry (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Quick Entry"
-msgstr ""
+msgstr "การป้อนข้อมูลอย่างรวดเร็ว"
#: frappe/core/page/permission_manager/permission_manager_help.html:3
msgid "Quick Help for Setting Permissions"
-msgstr ""
+msgstr "ความช่วยเหลือด่วนสำหรับการตั้งค่าสิทธิ์"
#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick
#. List'
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Quick List Filter"
-msgstr ""
+msgstr "ตัวกรองรายการด่วน"
#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace'
#. Label of the quick_lists (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Quick Lists"
-msgstr ""
+msgstr "รายการด่วน"
#: frappe/public/js/frappe/views/reports/report_utils.js:304
msgid "Quoting must be between 0 and 3"
-msgstr ""
+msgstr "การเสนอราคาต้องอยู่ระหว่าง 0 ถึง 3"
#. Label of the raw_information_log_section (Section Break) field in DocType
#. 'Access Log'
@@ -20232,76 +20232,76 @@ msgstr ""
#. Label of the readme (Markdown Editor) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Readme"
-msgstr ""
+msgstr "ไฟล์อ่านฉัน"
#. Label of the realtime_socketio_section (Section Break) field in DocType
#. 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Realtime (SocketIO)"
-msgstr ""
+msgstr "เรียลไทม์ (SocketIO)"
#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Reason"
-msgstr ""
+msgstr "เหตุผล"
#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
-msgstr ""
+msgstr "สร้างใหม่"
#: frappe/public/js/frappe/views/treeview.js:509
msgid "Rebuild Tree"
-msgstr ""
+msgstr "สร้างโครงสร้างใหม่"
#: frappe/utils/nestedset.py:177
msgid "Rebuilding of tree is not supported for {}"
-msgstr ""
+msgstr "การสร้างโครงสร้างใหม่ไม่รองรับสำหรับ {}"
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Received"
-msgstr ""
+msgstr "ได้รับ"
#: frappe/integrations/doctype/token_cache/token_cache.py:49
msgid "Received an invalid token type."
-msgstr ""
+msgstr "ได้รับประเภทโทเค็นที่ไม่ถูกต้อง"
#. Label of the receiver_by_document_field (Select) field in DocType
#. 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr ""
+msgstr "ผู้รับตามฟิลด์เอกสาร"
#. Label of the receiver_by_role (Link) field in DocType 'Notification
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Role"
-msgstr ""
+msgstr "ผู้รับตามบทบาท"
#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr ""
+msgstr "พารามิเตอร์ผู้รับ"
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
-msgstr ""
+msgstr "ปีล่าสุดคาดเดาได้ง่าย"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532
msgid "Recents"
-msgstr ""
+msgstr "ล่าสุด"
#. Label of the recipients (Table) field in DocType 'Email Queue'
#. Label of the recipient (Data) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr ""
+msgstr "ผู้รับ"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr ""
+msgstr "ผู้รับยกเลิกการสมัคร"
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -20309,105 +20309,105 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr ""
+msgstr "ผู้รับ"
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
msgid "Recorder"
-msgstr ""
+msgstr "เครื่องบันทึก"
#. Name of a DocType
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Recorder Query"
-msgstr ""
+msgstr "คำสั่งค้นหาเครื่องบันทึก"
#. Name of a DocType
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
msgid "Recorder Suggested Index"
-msgstr ""
+msgstr "ดัชนีที่แนะนำโดยเครื่องบันทึก"
#: frappe/core/doctype/user_permission/user_permission_help.html:2
msgid "Records for following doctypes will be filtered"
-msgstr ""
+msgstr "บันทึกสำหรับประเภทเอกสารต่อไปนี้จะถูกกรอง"
#: frappe/core/doctype/doctype/doctype.py:1608
msgid "Recursive Fetch From"
-msgstr ""
+msgstr "ดึงข้อมูลแบบวนซ้ำจาก"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Red"
-msgstr ""
+msgstr "สีแดง"
#. Label of the redirect_http_status (Select) field in DocType 'Website Route
#. Redirect'
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Redirect HTTP Status"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางสถานะ HTTP"
#. Label of the redirect_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URI"
#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
#. DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URI ที่ผูกกับรหัสการยืนยันตัวตน"
#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URIs"
#. Label of the redirect_url (Small Text) field in DocType 'User'
#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URL"
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
msgid "Redirect to the selected app after login"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางไปยังแอปที่เลือกหลังเข้าสู่ระบบ"
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
-msgstr ""
+msgstr "เปลี่ยนเส้นทางไปยัง URL นี้หลังจากยืนยันสำเร็จ"
#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Redirects"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง"
#: frappe/sessions.py:149
msgid "Redis cache server not running. Please contact Administrator / Tech support"
-msgstr ""
+msgstr "เซิร์ฟเวอร์แคช Redis ไม่ทำงาน โปรดติดต่อผู้ดูแลระบบ/ฝ่ายสนับสนุนด้านเทคนิค"
#: frappe/public/js/frappe/form/toolbar.js:527
msgid "Redo"
-msgstr ""
+msgstr "ทำซ้ำ"
#: frappe/public/js/frappe/form/form.js:164
#: frappe/public/js/frappe/form/toolbar.js:535
msgid "Redo last action"
-msgstr ""
+msgstr "ทำซ้ำการกระทำล่าสุด"
#. Label of the ref_doctype (Link) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
-msgstr ""
+msgstr "ไม่สามารถใช้ประเภทเอกสารอ้างอิงและชื่อแดชบอร์ดพร้อมกันได้"
#. Label of the linked_with (Section Break) field in DocType 'Address'
#. Label of the contact_details (Section Break) field in DocType 'Contact'
@@ -20429,33 +20429,33 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/public/js/frappe/views/interaction.js:54
msgid "Reference"
-msgstr ""
+msgstr "อ้างอิง"
#. Label of the date_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Reference Date"
-msgstr ""
+msgstr "วันที่อ้างอิง"
#. Label of the datetime_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Reference Datetime"
-msgstr ""
+msgstr "วันที่และเวลาอ้างอิง"
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr ""
+msgstr "ชื่อเอกสารอ้างอิง"
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/error_log/error_log.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
-msgstr ""
+msgstr "ต้องระบุประเภทเอกสารอ้างอิงและชื่ออ้างอิง"
#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
@@ -20463,7 +20463,7 @@ msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr ""
+msgstr "ชื่อเอกสารอ้างอิง"
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -20473,7 +20473,7 @@ msgstr ""
#: frappe/public/js/frappe/views/render_preview.js:34
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Doctype"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#. Label of the reference_document (Dynamic Link) field in DocType 'Auto
#. Repeat'
@@ -20489,7 +20489,7 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Reference Document"
-msgstr ""
+msgstr "เอกสารอ้างอิง"
#. Label of the reference_docname (Dynamic Link) field in DocType 'Document
#. Share Key'
@@ -20498,7 +20498,7 @@ msgstr ""
#: frappe/core/doctype/document_share_key/document_share_key.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Reference Document Name"
-msgstr ""
+msgstr "ชื่อเอกสารอ้างอิง"
#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat'
#. Label of the reference_doctype (Link) field in DocType 'Activity Log'
@@ -20541,7 +20541,7 @@ msgstr ""
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Document Type"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log'
#. Label of the reference_name (Dynamic Link) field in DocType 'Comment'
@@ -20567,7 +20567,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Name"
-msgstr ""
+msgstr "ชื่ออ้างอิง"
#. Label of the reference_owner (Read Only) field in DocType 'Activity Log'
#. Label of the reference_owner (Data) field in DocType 'Comment'
@@ -20576,7 +20576,7 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr ""
+msgstr "เจ้าของอ้างอิง"
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -20585,29 +20585,29 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr ""
+msgstr "รายงานอ้างอิง"
#. Label of the reference_type (Link) field in DocType 'Permission Log'
#. Label of the reference_type (Link) field in DocType 'ToDo'
#: frappe/core/doctype/permission_log/permission_log.json
#: frappe/desk/doctype/todo/todo.json
msgid "Reference Type"
-msgstr ""
+msgstr "ประเภทอ้างอิง"
#. Label of the reference_name (Dynamic Link) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Reference name"
-msgstr ""
+msgstr "ชื่ออ้างอิง"
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
-msgstr ""
+msgstr "อ้างอิง: {0} {1}"
#. Label of the referrer (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:37
msgid "Referrer"
-msgstr ""
+msgstr "ผู้แนะนำ"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:556
@@ -20620,16 +20620,16 @@ msgstr ""
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
#: frappe/public/js/print_format_builder/Preview.vue:24
msgid "Refresh"
-msgstr ""
+msgstr "รีเฟรช"
#: frappe/core/page/dashboard_view/dashboard_view.js:177
msgid "Refresh All"
-msgstr ""
+msgstr "รีเฟรชทั้งหมด"
#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr ""
+msgstr "รีเฟรช Google Sheet"
#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
@@ -20640,39 +20640,39 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr ""
+msgstr "รีเฟรชโทเค็น"
#: frappe/public/js/frappe/list/list_view.js:531
msgctxt "Document count in list view"
msgid "Refreshing"
-msgstr ""
+msgstr "กำลังรีเฟรช"
#: frappe/core/doctype/system_settings/system_settings.js:57
#: frappe/core/doctype/user/user.js:368
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
-msgstr ""
+msgstr "กำลังรีเฟรช..."
#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
-msgstr ""
+msgstr "ลงทะเบียนแล้วแต่ปิดใช้งาน"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/translation/translation.json
msgid "Rejected"
-msgstr ""
+msgstr "ถูกปฏิเสธ"
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
msgid "Relay Server URL missing"
-msgstr ""
+msgstr "ไม่มี URL เซิร์ฟเวอร์รีเลย์"
#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
#. Notification Settings'
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Relay Settings"
-msgstr ""
+msgstr "การตั้งค่ารีเลย์"
#. Group in Package's connections
#: frappe/core/doctype/package/package.json
@@ -20683,40 +20683,40 @@ msgstr ""
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr ""
+msgstr "หมายเหตุการปล่อย"
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
msgid "Relink"
-msgstr ""
+msgstr "ลิงก์ใหม่"
#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr ""
+msgstr "ลิงก์ใหม่การสื่อสาร"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr ""
+msgstr "ลิงก์ใหม่แล้ว"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
#: frappe/public/js/frappe/form/toolbar.js:444
msgid "Reload"
-msgstr ""
+msgstr "โหลดใหม่"
#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Reload File"
-msgstr ""
+msgstr "โหลดไฟล์ใหม่"
#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
-msgstr ""
+msgstr "โหลดรายการใหม่"
#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
-msgstr ""
+msgstr "โหลดรายงานใหม่"
#. Label of the remember_last_selected_value (Check) field in DocType
#. 'DocField'
@@ -20725,92 +20725,92 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr ""
+msgstr "จำค่าที่เลือกครั้งสุดท้าย"
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/public/js/frappe/form/reminders.js:33
msgid "Remind At"
-msgstr ""
+msgstr "เตือนที่"
#: frappe/public/js/frappe/form/toolbar.js:476
msgid "Remind Me"
-msgstr ""
+msgstr "เตือนฉัน"
#: frappe/public/js/frappe/form/reminders.js:13
msgid "Remind Me In"
-msgstr ""
+msgstr "เตือนฉันใน"
#. Name of a DocType
#: frappe/automation/doctype/reminder/reminder.json
msgid "Reminder"
-msgstr ""
+msgstr "การเตือน"
#: frappe/automation/doctype/reminder/reminder.py:39
msgid "Reminder cannot be created in past."
-msgstr ""
+msgstr "ไม่สามารถสร้างการเตือนในอดีตได้"
#: frappe/public/js/frappe/form/reminders.js:96
msgid "Reminder set at {0}"
-msgstr ""
+msgstr "ตั้งค่าการเตือนที่ {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
#: frappe/public/js/frappe/ui/group_by/group_by.html:4
msgid "Remove"
-msgstr ""
+msgstr "ลบ"
#: frappe/core/doctype/rq_job/rq_job_list.js:8
msgid "Remove Failed Jobs"
-msgstr ""
+msgstr "ลบงานที่ล้มเหลว"
#: frappe/printing/page/print_format_builder/print_format_builder.js:493
msgid "Remove Field"
-msgstr ""
+msgstr "ลบฟิลด์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:427
msgid "Remove Section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/custom/doctype/customize_form/customize_form.js:138
msgid "Remove all customizations?"
-msgstr ""
+msgstr "ลบการปรับแต่งทั้งหมดหรือไม่?"
#: frappe/public/js/form_builder/components/Section.vue:286
msgid "Remove all fields in the column"
-msgstr ""
+msgstr "ลบฟิลด์ทั้งหมดในคอลัมน์"
#: frappe/public/js/form_builder/components/Section.vue:278
#: frappe/public/js/frappe/utils/datatable.js:9
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120
msgid "Remove column"
-msgstr ""
+msgstr "ลบคอลัมน์"
#: frappe/public/js/form_builder/components/Field.vue:260
msgid "Remove field"
-msgstr ""
+msgstr "ลบฟิลด์"
#: frappe/public/js/form_builder/components/Section.vue:279
msgid "Remove last column"
-msgstr ""
+msgstr "ลบคอลัมน์สุดท้าย"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
msgid "Remove page break"
-msgstr ""
+msgstr "ลบการแบ่งหน้า"
#: frappe/public/js/form_builder/components/Section.vue:266
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135
msgid "Remove section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/public/js/form_builder/components/Tabs.vue:140
msgid "Remove tab"
-msgstr ""
+msgstr "ลบแท็บ"
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Removed"
-msgstr ""
+msgstr "ลบแล้ว"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
@@ -20819,68 +20819,68 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
-msgstr ""
+msgstr "เปลี่ยนชื่อ"
#: frappe/custom/doctype/custom_field/custom_field.js:116
#: frappe/custom/doctype/custom_field/custom_field.js:136
msgid "Rename Fieldname"
-msgstr ""
+msgstr "เปลี่ยนชื่อฟิลด์"
#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
-msgstr ""
+msgstr "เปลี่ยนชื่อ {0}"
#: frappe/core/doctype/doctype/doctype.py:698
msgid "Renamed files and replaced code in controllers, please check!"
-msgstr ""
+msgstr "เปลี่ยนชื่อไฟล์และแทนที่โค้ดในตัวควบคุมแล้ว โปรดตรวจสอบ!"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
msgid "Render labels to the left and values to the right in this section"
-msgstr ""
+msgstr "แสดงป้ายกำกับทางซ้ายและค่าในทางขวาในส่วนนี้"
#: frappe/core/doctype/communication/communication.js:43
#: frappe/desk/doctype/todo/todo.js:36
msgid "Reopen"
-msgstr ""
+msgstr "เปิดใหม่"
#: frappe/public/js/frappe/form/toolbar.js:544
msgid "Repeat"
-msgstr ""
+msgstr "ทำซ้ำ"
#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Repeat Header and Footer"
-msgstr ""
+msgstr "ทำซ้ำส่วนหัวและส่วนท้าย"
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr ""
+msgstr "ทำซ้ำใน"
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr ""
+msgstr "ทำซ้ำจนถึง"
#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Day"
-msgstr ""
+msgstr "ทำซ้ำในวัน"
#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Days"
-msgstr ""
+msgstr "ทำซ้ำในหลายวัน"
#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Last Day of the Month"
-msgstr ""
+msgstr "ทำซ้ำในวันสุดท้ายของเดือน"
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr ""
+msgstr "ทำซ้ำเหตุการณ์นี้"
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
@@ -20892,38 +20892,38 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
-msgstr ""
+msgstr "ทำซ้ำ {0}"
#: frappe/core/doctype/role_replication/role_replication.js:7
#: frappe/core/doctype/role_replication/role_replication.js:14
msgid "Replicate"
-msgstr ""
+msgstr "ทำซ้ำ"
#: frappe/core/doctype/role_replication/role_replication.js:8
msgid "Replicating..."
-msgstr ""
+msgstr "กำลังทำซ้ำ..."
#: frappe/core/doctype/role_replication/role_replication.js:13
msgid "Replication completed."
-msgstr ""
+msgstr "การทำซ้ำเสร็จสมบูรณ์"
#. Option for the 'Status' (Select) field in DocType 'Contact'
#. Option for the 'Status' (Select) field in DocType 'Communication'
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/communication/communication.json
msgid "Replied"
-msgstr ""
+msgstr "ตอบกลับแล้ว"
#. Label of the reply (Text Editor) field in DocType 'Discussion Reply'
#: frappe/core/doctype/communication/communication.js:57
#: frappe/public/js/frappe/form/footer/form_timeline.js:563
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Reply"
-msgstr ""
+msgstr "ตอบกลับ"
#: frappe/core/doctype/communication/communication.js:62
msgid "Reply All"
-msgstr ""
+msgstr "ตอบกลับทั้งหมด"
#. Label of the report (Check) field in DocType 'Custom DocPerm'
#. Label of the report (Link) field in DocType 'Custom Role'
@@ -20961,7 +20961,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:615
#: frappe/public/js/frappe/utils/utils.js:920
msgid "Report"
-msgstr ""
+msgstr "รายงาน"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
@@ -20969,32 +20969,32 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/list/list_view_select.js:66
msgid "Report Builder"
-msgstr ""
+msgstr "ตัวสร้างรายงาน"
#. Name of a DocType
#: frappe/core/doctype/report_column/report_column.json
msgid "Report Column"
-msgstr ""
+msgstr "คอลัมน์รายงาน"
#. Label of the report_description (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr ""
+msgstr "คำอธิบายรายงาน"
#: frappe/core/doctype/report/report.py:151
msgid "Report Document Error"
-msgstr ""
+msgstr "ข้อผิดพลาดเอกสารรายงาน"
#. Name of a DocType
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Report Filter"
-msgstr ""
+msgstr "ตัวกรองรายงาน"
#. Label of the report_filters (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr ""
+msgstr "ตัวกรองรายงาน"
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21003,19 +21003,19 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr ""
+msgstr "ซ่อนรายงาน"
#. Label of the report_information_section (Section Break) field in DocType
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Report Information"
-msgstr ""
+msgstr "ข้อมูลรายงาน"
#. Name of a role
#: frappe/core/doctype/report/report.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Manager"
-msgstr ""
+msgstr "ผู้จัดการรายงาน"
#. Label of the report_name (Data) field in DocType 'Access Log'
#. Label of the report_name (Data) field in DocType 'Prepared Report'
@@ -21030,24 +21030,24 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
-msgstr ""
+msgstr "ชื่อรายงาน"
#: frappe/desk/doctype/number_card/number_card.py:69
msgid "Report Name, Report Field and Fucntion are required to create a number card"
-msgstr ""
+msgstr "ชื่อรายงาน ฟิลด์รายงาน และฟังก์ชันเป็นสิ่งจำเป็นในการสร้างการ์ดตัวเลข"
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Report Ref DocType"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิงรายงาน"
#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิงรายงาน"
#. Label of the report_type (Select) field in DocType 'Report'
#. Label of the report_type (Data) field in DocType 'Onboarding Step'
@@ -21056,99 +21056,99 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr ""
+msgstr "ประเภทรายงาน"
#: frappe/public/js/frappe/list/base_list.js:203
msgid "Report View"
-msgstr ""
+msgstr "มุมมองรายงาน"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:26
msgid "Report bug"
-msgstr ""
+msgstr "รายงานข้อบกพร่อง"
#: frappe/core/doctype/doctype/doctype.py:1809
msgid "Report cannot be set for Single types"
-msgstr ""
+msgstr "ไม่สามารถตั้งค่ารายงานสำหรับประเภทเดี่ยวได้"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:191
msgid "Report has no data, please modify the filters or change the Report Name"
-msgstr ""
+msgstr "รายงานไม่มีข้อมูล โปรดแก้ไขตัวกรองหรือเปลี่ยนชื่อรายงาน"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
#: frappe/desk/doctype/number_card/number_card.js:186
msgid "Report has no numeric fields, please change the Report Name"
-msgstr ""
+msgstr "รายงานไม่มีฟิลด์ตัวเลข โปรดเปลี่ยนชื่อรายงาน"
#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
-msgstr ""
+msgstr "เริ่มต้นรายงานแล้ว คลิกเพื่อดูสถานะ"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Report limit reached"
-msgstr ""
+msgstr "ถึงขีดจำกัดรายงานแล้ว"
#: frappe/core/doctype/prepared_report/prepared_report.py:223
msgid "Report timed out."
-msgstr ""
+msgstr "รายงานหมดเวลา"
#: frappe/desk/query_report.py:597
msgid "Report updated successfully"
-msgstr ""
+msgstr "อัปเดตรายงานเรียบร้อยแล้ว"
#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
-msgstr ""
+msgstr "รายงานไม่ได้รับการบันทึก (มีข้อผิดพลาด)"
#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
-msgstr ""
+msgstr "รายงานที่มีมากกว่า 10 คอลัมน์ดูดีกว่าในโหมดแนวนอน"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252
msgid "Report {0}"
-msgstr ""
+msgstr "รายงาน {0}"
#: frappe/desk/reportview.py:364
msgid "Report {0} deleted"
-msgstr ""
+msgstr "ลบรายงาน {0} แล้ว"
#: frappe/desk/query_report.py:53
msgid "Report {0} is disabled"
-msgstr ""
+msgstr "รายงาน {0} ถูกปิดใช้งาน"
#: frappe/desk/reportview.py:341
msgid "Report {0} saved"
-msgstr ""
+msgstr "บันทึกรายงาน {0} แล้ว"
#: frappe/public/js/frappe/views/reports/report_view.js:20
msgid "Report:"
-msgstr ""
+msgstr "รายงาน:"
#. Label of the prepared_report_section (Section Break) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547
msgid "Reports"
-msgstr ""
+msgstr "รายงาน"
#: frappe/patches/v14_0/update_workspace2.py:50
msgid "Reports & Masters"
-msgstr ""
+msgstr "รายงานและมาสเตอร์"
#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
-msgstr ""
+msgstr "รายงานอยู่ในคิวแล้ว"
#. Description of a DocType
#: frappe/core/doctype/user/user.json
msgid "Represents a User in the system."
-msgstr ""
+msgstr "แสดงถึงผู้ใช้ในระบบ"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Represents the states allowed in one document and role assigned to change the state."
-msgstr ""
+msgstr "แสดงถึงสถานะที่อนุญาตในเอกสารหนึ่งและบทบาทที่กำหนดให้เปลี่ยนสถานะ"
#: frappe/integrations/doctype/webhook/webhook.js:101
msgid "Request Body"
@@ -21319,7 +21319,7 @@ msgstr ""
#: frappe/templates/emails/password_reset.html:3
msgid "Reset your password"
-msgstr ""
+msgstr "รีเซ็ตรหัสผ่านของคุณ"
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
@@ -21329,7 +21329,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr ""
+msgstr "การตอบกลับ"
#. Label of the response_html (Code) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
@@ -21339,38 +21339,38 @@ msgstr ""
#. Label of the response_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr ""
+msgstr "ประเภทการตอบกลับ"
#: frappe/public/js/frappe/ui/notifications/notifications.js:414
msgid "Rest of the day"
-msgstr ""
+msgstr "ส่วนที่เหลือของวัน"
#: frappe/core/doctype/deleted_document/deleted_document.js:11
#: frappe/core/doctype/deleted_document/deleted_document_list.js:48
msgid "Restore"
-msgstr ""
+msgstr "กู้คืน"
#: frappe/core/page/permission_manager/permission_manager.js:509
msgid "Restore Original Permissions"
-msgstr ""
+msgstr "กู้คืนสิทธิ์ดั้งเดิม"
#: frappe/website/doctype/portal_settings/portal_settings.js:20
msgid "Restore to default settings?"
-msgstr ""
+msgstr "กู้คืนการตั้งค่าเริ่มต้นหรือไม่?"
#. Label of the restored (Check) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr ""
+msgstr "กู้คืนแล้ว"
#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
-msgstr ""
+msgstr "กำลังกู้คืนเอกสารที่ถูกลบ"
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr ""
+msgstr "จำกัด IP"
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -21380,7 +21380,7 @@ msgstr ""
#: frappe/core/doctype/module_def/module_def.json
#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json
msgid "Restrict To Domain"
-msgstr ""
+msgstr "จำกัดเฉพาะโดเมน"
#. Label of the restrict_to_domain (Link) field in DocType 'Workspace'
#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut'
@@ -21392,59 +21392,59 @@ msgstr ""
#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)"
-msgstr ""
+msgstr "จำกัดผู้ใช้จากที่อยู่ IP นี้เท่านั้น สามารถเพิ่มที่อยู่ IP หลายรายการโดยคั่นด้วยเครื่องหมายจุลภาค และยังยอมรับที่อยู่ IP บางส่วน เช่น (111.111.111)"
#: frappe/public/js/frappe/list/list_view.js:196
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
-msgstr ""
+msgstr "ข้อจำกัด"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
msgid "Result"
-msgstr ""
+msgstr "ผลลัพธ์"
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Resume Sending"
-msgstr ""
+msgstr "ดำเนินการส่งต่อ"
#. Label of the retry (Int) field in DocType 'Email Queue'
#: frappe/core/doctype/data_import/data_import.js:110
#: frappe/desk/page/setup_wizard/setup_wizard.js:297
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Retry"
-msgstr ""
+msgstr "ลองใหม่"
#: frappe/email/doctype/email_queue/email_queue_list.js:47
msgid "Retry Sending"
-msgstr ""
+msgstr "ลองส่งใหม่"
#: frappe/www/qrcode.html:15
msgid "Return to the Verification screen and enter the code displayed by your authentication app"
-msgstr ""
+msgstr "กลับไปที่หน้าจอยืนยันและป้อนรหัสที่แสดงโดยแอปยืนยันตัวตนของคุณ"
#. Label of the reverse (Check) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Reverse Icon Color"
-msgstr ""
+msgstr "ย้อนกลับสีไอคอน"
#: frappe/database/schema.py:161
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
-msgstr ""
+msgstr "กำลังเปลี่ยนความยาวกลับเป็น {0} สำหรับ '{1}' ใน '{2}' การตั้งค่าความยาวเป็น {3} จะทำให้ข้อมูลถูกตัดทอน"
#. Label of the revocation_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Revocation URI"
-msgstr ""
+msgstr "URI การเพิกถอน"
#: frappe/www/third_party_apps.html:47
msgid "Revoke"
-msgstr ""
+msgstr "เพิกถอน"
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr ""
+msgstr "ถูกเพิกถอน"
#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
@@ -21454,7 +21454,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
msgid "Rich Text"
-msgstr ""
+msgstr "ข้อความที่มีรูปแบบ"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
@@ -21463,23 +21463,23 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Right"
-msgstr ""
+msgstr "ขวา"
#: frappe/printing/page/print_format_builder/print_format_builder.js:484
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156
msgctxt "alignment"
msgid "Right"
-msgstr ""
+msgstr "ขวา"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Bottom"
-msgstr ""
+msgstr "ขวาล่าง"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Center"
-msgstr ""
+msgstr "ขวากลาง"
#. Label of the robots_txt (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -21515,47 +21515,47 @@ msgstr ""
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Role"
-msgstr ""
+msgstr "บทบาท"
#: frappe/core/doctype/role/role.js:8
msgid "Role 'All' will be given to all system + website users."
-msgstr ""
+msgstr "บทบาท 'ทั้งหมด' จะถูกมอบให้กับผู้ใช้ระบบ + เว็บไซต์ทั้งหมด"
#: frappe/core/doctype/role/role.js:13
msgid "Role 'Desk User' will be given to all system users."
-msgstr ""
+msgstr "บทบาท 'ผู้ใช้เดสก์' จะถูกมอบให้กับผู้ใช้ระบบทั้งหมด"
#. Label of the role_name (Data) field in DocType 'Role'
#. Label of the role_profile (Data) field in DocType 'Role Profile'
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr ""
+msgstr "ชื่อบทบาท"
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
#: frappe/core/workspace/users/users.json
msgid "Role Permission for Page and Report"
-msgstr ""
+msgstr "สิทธิ์บทบาทสำหรับหน้าและรายงาน"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/public/js/frappe/roles_editor.js:103
msgid "Role Permissions"
-msgstr ""
+msgstr "สิทธิ์บทบาท"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager.js:4
#: frappe/core/workspace/users/users.json
msgid "Role Permissions Manager"
-msgstr ""
+msgstr "ผู้จัดการสิทธิ์บทบาท"
#: frappe/public/js/frappe/list/list_view.js:1788
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
-msgstr ""
+msgstr "ผู้จัดการสิทธิ์บทบาท"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
@@ -21566,17 +21566,17 @@ msgstr ""
#: frappe/core/doctype/user_role_profile/user_role_profile.json
#: frappe/core/workspace/users/users.json
msgid "Role Profile"
-msgstr ""
+msgstr "โปรไฟล์บทบาท"
#. Label of the role_profiles (Table MultiSelect) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Role Profiles"
-msgstr ""
+msgstr "โปรไฟล์บทบาท"
#. Name of a DocType
#: frappe/core/doctype/role_replication/role_replication.json
msgid "Role Replication"
-msgstr ""
+msgstr "การจำลองบทบาท"
#. Label of the role_and_level (Section Break) field in DocType 'Custom
#. DocPerm'
@@ -21584,11 +21584,11 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr ""
+msgstr "บทบาทและระดับ"
#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
-msgstr ""
+msgstr "บทบาทถูกตั้งค่าตามประเภทผู้ใช้ {0}"
#. Label of the roles (Table) field in DocType 'Page'
#. Label of the roles (Table) field in DocType 'Report'
@@ -21609,50 +21609,50 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Roles"
-msgstr ""
+msgstr "บทบาท"
#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
-msgstr ""
+msgstr "บทบาทและสิทธิ์"
#. Label of the roles (Table) field in DocType 'Role Profile'
#. Label of the roles (Table) field in DocType 'User'
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr ""
+msgstr "บทบาทที่กำหนด"
#. Label of the roles_html (HTML) field in DocType 'Role Profile'
#. Label of the roles_html (HTML) field in DocType 'User'
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles HTML"
-msgstr ""
+msgstr "บทบาท HTML"
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr ""
+msgstr "บทบาท Html"
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
-msgstr ""
+msgstr "บทบาทสามารถตั้งค่าสำหรับผู้ใช้จากหน้าผู้ใช้ของพวกเขา"
#: frappe/utils/nestedset.py:280
msgid "Root {0} cannot be deleted"
-msgstr ""
+msgstr "ไม่สามารถลบราก {0} ได้"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr ""
+msgstr "รอบโรบิน"
#. Label of the rounding_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
-msgstr ""
+msgstr "วิธีการปัดเศษ"
#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
@@ -21684,17 +21684,17 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Route"
-msgstr ""
+msgstr "เส้นทาง"
#. Name of a DocType
#: frappe/desk/doctype/route_history/route_history.json
msgid "Route History"
-msgstr ""
+msgstr "ประวัติเส้นทาง"
#. Label of the route_redirects (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางเส้นทาง"
#. Description of the 'Home Page' (Data) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
@@ -21703,24 +21703,24 @@ msgstr ""
#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
-msgstr ""
+msgstr "แถว"
#: frappe/core/doctype/version/version_view.html:73
msgid "Row #"
-msgstr ""
+msgstr "แถว #"
#: frappe/core/doctype/doctype/doctype.py:1831
#: frappe/core/doctype/doctype/doctype.py:1841
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr ""
+msgstr "แถว # {0}: ผู้ใช้ที่ไม่ใช่ผู้ดูแลระบบไม่สามารถตั้งค่าบทบาท {1} ให้กับประเภทเอกสารที่กำหนดเองได้"
#: frappe/model/base_document.py:982
msgid "Row #{0}:"
-msgstr ""
+msgstr "แถว #{0}:"
#: frappe/core/doctype/doctype/doctype.py:491
msgid "Row #{}: Fieldname is required"
-msgstr ""
+msgstr "ต้องการชื่อฟิลด์"
#. Label of the row_format (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -21752,15 +21752,15 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.js:367
msgid "Row {0}"
-msgstr ""
+msgstr "แถว {0}"
#: frappe/custom/doctype/customize_form/customize_form.py:352
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
-msgstr ""
+msgstr "แถว {0}: ไม่อนุญาตให้ปิดใช้งานข้อบังคับสำหรับฟิลด์มาตรฐาน"
#: frappe/custom/doctype/customize_form/customize_form.py:341
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
-msgstr ""
+msgstr "แถว {0}: ไม่อนุญาตให้เปิดใช้งานอนุญาตในการส่งสำหรับฟิลด์มาตรฐาน"
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
@@ -21844,41 +21844,41 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr ""
+msgstr "ข้อความ SMS"
#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr ""
+msgstr "URL เกตเวย์ SMS"
#. Name of a DocType
#: frappe/core/doctype/sms_log/sms_log.json
msgid "SMS Log"
-msgstr ""
+msgstr "บันทึก SMS"
#. Name of a DocType
#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "SMS Parameter"
-msgstr ""
+msgstr "พารามิเตอร์ SMS"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/core/doctype/sms_settings/sms_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "SMS Settings"
-msgstr ""
+msgstr "การตั้งค่า SMS"
#: frappe/core/doctype/sms_settings/sms_settings.py:110
msgid "SMS sent successfully"
-msgstr ""
+msgstr "ส่ง SMS สำเร็จ"
#: frappe/templates/includes/login/login.js:369
msgid "SMS was not sent. Please contact Administrator."
-msgstr ""
+msgstr "SMS ไม่ถูกส่ง โปรดติดต่อผู้ดูแลระบบ"
#: frappe/email/doctype/email_account/email_account.py:212
msgid "SMTP Server is required"
-msgstr ""
+msgstr "ต้องการเซิร์ฟเวอร์ SMTP"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -21894,17 +21894,17 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder.js:85
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "SQL Explain"
-msgstr ""
+msgstr "อธิบาย SQL"
#. Label of the sql_output (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
-msgstr ""
+msgstr "ผลลัพธ์ SQL"
#. Label of the sql_queries (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
-msgstr ""
+msgstr "คำสั่ง SQL"
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -21913,30 +21913,30 @@ msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
-msgstr ""
+msgstr "ตัวอย่างสี"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Manager"
-msgstr ""
+msgstr "ผู้จัดการฝ่ายขาย"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Master Manager"
-msgstr ""
+msgstr "ผู้จัดการมาสเตอร์ฝ่ายขาย"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Sales User"
-msgstr ""
+msgstr "ผู้ใช้การขาย"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr ""
+msgstr "เซลส์ฟอร์ซ"
#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
@@ -21944,16 +21944,16 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/doctype/salutation/salutation.json
msgid "Salutation"
-msgstr ""
+msgstr "คำทักทาย"
#: frappe/integrations/doctype/webhook/webhook.py:109
msgid "Same Field is entered more than once"
-msgstr ""
+msgstr "ฟิลด์เดียวกันถูกป้อนมากกว่าหนึ่งครั้ง"
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr ""
+msgstr "ตัวอย่าง"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -21969,7 +21969,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Saturday"
-msgstr ""
+msgstr "วันเสาร์"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/data_import/data_import.js:113
@@ -21994,41 +21994,41 @@ msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33
msgid "Save"
-msgstr ""
+msgstr "บันทึก"
#: frappe/core/doctype/user/user.js:339
msgid "Save API Secret: {0}"
-msgstr ""
+msgstr "บันทึกความลับ API: {0}"
#: frappe/workflow/doctype/workflow/workflow.js:143
msgid "Save Anyway"
-msgstr ""
+msgstr "บันทึกอยู่ดี"
#: frappe/public/js/frappe/views/reports/report_view.js:1388
#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
-msgstr ""
+msgstr "บันทึกเป็น"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63
msgid "Save Customizations"
-msgstr ""
+msgstr "บันทึกการปรับแต่ง"
#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
-msgstr ""
+msgstr "บันทึกรายงาน"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
msgid "Save filters"
-msgstr ""
+msgstr "บันทึกตัวกรอง"
#. Label of the save_on_complete (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Save on Completion"
-msgstr ""
+msgstr "บันทึกเมื่อเสร็จสิ้น"
#: frappe/public/js/frappe/form/form_tour.js:295
msgid "Save the document."
-msgstr ""
+msgstr "บันทึกเอกสาร"
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
@@ -22036,36 +22036,36 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
-msgstr ""
+msgstr "บันทึกแล้ว"
#: frappe/public/js/frappe/list/list_sidebar.html:88
msgid "Saved Filters"
-msgstr ""
+msgstr "ตัวกรองที่บันทึกไว้"
#: frappe/public/js/frappe/list/list_settings.js:40
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
-msgstr ""
+msgstr "กำลังบันทึก"
#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
msgid "Saving"
-msgstr ""
+msgstr "กำลังบันทึก"
#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
-msgstr ""
+msgstr "กำลังบันทึกการปรับแต่ง..."
#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
msgid "Saving this will export this document as well as the steps linked here as json."
-msgstr ""
+msgstr "การบันทึกนี้จะส่งออกเอกสารนี้รวมถึงขั้นตอนที่เชื่อมโยงที่นี่เป็น json"
#: frappe/public/js/form_builder/store.js:233
#: frappe/public/js/print_format_builder/store.js:36
#: frappe/public/js/workflow_builder/store.js:73
msgid "Saving..."
-msgstr ""
+msgstr "กำลังบันทึก..."
#: frappe/public/js/frappe/scanner/index.js:72
msgid "Scan QRCode"
@@ -22471,7 +22471,7 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/multicheck.js:166
#: frappe/public/js/frappe/form/grid_row.js:481
msgid "Select All"
-msgstr ""
+msgstr "เลือกทั้งหมด"
#: frappe/public/js/frappe/views/communication.js:174
#: frappe/public/js/frappe/views/communication.js:595
@@ -22553,187 +22553,187 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:236
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
-msgstr ""
+msgstr "เลือกฟิลด์"
#: frappe/public/js/frappe/data_import/data_exporter.js:147
msgid "Select Fields To Insert"
-msgstr ""
+msgstr "เลือกฟิลด์เพื่อแทรก"
#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Update"
-msgstr ""
+msgstr "เลือกฟิลด์เพื่ออัปเดต"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21
msgid "Select Filters"
-msgstr ""
+msgstr "เลือกตัวกรอง"
#: frappe/desk/doctype/event/event.py:103
msgid "Select Google Calendar to which event should be synced."
-msgstr ""
+msgstr "เลือก Google Calendar ที่จะซิงค์เหตุการณ์"
#: frappe/contacts/doctype/contact/contact.py:77
msgid "Select Google Contacts to which contact should be synced."
-msgstr ""
+msgstr "เลือก Google Contacts ที่จะซิงค์ผู้ติดต่อ"
#: frappe/public/js/frappe/ui/group_by/group_by.html:10
msgid "Select Group By..."
-msgstr ""
+msgstr "เลือกกลุ่มตาม..."
#: frappe/public/js/frappe/list/list_view_select.js:185
msgid "Select Kanban"
-msgstr ""
+msgstr "เลือก Kanban"
#: frappe/desk/page/setup_wizard/setup_wizard.js:391
msgid "Select Language"
-msgstr ""
+msgstr "เลือกภาษา"
#. Label of the list_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select List View"
-msgstr ""
+msgstr "เลือกมุมมองรายการ"
#: frappe/public/js/frappe/data_import/data_exporter.js:158
msgid "Select Mandatory"
-msgstr ""
+msgstr "เลือกข้อบังคับ"
#: frappe/custom/doctype/customize_form/customize_form.js:280
msgid "Select Module"
-msgstr ""
+msgstr "เลือกโมดูล"
#: frappe/printing/page/print/print.js:175
#: frappe/printing/page/print/print.js:585
msgid "Select Network Printer"
-msgstr ""
+msgstr "เลือกเครื่องพิมพ์เครือข่าย"
#. Label of the page_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
-msgstr ""
+msgstr "เลือกหน้า"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
#: frappe/public/js/frappe/views/communication.js:157
msgid "Select Print Format"
-msgstr ""
+msgstr "เลือกรูปแบบการพิมพ์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:82
msgid "Select Print Format to Edit"
-msgstr ""
+msgstr "เลือกรูปแบบการพิมพ์เพื่อแก้ไข"
#. Label of the report_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Report"
-msgstr ""
+msgstr "เลือกรายงาน"
#: frappe/printing/page/print_format_builder/print_format_builder.js:631
msgid "Select Table Columns for {0}"
-msgstr ""
+msgstr "เลือกคอลัมน์ตารางสำหรับ {0}"
#: frappe/desk/page/setup_wizard/setup_wizard.js:408
msgid "Select Time Zone"
-msgstr ""
+msgstr "เลือกเขตเวลา"
#. Label of the transaction_type (Autocomplete) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr ""
+msgstr "เลือกธุรกรรม"
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
-msgstr ""
+msgstr "เลือกเวิร์กโฟลว์"
#. Label of the workspace_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
-msgstr ""
+msgstr "เลือกพื้นที่ทำงาน"
#. Label of the select_workspaces_section (Section Break) field in DocType
#. 'Workspace Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Select Workspaces"
-msgstr ""
+msgstr "เลือกพื้นที่ทำงาน"
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
-msgstr ""
+msgstr "เลือกภาพแบรนด์ก่อน"
#: frappe/printing/page/print_format_builder/print_format_builder.js:108
msgid "Select a DocType to make a new format"
-msgstr ""
+msgstr "เลือกประเภทเอกสารเพื่อสร้างรูปแบบใหม่"
#: frappe/public/js/form_builder/components/Sidebar.vue:56
msgid "Select a field to edit its properties."
-msgstr ""
+msgstr "เลือกฟิลด์เพื่อแก้ไขคุณสมบัติ"
#: frappe/public/js/frappe/views/treeview.js:358
msgid "Select a group node first."
-msgstr ""
+msgstr "เลือกโหนดกลุ่มก่อน"
#: frappe/core/doctype/doctype/doctype.py:1942
msgid "Select a valid Sender Field for creating documents from Email"
-msgstr ""
+msgstr "เลือกฟิลด์ผู้ส่งที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล"
#: frappe/core/doctype/doctype/doctype.py:1926
msgid "Select a valid Subject field for creating documents from Email"
-msgstr ""
+msgstr "เลือกฟิลด์หัวเรื่องที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล"
#: frappe/public/js/frappe/form/form_tour.js:321
msgid "Select an Image"
-msgstr ""
+msgstr "เลือกภาพ"
#: frappe/www/apps.html:10
msgid "Select an app to continue"
-msgstr ""
+msgstr "เลือกแอปเพื่อดำเนินการต่อ"
#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2
msgid "Select an existing format to edit or start a new format."
-msgstr ""
+msgstr "เลือกรูปแบบที่มีอยู่เพื่อแก้ไขหรือเริ่มรูปแบบใหม่"
#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Select an image of approx width 150px with a transparent background for best results."
-msgstr ""
+msgstr "เลือกภาพที่มีความกว้างประมาณ 150px พร้อมพื้นหลังโปร่งใสเพื่อผลลัพธ์ที่ดีที่สุด"
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
-msgstr ""
+msgstr "เลือกอย่างน้อย 1 รายการสำหรับการพิมพ์"
#: frappe/core/doctype/success_action/success_action.js:18
msgid "Select atleast 2 actions"
-msgstr ""
+msgstr "เลือกอย่างน้อย 2 การกระทำ"
#: frappe/public/js/frappe/list/list_view.js:1304
msgctxt "Description of a list view shortcut"
msgid "Select list item"
-msgstr ""
+msgstr "เลือกรายการในรายการ"
#: frappe/public/js/frappe/list/list_view.js:1256
#: frappe/public/js/frappe/list/list_view.js:1272
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
-msgstr ""
+msgstr "เลือกรายการในรายการหลายรายการ"
#: frappe/public/js/frappe/views/calendar/calendar.js:167
msgid "Select or drag across time slots to create a new event."
-msgstr ""
+msgstr "เลือกหรือลากข้ามช่วงเวลาเพื่อสร้างเหตุการณ์ใหม่"
#: frappe/public/js/frappe/list/bulk_operations.js:239
msgid "Select records for assignment"
-msgstr ""
+msgstr "เลือกรายการสำหรับการมอบหมาย"
#: frappe/public/js/frappe/list/bulk_operations.js:260
msgid "Select records for removing assignment"
-msgstr ""
+msgstr "เลือกรายการสำหรับการลบการมอบหมาย"
#. Description of the 'Insert After' (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Select the label after which you want to insert new field."
-msgstr ""
+msgstr "เลือกป้ายกำกับหลังจากนั้นคุณต้องการแทรกฟิลด์ใหม่"
#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
-msgstr ""
+msgstr "เลือกสองเวอร์ชันเพื่อดูความแตกต่าง"
#: frappe/public/js/frappe/form/link_selector.js:24
#: frappe/public/js/frappe/form/multi_select_dialog.js:80
@@ -22741,200 +22741,200 @@ msgstr ""
#: frappe/public/js/frappe/list/list_view_select.js:153
#: frappe/public/js/print_format_builder/Preview.vue:90
msgid "Select {0}"
-msgstr ""
+msgstr "เลือก {0}"
#: frappe/model/workflow.py:117
msgid "Self approval is not allowed"
-msgstr ""
+msgstr "ไม่อนุญาตให้อนุมัติด้วยตนเอง"
#: frappe/email/doctype/newsletter/newsletter.js:66
#: frappe/email/doctype/newsletter/newsletter.js:74
#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
msgid "Send"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/views/communication.js:26
msgctxt "Send Email"
msgid "Send"
-msgstr ""
+msgstr "ส่ง"
#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence."
-msgstr ""
+msgstr "ส่ง โดยเร็วที่สุด จำนวนนี้ของนาทีก่อนหรือหลังวันที่และเวลาที่อ้างอิง การส่งจริงอาจล่าช้าได้ถึง 5 นาทีเนื่องจากจังหวะการทำงานของตัวกำหนดเวลา"
#. Label of the send_after (Datetime) field in DocType 'Communication'
#. Label of the send_after (Datetime) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr ""
+msgstr "ส่งหลังจาก"
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนเมื่อ"
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนทางอีเมล"
#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Email At"
-msgstr ""
+msgstr "ส่งอีเมลเมื่อ"
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
-msgstr ""
+msgstr "ส่งอีเมลเมื่อสถานะ"
#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr ""
+msgstr "ส่งไฟล์แนบพิมพ์อีเมลเป็น PDF (แนะนำ)"
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Send Email To Creator"
-msgstr ""
+msgstr "ส่งอีเมลถึงผู้สร้าง"
#. Label of the send_me_a_copy (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Me A Copy of Outgoing Emails"
-msgstr ""
+msgstr "ส่งสำเนาอีเมลขาออกให้ฉัน"
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนถึง"
#. Label of the document_follow_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Documents Followed By Me"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนสำหรับเอกสารที่ฉันติดตาม"
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนสำหรับเธรดอีเมล"
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
-msgstr ""
+msgstr "ส่งเดี๋ยวนี้"
#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Print as PDF"
-msgstr ""
+msgstr "ส่งพิมพ์เป็น PDF"
#: frappe/public/js/frappe/views/communication.js:147
msgid "Send Read Receipt"
-msgstr ""
+msgstr "ส่งใบตอบรับการอ่าน"
#. Label of the send_system_notification (Check) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนระบบ"
#: frappe/email/doctype/newsletter/newsletter.js:153
msgid "Send Test Email"
-msgstr ""
+msgstr "ส่งอีเมลทดสอบ"
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr ""
+msgstr "ส่งถึงผู้รับมอบหมายทั้งหมด"
#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Unsubscribe Link"
-msgstr ""
+msgstr "ส่งลิงก์ยกเลิกการสมัคร"
#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Web View Link"
-msgstr ""
+msgstr "ส่งลิงก์มุมมองเว็บ"
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
-msgstr ""
+msgstr "ส่งอีเมลต้อนรับ"
#: frappe/email/doctype/newsletter/newsletter.js:10
msgid "Send a test email"
-msgstr ""
+msgstr "ส่งอีเมลทดสอบ"
#: frappe/email/doctype/newsletter/newsletter.js:166
msgid "Send again"
-msgstr ""
+msgstr "ส่งอีกครั้ง"
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนหากวันที่ตรงกับค่าของฟิลด์นี้"
#. Description of the 'Reference Datetime' (Select) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if datetime matches this field's value"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนหากวันที่และเวลาตรงกับค่าของฟิลด์นี้"
#. Description of the 'Value Changed' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if this field's value changes"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนหากค่าของฟิลด์นี้เปลี่ยนแปลง"
#. Label of the send_reminder (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Send an email reminder in the morning"
-msgstr ""
+msgstr "ส่งการเตือนทางอีเมลในตอนเช้า"
#. Description of the 'Days Before or After' (Int) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr ""
+msgstr "ส่งก่อนหรือหลังวันที่อ้างอิง"
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send email when document transitions to the state."
-msgstr ""
+msgstr "ส่งอีเมลเมื่อเอกสารเปลี่ยนสถานะ"
#. Description of the 'Forward To Email Address' (Data) field in DocType
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr ""
+msgstr "ส่งคำถามไปยังที่อยู่อีเมลนี้"
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
msgid "Send login link"
-msgstr ""
+msgstr "ส่งลิงก์เข้าสู่ระบบ"
#: frappe/public/js/frappe/views/communication.js:141
msgid "Send me a copy"
-msgstr ""
+msgstr "ส่งสำเนาให้ฉัน"
#: frappe/email/doctype/newsletter/newsletter.js:46
msgid "Send now"
-msgstr ""
+msgstr "ส่งเดี๋ยวนี้"
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr ""
+msgstr "ส่งเฉพาะเมื่อมีข้อมูล"
#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send unsubscribe message in email"
-msgstr ""
+msgstr "ส่งข้อความยกเลิกการสมัครในอีเมล"
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -22948,39 +22948,39 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
-msgstr ""
+msgstr "ผู้ส่ง"
#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
-msgstr ""
+msgstr "อีเมลผู้ส่ง"
#. Label of the sender_field (Data) field in DocType 'DocType'
#. Label of the sender_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Email Field"
-msgstr ""
+msgstr "ฟิลด์อีเมลผู้ส่ง"
#: frappe/core/doctype/doctype/doctype.py:1945
msgid "Sender Field should have Email in options"
-msgstr ""
+msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
-msgstr ""
+msgstr "ชื่อผู้ส่ง"
#. Label of the sender_name_field (Data) field in DocType 'DocType'
#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Name Field"
-msgstr ""
+msgstr "ฟิลด์ชื่อผู้ส่ง"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -22993,15 +22993,15 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
-msgstr ""
+msgstr "กำลังส่ง"
#: frappe/email/doctype/newsletter/newsletter.js:203
msgid "Sending emails"
-msgstr ""
+msgstr "กำลังส่งอีเมล"
#: frappe/email/doctype/newsletter/newsletter.js:164
msgid "Sending..."
-msgstr ""
+msgstr "กำลังส่ง..."
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
@@ -23013,39 +23013,39 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.js:196
#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
-msgstr ""
+msgstr "ส่งแล้ว"
#. Label of the sent_folder_name (Data) field in DocType 'Email Account'
#. Label of the sent_folder_name (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Sent Folder Name"
-msgstr ""
+msgstr "ชื่อโฟลเดอร์ที่ส่ง"
#. Label of the sent_on (Date) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent On"
-msgstr ""
+msgstr "ส่งเมื่อ"
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr ""
+msgstr "ส่งใบตอบรับการอ่าน"
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent To"
-msgstr ""
+msgstr "ส่งถึง"
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr ""
+msgstr "ส่งหรือรับ"
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr ""
+msgstr "อีเมลที่ส่ง/รับ"
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
@@ -23110,7 +23110,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:254
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
-msgstr ""
+msgstr "ระบบไม่สามารถประมวลผลคำขอ เนื่องจากเกิดข้อขัดแย้งจากคำขอที่ทำงานพร้อมกัน กรุณาลองอีกครั้ง"
#: frappe/public/js/frappe/request.js:246
msgid "Server was too busy to process this request. Please try again."
@@ -23141,24 +23141,24 @@ msgstr ""
#: frappe/core/doctype/session_default_settings/session_default_settings.json
#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
msgid "Session Defaults"
-msgstr ""
+msgstr "ค่าเริ่มต้นของเซสชัน"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
msgid "Session Defaults Saved"
-msgstr ""
+msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว"
#: frappe/app.py:353
msgid "Session Expired"
-msgstr ""
+msgstr "เซสชันหมดอายุ"
#. Label of the session_expiry (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Session Expiry (idle timeout)"
-msgstr ""
+msgstr "การหมดอายุของเซสชัน (หมดเวลาไม่ใช้งาน)"
#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
-msgstr ""
+msgstr "การหมดอายุของเซสชันต้องอยู่ในรูปแบบ {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
@@ -23166,22 +23166,22 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:387
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
-msgstr ""
+msgstr "ตั้งค่า"
#: frappe/public/js/frappe/ui/filters/filter.js:607
msgctxt "Field value is set"
msgid "Set"
-msgstr ""
+msgstr "ตั้งค่า"
#. Label of the set_banner_from_image (Button) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr ""
+msgstr "ตั้งค่าแบนเนอร์จากภาพ"
#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
-msgstr ""
+msgstr "ตั้งค่าแผนภูมิ"
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -23191,54 +23191,54 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
#: frappe/desk/doctype/number_card/number_card.js:367
msgid "Set Dynamic Filters"
-msgstr ""
+msgstr "ตั้งค่าตัวกรองแบบไดนามิก"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
#: frappe/desk/doctype/number_card/number_card.js:280
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
-msgstr ""
+msgstr "ตั้งค่าตัวกรอง"
#: frappe/public/js/frappe/widgets/chart_widget.js:436
#: frappe/public/js/frappe/widgets/quick_list_widget.js:105
msgid "Set Filters for {0}"
-msgstr ""
+msgstr "ตั้งค่าตัวกรองสำหรับ {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
-msgstr ""
+msgstr "ตั้งค่าระดับ"
#: frappe/core/doctype/user_type/user_type.py:92
msgid "Set Limit"
-msgstr ""
+msgstr "ตั้งค่าขีดจำกัด"
#. Description of the 'Setup Series for transactions' (Section Break) field in
#. DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
-msgstr ""
+msgstr "ตั้งค่าตัวเลือกชุดการตั้งชื่อในธุรกรรมของคุณ"
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr ""
+msgstr "ตั้งรหัสผ่านใหม่"
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
-msgstr ""
+msgstr "ตั้งค่าจำนวนการสำรองข้อมูล"
#: frappe/www/update-password.html:32
msgid "Set Password"
-msgstr ""
+msgstr "ตั้งรหัสผ่าน"
#: frappe/custom/doctype/customize_form/customize_form.js:112
msgid "Set Permissions"
-msgstr ""
+msgstr "ตั้งค่าสิทธิ์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:471
msgid "Set Properties"
-msgstr ""
+msgstr "ตั้งค่าคุณสมบัติ"
#. Label of the property_section (Section Break) field in DocType
#. 'Notification'
@@ -23246,56 +23246,56 @@ msgstr ""
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr ""
+msgstr "ตั้งค่าคุณสมบัติหลังการแจ้งเตือน"
#: frappe/public/js/frappe/form/link_selector.js:207
#: frappe/public/js/frappe/form/link_selector.js:208
msgid "Set Quantity"
-msgstr ""
+msgstr "ตั้งค่าปริมาณ"
#. Label of the set_role_for (Select) field in DocType 'Role Permission for
#. Page and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Set Role For"
-msgstr ""
+msgstr "ตั้งค่าบทบาทสำหรับ"
#: frappe/core/doctype/user/user.js:131
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
-msgstr ""
+msgstr "ตั้งค่าสิทธิ์ผู้ใช้"
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr ""
+msgstr "ตั้งค่ามูลค่า"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134
msgid "Set all private"
-msgstr ""
+msgstr "ตั้งค่าทั้งหมดเป็นส่วนตัว"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
msgid "Set all public"
-msgstr ""
+msgstr "ตั้งค่าทั้งหมดเป็นสาธารณะ"
#: frappe/printing/doctype/print_format/print_format.js:49
msgid "Set as Default"
-msgstr ""
+msgstr "ตั้งค่าเป็นค่าเริ่มต้น"
#: frappe/website/doctype/website_theme/website_theme.js:33
msgid "Set as Default Theme"
-msgstr ""
+msgstr "ตั้งค่าเป็นธีมเริ่มต้น"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Set by user"
-msgstr ""
+msgstr "ตั้งค่าโดยผู้ใช้"
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "Set dynamic filter values in JavaScript for the required fields here."
-msgstr ""
+msgstr "ตั้งค่าค่าตัวกรองแบบไดนามิกใน JavaScript สำหรับฟิลด์ที่ต้องการที่นี่"
#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
@@ -23307,17 +23307,17 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
-msgstr ""
+msgstr "ตั้งค่าความแม่นยำที่ไม่เป็นมาตรฐานสำหรับฟิลด์ Float หรือ Currency"
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
-msgstr ""
+msgstr "ตั้งค่าเพียงครั้งเดียว"
#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Set size in MB"
-msgstr ""
+msgstr "ตั้งค่าขนาดใน MB"
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
@@ -23356,15 +23356,15 @@ msgstr ""
#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr ""
+msgstr "ตั้งค่าแม่แบบที่อยู่นี้เป็นค่าเริ่มต้นเนื่องจากไม่มีค่าเริ่มต้นอื่น"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
-msgstr ""
+msgstr "กำลังตั้งค่าเอกสารการค้นหาระดับโลก"
#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr ""
+msgstr "กำลังตั้งค่าระบบของคุณ"
#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
#. Label of the settings_tab (Tab Break) field in DocType 'User'
@@ -23383,66 +23383,66 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json frappe/www/me.html:20
msgid "Settings"
-msgstr ""
+msgstr "การตั้งค่า"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr ""
+msgstr "การตั้งค่าดรอปดาวน์"
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Settings for Contact Us Page"
-msgstr ""
+msgstr "การตั้งค่าสำหรับหน้าติดต่อเรา"
#. Description of a DocType
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Settings for the About Us Page"
-msgstr ""
+msgstr "การตั้งค่าสำหรับหน้าเกี่ยวกับเรา"
#. Description of a DocType
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Settings to control blog categories and interactions like comments and likes"
-msgstr ""
+msgstr "การตั้งค่าเพื่อควบคุมหมวดหมู่บล็อกและการโต้ตอบเช่นความคิดเห็นและการถูกใจ"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
msgid "Setup"
-msgstr ""
+msgstr "การตั้งค่า"
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "Setup > Customize Form"
-msgstr ""
+msgstr "การตั้งค่า > ปรับแต่งฟอร์ม"
#: frappe/core/page/permission_manager/permission_manager_help.html:8
msgid "Setup > User"
-msgstr ""
+msgstr "การตั้งค่า > ผู้ใช้"
#: frappe/core/page/permission_manager/permission_manager_help.html:33
msgid "Setup > User Permissions"
-msgstr ""
+msgstr "การตั้งค่า > สิทธิ์ผู้ใช้"
#: frappe/public/js/frappe/views/reports/query_report.js:1765
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
-msgstr ""
+msgstr "ตั้งค่าอีเมลอัตโนมัติ"
#. Label of the setup_complete (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Setup Complete"
-msgstr ""
+msgstr "การตั้งค่าเสร็จสมบูรณ์"
#. Label of the setup_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr ""
+msgstr "ตั้งค่าชุดสำหรับธุรกรรม"
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
-msgstr ""
+msgstr "การตั้งค่าล้มเหลว"
#. Label of the share (Check) field in DocType 'Custom DocPerm'
#. Label of the share (Check) field in DocType 'DocPerm'
@@ -23456,64 +23456,64 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr ""
+msgstr "แชร์"
#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr ""
+msgstr "แชร์กับ"
#: frappe/public/js/frappe/form/templates/set_sharing.html:49
msgid "Share this document with"
-msgstr ""
+msgstr "แชร์เอกสารนี้กับ"
#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr ""
+msgstr "แชร์ {0} กับ"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr ""
+msgstr "แชร์"
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr ""
+msgstr "แชร์กับผู้ใช้ต่อไปนี้ที่มีสิทธิ์การเข้าถึงแบบอ่าน:{0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr ""
+msgstr "การขนส่ง"
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
-msgstr ""
+msgstr "ที่อยู่การขนส่ง"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr ""
+msgstr "ร้านค้า"
#. Label of the short_name (Data) field in DocType 'Blogger'
#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr ""
+msgstr "ชื่อย่อ"
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr ""
+msgstr "รูปแบบแป้นพิมพ์สั้น ๆ เดาง่าย"
#. Label of the shortcuts (Table) field in DocType 'Workspace'
#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr ""
+msgstr "ทางลัด"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
msgid "Show"
-msgstr ""
+msgstr "แสดง"
#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
@@ -23532,20 +23532,20 @@ msgstr ""
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
-msgstr ""
+msgstr "แสดงค่าที่แน่นอน"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
msgid "Show All"
-msgstr ""
+msgstr "แสดงทั้งหมด"
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr ""
+msgstr "แสดงปฏิทิน"
#. Label of the symbol_on_right (Check) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
-msgstr ""
+msgstr "แสดงสัญลักษณ์สกุลเงินทางด้านขวา"
#. Label of the show_dashboard (Check) field in DocType 'DocField'
#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
@@ -23555,141 +23555,141 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
-msgstr ""
+msgstr "แสดงแดชบอร์ด"
#. Label of the show_document (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr ""
+msgstr "แสดงเอกสาร"
#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
-msgstr ""
+msgstr "แสดงข้อผิดพลาด"
#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
-msgstr ""
+msgstr "แสดงชื่อฟิลด์ (คลิกเพื่อคัดลอกไปยังคลิปบอร์ด)"
#. Label of the first_document (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
-msgstr ""
+msgstr "แสดงทัวร์เอกสารแรก"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr ""
+msgstr "แสดงทัวร์ฟอร์ม"
#. Label of the allow_error_traceback (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr ""
+msgstr "แสดงข้อผิดพลาดทั้งหมดและอนุญาตให้รายงานปัญหาไปยังนักพัฒนา"
#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr ""
+msgstr "แสดงฟอร์มทั้งหมดหรือไม่?"
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Full Number"
-msgstr ""
+msgstr "แสดงหมายเลขทั้งหมด"
#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr ""
+msgstr "แสดงทางลัดแป้นพิมพ์"
#. Label of the show_labels (Check) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
-msgstr ""
+msgstr "แสดงป้ายกำกับ"
#. Label of the show_language_picker (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
-msgstr ""
+msgstr "แสดงตัวเลือกภาษา"
#. Label of the line_breaks (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr ""
+msgstr "แสดงการแบ่งบรรทัดหลังส่วน"
#: frappe/public/js/frappe/form/toolbar.js:407
msgid "Show Links"
-msgstr ""
+msgstr "แสดงลิงก์"
#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Show Only Failed Logs"
-msgstr ""
+msgstr "แสดงเฉพาะบันทึกที่ล้มเหลว"
#. Label of the show_percentage_stats (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Percentage Stats"
-msgstr ""
+msgstr "แสดงสถิติเปอร์เซ็นต์"
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr ""
+msgstr "แสดงสิทธิ์"
#: frappe/public/js/form_builder/form_builder.bundle.js:31
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
-msgstr ""
+msgstr "แสดงตัวอย่าง"
#. Label of the show_preview_popup (Check) field in DocType 'DocType'
#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr ""
+msgstr "แสดงป๊อปอัปตัวอย่าง"
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
-msgstr ""
+msgstr "แสดงรายการกระบวนการ"
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
-msgstr ""
+msgstr "แสดงข้อผิดพลาดที่เกี่ยวข้อง"
#. Label of the show_report (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
#: frappe/core/doctype/prepared_report/prepared_report.js:43
#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr ""
+msgstr "แสดงรายงาน"
#: frappe/public/js/frappe/list/list_filter.js:15
#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
-msgstr ""
+msgstr "แสดงที่บันทึกไว้"
#. Label of the show_section_headings (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Section Headings"
-msgstr ""
+msgstr "แสดงหัวข้อส่วน"
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr ""
+msgstr "แสดงแถบด้านข้าง"
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
-msgstr ""
+msgstr "แสดงแท็ก"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr ""
+msgstr "แสดงชื่อเรื่อง"
#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
@@ -23697,108 +23697,108 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
-msgstr ""
+msgstr "แสดงชื่อเรื่องในฟิลด์ลิงก์"
#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
-msgstr ""
+msgstr "แสดงยอดรวม"
#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
-msgstr ""
+msgstr "แสดงทัวร์"
#: frappe/core/doctype/data_import/data_import.js:448
msgid "Show Traceback"
-msgstr ""
+msgstr "แสดงการติดตามข้อผิดพลาด"
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
-msgstr ""
+msgstr "แสดงคำเตือน"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr ""
+msgstr "แสดงวันหยุดสุดสัปดาห์"
#. Label of the show_account_deletion_link (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
-msgstr ""
+msgstr "แสดงลิงก์ลบบัญชีในหน้าบัญชีของฉัน"
#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr ""
+msgstr "แสดงทุกเวอร์ชัน"
#: frappe/public/js/frappe/form/footer/form_timeline.js:69
msgid "Show all activity"
-msgstr ""
+msgstr "แสดงกิจกรรมทั้งหมด"
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
-msgstr ""
+msgstr "แสดงบล็อกทั้งหมด"
#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr ""
+msgstr "แสดงเป็น cc"
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show attachments"
-msgstr ""
+msgstr "แสดงไฟล์แนบ"
#. Label of the show_footer_on_login (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
-msgstr ""
+msgstr "แสดงส่วนท้ายเมื่อเข้าสู่ระบบ"
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr ""
+msgstr "แสดงฟอร์มเต็มแทนโมดัลการป้อนข้อมูลด่วน"
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr ""
+msgstr "แสดงในส่วนโมดูล"
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr ""
+msgstr "แสดงในตัวกรอง"
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
-msgstr ""
+msgstr "แสดงลิงก์ไปยังเอกสาร"
#. Label of the show_list (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show list"
-msgstr ""
+msgstr "แสดงรายการ"
#: frappe/public/js/frappe/form/layout.js:273
#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
-msgstr ""
+msgstr "แสดงรายละเอียดเพิ่มเติม"
#. Label of the show_on_timeline (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Show on Timeline"
-msgstr ""
+msgstr "แสดงในไทม์ไลน์"
#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr ""
+msgstr "แสดงความแตกต่างของเปอร์เซ็นต์ตามช่วงเวลานี้"
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show sidebar"
-msgstr ""
+msgstr "แสดงแถบด้านข้าง"
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -23807,15 +23807,15 @@ msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
-msgstr ""
+msgstr "แสดงรายการ {0}"
#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
-msgstr ""
+msgstr "แสดงเฉพาะฟิลด์ตัวเลขจากรายงาน"
#: frappe/public/js/frappe/data_import/import_preview.js:153
msgid "Showing only first {0} rows out of {1}"
-msgstr ""
+msgstr "แสดงเฉพาะ {0} แถวแรกจาก {1}"
#. Label of the list_sidebar (Check) field in DocType 'User'
#. Label of the form_sidebar (Check) field in DocType 'User'
@@ -23879,7 +23879,7 @@ msgstr ""
#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
-msgstr ""
+msgstr "การลงทะเบียนถูกปิดใช้งานสำหรับเว็บไซต์นี้"
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
@@ -23902,35 +23902,35 @@ msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr ""
+msgstr "เซสชันพร้อมกัน"
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
-msgstr ""
+msgstr "ประเภทเอกสารเดี่ยวไม่สามารถปรับแต่งได้"
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr ""
+msgstr "ประเภทเดี่ยวมีเพียงหนึ่งระเบียนไม่มีตารางที่เกี่ยวข้อง ค่าเก็บไว้ใน tabSingles"
#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
-msgstr ""
+msgstr "ไซต์กำลังทำงานในโหมดอ่านอย่างเดียวสำหรับการบำรุงรักษาหรืออัปเดตไซต์ ไม่สามารถดำเนินการนี้ได้ในขณะนี้ โปรดลองอีกครั้งในภายหลัง"
#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Size"
-msgstr ""
+msgstr "ขนาด"
#. Label of the size (Float) field in DocType 'System Health Report Tables'
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "Size (MB)"
-msgstr ""
+msgstr "ขนาด (MB)"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
msgid "Skip"
-msgstr ""
+msgstr "ข้าม"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
@@ -23938,36 +23938,36 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Skip Authorization"
-msgstr ""
+msgstr "ข้ามการอนุญาต"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
-msgstr ""
+msgstr "ข้ามขั้นตอน"
#. Label of the skipped (Check) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
-msgstr ""
+msgstr "ข้ามแล้ว"
#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr ""
+msgstr "ข้ามคอลัมน์ซ้ำ {0}"
#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr ""
+msgstr "ข้ามคอลัมน์ที่ไม่มีชื่อ"
#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr ""
+msgstr "ข้ามคอลัมน์ {0}"
#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
-msgstr ""
+msgstr "ข้ามการซิงค์ฟิกซ์เจอร์สำหรับประเภทเอกสาร {0} จากไฟล์ {1}"
#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
-msgstr ""
+msgstr "ข้าม {0} จาก {1}, {2}"
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -23982,39 +23982,39 @@ msgstr ""
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr ""
+msgstr "ช่อง Slack"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr ""
+msgstr "ข้อผิดพลาด Webhook ของ Slack"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr ""
+msgstr "URL Webhook ของ Slack"
#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr ""
+msgstr "สไลด์โชว์"
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr ""
+msgstr "รายการสไลด์โชว์"
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr ""
+msgstr "ชื่อสไลด์โชว์"
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow like display for the website"
-msgstr ""
+msgstr "การแสดงผลแบบสไลด์โชว์สำหรับเว็บไซต์"
#. Label of the slug (Data) field in DocType 'UTM Campaign'
#. Label of the slug (Data) field in DocType 'UTM Medium'
@@ -24036,23 +24036,23 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr ""
+msgstr "ข้อความเล็ก"
#. Label of the smallest_currency_fraction_value (Currency) field in DocType
#. 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr ""
+msgstr "ค่าหน่วยย่อยของสกุลเงินที่เล็กที่สุด"
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr ""
+msgstr "หน่วยเศษส่วนที่เล็กที่สุดที่หมุนเวียนได้ (เหรียญ) เช่น 1 เซ็นต์สำหรับ USD และควรป้อนเป็น 0.01"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
-msgstr ""
+msgstr "ข้อความย่อและตัวแปรเพิ่มเติม: {0}"
#. Name of a DocType
#: frappe/website/doctype/social_link_settings/social_link_settings.json
@@ -24177,23 +24177,23 @@ msgstr ""
#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr ""
+msgstr "ชื่อต้นทาง"
#. Label of the source_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr ""
+msgstr "ข้อความต้นทาง"
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
msgid "Spacer"
-msgstr ""
+msgstr "ตัวเว้นวรรค"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr ""
+msgstr "สแปม"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -24202,44 +24202,44 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr ""
+msgstr "ไม่อนุญาตอักขระพิเศษ"
#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr ""
+msgstr "ไม่อนุญาตอักขระพิเศษยกเว้น '-', '#', '.', '/', '{{' และ '}}' ในชุดการตั้งชื่อ {0}"
#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Specify a custom timeout, default timeout is 1500 seconds"
-msgstr ""
+msgstr "ระบุการหมดเวลาที่กำหนดเอง ค่าเริ่มต้นคือ 1500 วินาที"
#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
#. 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
-msgstr ""
+msgstr "ระบุโดเมนหรือแหล่งที่ได้รับอนุญาตให้ฝังฟอร์มนี้ ป้อนหนึ่งโดเมนต่อบรรทัด (เช่น https://example.com) หากไม่ได้ระบุโดเมน ฟอร์มสามารถฝังได้เฉพาะในแหล่งเดียวกัน"
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
-msgstr ""
+msgstr "ภาพสแปลช"
#: frappe/desk/reportview.py:419
#: frappe/public/js/frappe/web_form/web_form_list.js:175
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
-msgstr ""
+msgstr "ลำดับ"
#: frappe/public/js/print_format_builder/Field.vue:143
#: frappe/public/js/print_format_builder/Field.vue:164
msgid "Sr No."
-msgstr ""
+msgstr "เลขลำดับ"
#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:82
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
-msgstr ""
+msgstr "การติดตามสแต็ก"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
@@ -24255,65 +24255,65 @@ msgstr ""
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Standard"
-msgstr ""
+msgstr "มาตรฐาน"
#: frappe/model/delete_doc.py:78
msgid "Standard DocType can not be deleted."
-msgstr ""
+msgstr "ไม่สามารถลบประเภทเอกสารมาตรฐานได้"
#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr ""
+msgstr "ประเภทเอกสารมาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นได้ ใช้การปรับแต่งฟอร์ม"
#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
-msgstr ""
+msgstr "ไม่ได้ตั้งค่ามาตรฐาน"
#: frappe/core/page/permission_manager/permission_manager.js:132
msgid "Standard Permissions"
-msgstr ""
+msgstr "สิทธิ์มาตรฐาน"
#: frappe/printing/doctype/print_format/print_format.py:75
msgid "Standard Print Format cannot be updated"
-msgstr ""
+msgstr "ไม่สามารถอัปเดตรูปแบบการพิมพ์มาตรฐานได้"
#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนสไตล์การพิมพ์มาตรฐานได้ โปรดทำสำเนาเพื่อแก้ไข"
#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
-msgstr ""
+msgstr "ไม่สามารถลบรายงานมาตรฐานได้"
#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
-msgstr ""
+msgstr "ไม่สามารถแก้ไขรายงานมาตรฐานได้"
#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr ""
+msgstr "เมนูแถบด้านข้างมาตรฐาน"
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
-msgstr ""
+msgstr "ไม่สามารถแก้ไขฟอร์มเว็บมาตรฐานได้ ให้ทำสำเนาฟอร์มเว็บแทน"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Standard rich text editor with controls"
-msgstr ""
+msgstr "โปรแกรมแก้ไขข้อความมาตรฐานพร้อมการควบคุม"
#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr ""
+msgstr "ไม่สามารถปิดใช้งานบทบาทมาตรฐานได้"
#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนชื่อบทบาทมาตรฐานได้"
#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
-msgstr ""
+msgstr "ไม่สามารถลบประเภทผู้ใช้มาตรฐาน {0} ได้"
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
@@ -24494,7 +24494,7 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr ""
+msgstr "สถานะ"
#: frappe/www/update-password.html:163
msgid "Status Updated"
@@ -24617,7 +24617,7 @@ msgstr ""
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr ""
+msgstr "ซับโดเมน"
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -24642,7 +24642,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:116
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr ""
+msgstr "หัวข้อ"
#. Label of the subject_field (Data) field in DocType 'DocType'
#. Label of the subject_field (Data) field in DocType 'Customize Form'
@@ -24651,16 +24651,16 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr ""
+msgstr "ฟิลด์หัวข้อ"
#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr ""
+msgstr "ประเภทฟิลด์หัวข้อควรเป็นข้อมูล, ข้อความ, ข้อความยาว, ข้อความเล็ก, ตัวแก้ไขข้อความ"
#. Name of a DocType
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
-msgstr ""
+msgstr "คิวการส่ง"
#. Label of the submit (Check) field in DocType 'Custom DocPerm'
#. Label of the submit (Check) field in DocType 'DocPerm'
@@ -24676,70 +24676,70 @@ msgstr ""
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/list/list_view.js:2086
msgctxt "Button in list view actions menu"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/website/doctype/web_form/templates/web_form.html:47
msgctxt "Button in web form"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/ui/dialog.js:62
msgctxt "Primary action in dialog"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/ui/messages.js:97
msgctxt "Primary action of prompt dialog"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/desk.js:227
msgctxt "Submit password for Email Account"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#. Label of the submit_after_import (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Submit After Import"
-msgstr ""
+msgstr "ส่งหลังจากนำเข้า"
#: frappe/core/page/permission_manager/permission_manager_help.html:39
msgid "Submit an Issue"
-msgstr ""
+msgstr "ส่งปัญหา"
#: frappe/website/doctype/web_form/templates/web_form.html:156
msgctxt "Button in web form"
msgid "Submit another response"
-msgstr ""
+msgstr "ส่งคำตอบอื่น"
#. Label of the button_label (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Submit button label"
-msgstr ""
+msgstr "ป้ายกำกับปุ่มส่ง"
#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
-msgstr ""
+msgstr "ส่งเมื่อสร้าง"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
-msgstr ""
+msgstr "ส่งเอกสารนี้เพื่อดำเนินการขั้นตอนนี้ให้เสร็จสิ้น"
#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr ""
+msgstr "ส่งเอกสารนี้เพื่อยืนยัน"
#: frappe/public/js/frappe/list/list_view.js:2091
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
-msgstr ""
+msgstr "ส่งเอกสาร {0} หรือไม่?"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -24747,36 +24747,36 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:539
#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
-msgstr ""
+msgstr "ส่งแล้ว"
#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
-msgstr ""
+msgstr "เอกสารที่ส่งแล้วไม่สามารถเปลี่ยนกลับเป็นร่างได้ แถวการเปลี่ยนผ่าน {0}"
#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
-msgstr ""
+msgstr "เอกสารที่ส่งแล้วไม่สามารถเปลี่ยนกลับเป็นร่างได้ในขณะที่เปลี่ยนจาก สถานะ {0} เป็น สถานะ {1}"
#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
-msgstr ""
+msgstr "กำลังส่ง"
#: frappe/desk/doctype/bulk_update/bulk_update.py:88
msgid "Submitting {0}"
-msgstr ""
+msgstr "กำลังส่ง {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr ""
+msgstr "บริษัทในเครือ"
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#. Label of the subtitle (Data) field in DocType 'Blog Settings'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Subtitle"
-msgstr ""
+msgstr "คำบรรยาย"
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
#. Option for the 'Status' (Select) field in DocType 'Data Import'
@@ -24798,83 +24798,83 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Success"
-msgstr ""
+msgstr "สำเร็จ"
#. Name of a DocType
#: frappe/core/doctype/success_action/success_action.json
msgid "Success Action"
-msgstr ""
+msgstr "การดำเนินการสำเร็จ"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr ""
+msgstr "ข้อความสำเร็จ"
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Success URI"
-msgstr ""
+msgstr "URI สำเร็จ"
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr ""
+msgstr "URL สำเร็จ"
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success message"
-msgstr ""
+msgstr "ข้อความสำเร็จ"
#. Label of the success_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success title"
-msgstr ""
+msgstr "ชื่อเรื่องสำเร็จ"
#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
-msgstr ""
+msgstr "สำเร็จ! คุณพร้อมแล้ว 👍"
#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
-msgstr ""
+msgstr "จำนวนงานที่สำเร็จ"
#: frappe/model/workflow.py:307
msgid "Successful Transactions"
-msgstr ""
+msgstr "ธุรกรรมที่สำเร็จ"
#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
-msgstr ""
+msgstr "สำเร็จ: {0} ถึง {1}"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr ""
+msgstr "อัปเดตสำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
-msgstr ""
+msgstr "นำเข้า {0} สำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:144
msgid "Successfully imported {0} out of {1} records."
-msgstr ""
+msgstr "นำเข้า {0} จาก {1} รายการสำเร็จ"
#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
-msgstr ""
+msgstr "รีเซ็ตสถานะการเริ่มต้นใช้งานสำหรับผู้ใช้ทั้งหมดสำเร็จ"
#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr ""
+msgstr "อัปเดตการแปลสำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
-msgstr ""
+msgstr "อัปเดต {0} สำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:149
msgid "Successfully updated {0} out of {1} records."
-msgstr ""
+msgstr "อัปเดต {0} จาก {1} รายการสำเร็จ"
#: frappe/core/doctype/recorder/recorder.js:15
msgid "Suggest Optimizations"
@@ -24924,143 +24924,143 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr ""
+msgstr "ระงับการส่ง"
#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
-msgstr ""
+msgstr "สลับกล้อง"
#: frappe/public/js/frappe/desk.js:96
#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
-msgstr ""
+msgstr "สลับธีม"
#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr ""
+msgstr "สลับไปที่เดสก์"
#: frappe/public/js/frappe/list/list_sidebar.js:319
msgid "Switch to Frappe CRM for smarter sales"
-msgstr ""
+msgstr "สลับไปที่ Frappe CRM เพื่อการขายที่ชาญฉลาดขึ้น"
#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
-msgstr ""
+msgstr "กำลังสลับกล้อง"
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr ""
+msgstr "สัญลักษณ์"
#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
#. Label of the sync (Section Break) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr ""
+msgstr "ซิงค์"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr ""
+msgstr "ซิงค์ปฏิทิน"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr ""
+msgstr "ซิงค์ผู้ติดต่อ"
#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Sync events from Google as public"
-msgstr ""
+msgstr "ซิงค์กิจกรรมจาก Google เป็นสาธารณะ"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr ""
+msgstr "ซิงค์เมื่อย้าย"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
-msgstr ""
+msgstr "โทเค็นซิงค์ไม่ถูกต้องและถูกรีเซ็ต ลองซิงค์อีกครั้ง"
#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr ""
+msgstr "ซิงค์กับ Google ปฏิทิน"
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr ""
+msgstr "ซิงค์กับ Google ผู้ติดต่อ"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
-msgstr ""
+msgstr "ซิงค์ฟิลด์ {0}"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
-msgstr ""
+msgstr "ฟิลด์ที่ซิงค์แล้ว"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr ""
+msgstr "กำลังซิงค์"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr ""
+msgstr "กำลังซิงค์ {0} จาก {1}"
#: frappe/utils/data.py:2494
msgid "Syntax Error"
-msgstr ""
+msgstr "ข้อผิดพลาดทางไวยากรณ์"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr ""
+msgstr "ระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr ""
+msgstr "คอนโซลระบบ"
#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนชื่อฟิลด์ที่ระบบสร้างขึ้นได้"
#. Label of a standard help item
#. Type: Route
#: frappe/hooks.py
msgid "System Health"
-msgstr ""
+msgstr "สุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "System Health Report"
-msgstr ""
+msgstr "รายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
msgid "System Health Report Errors"
-msgstr ""
+msgstr "ข้อผิดพลาดรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "System Health Report Failing Jobs"
-msgstr ""
+msgstr "งานที่ล้มเหลวในรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "System Health Report Queue"
-msgstr ""
+msgstr "คิวรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "System Health Report Tables"
-msgstr ""
+msgstr "ตารางรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "System Health Report Workers"
-msgstr ""
+msgstr "ผู้ปฏิบัติงานรายงานสุขภาพระบบ"
#. Label of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -25212,32 +25212,32 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "System Manager"
-msgstr ""
+msgstr "ผู้จัดการระบบ"
#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
-msgstr ""
+msgstr "ต้องการสิทธิ์ผู้จัดการระบบ"
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr ""
+msgstr "การแจ้งเตือนระบบ"
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr ""
+msgstr "หน้าระบบ"
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr ""
+msgstr "การตั้งค่าระบบ"
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr ""
+msgstr "ผู้จัดการระบบได้รับอนุญาตโดยค่าเริ่มต้น"
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
@@ -25429,25 +25429,25 @@ msgstr ""
#: frappe/core/doctype/translation/test_translation.py:47
#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
-msgstr ""
+msgstr "ข้อมูลทดสอบ"
#. Label of the test_job_id (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Test Job ID"
-msgstr ""
+msgstr "รหัสงานทดสอบ"
#: frappe/core/doctype/translation/test_translation.py:49
#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
-msgstr ""
+msgstr "ทดสอบภาษาสเปน"
#: frappe/email/doctype/newsletter/newsletter.py:92
msgid "Test email sent to {0}"
-msgstr ""
+msgstr "อีเมลทดสอบถูกส่งไปยัง {0}"
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
-msgstr ""
+msgstr "โฟลเดอร์ทดสอบ"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25460,22 +25460,22 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr ""
+msgstr "ข้อความ"
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr ""
+msgstr "จัดแนวข้อความ"
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr ""
+msgstr "สีข้อความ"
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr ""
+msgstr "เนื้อหาข้อความ"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25486,11 +25486,11 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr ""
+msgstr "ตัวแก้ไขข้อความ"
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr ""
+msgstr "ขอบคุณ"
#: frappe/www/contact.py:39
msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
@@ -25500,27 +25500,27 @@ msgstr ""
#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
-msgstr ""
+msgstr "ขอบคุณที่สละเวลาของคุณในการกรอกแบบฟอร์มนี้"
#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr ""
+msgstr "ขอบคุณสำหรับอีเมลของคุณ"
#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr ""
+msgstr "ขอบคุณสำหรับความคิดเห็นของคุณ!"
#: frappe/email/doctype/newsletter/newsletter.py:332
msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
+msgstr "ขอบคุณที่สนใจสมัครรับข้อมูลอัปเดตของเรา"
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
-msgstr ""
+msgstr "ขอบคุณสำหรับข้อความของคุณ"
#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
-msgstr ""
+msgstr "ขอบคุณ"
#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
@@ -25584,32 +25584,32 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
-msgstr ""
+msgstr "คอลัมน์ {0} มีรูปแบบวันที่ {1} รูปแบบที่แตกต่างกัน กำลังตั้งค่า {2} เป็นรูปแบบเริ่มต้นโดยอัตโนมัติเนื่องจากเป็นรูปแบบที่พบบ่อยที่สุด โปรดเปลี่ยนค่าอื่นๆ ในคอลัมน์นี้ให้เป็นรูปแบบนี้"
#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
-msgstr ""
+msgstr "ความคิดเห็นต้องไม่ว่างเปล่า"
#: frappe/templates/emails/workflow_action.html:9
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
-msgstr ""
+msgstr "เนื้อหาในอีเมลนี้เป็นความลับอย่างเคร่งครัด โปรดอย่าส่งต่ออีเมลนี้ให้ใคร"
#: frappe/public/js/frappe/list/list_view.js:658
msgid "The count shown is an estimated count. Click here to see the accurate count."
-msgstr ""
+msgstr "จำนวนที่แสดงเป็นจำนวนโดยประมาณ คลิกที่นี่เพื่อดูจำนวนที่ถูกต้อง"
#. Description of the 'Code' (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "The country's ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "รหัส ISO 3166 ALPHA-2 ของประเทศ"
#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
-msgstr ""
+msgstr "ไม่สามารถกำหนดเอกสารได้อย่างถูกต้อง"
#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
-msgstr ""
+msgstr "เอกสารถูกกำหนดให้กับ {0}"
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
@@ -25618,74 +25618,74 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
+msgstr "ประเภทเอกสารที่เลือกเป็นตารางลูก ดังนั้นจึงต้องการประเภทเอกสารหลัก"
#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
-msgstr ""
+msgstr "ฟิลด์ {0} เป็นสิ่งจำเป็น"
#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
-msgstr ""
+msgstr "ชื่อฟิลด์ที่คุณระบุในฟิลด์ที่แนบมาไม่ถูกต้อง"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
msgid "The following Assignment Days have been repeated: {0}"
-msgstr ""
+msgstr "วันมอบหมายต่อไปนี้ถูกทำซ้ำ: {0}"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
-msgstr ""
+msgstr "สคริปต์ส่วนหัวต่อไปนี้จะเพิ่มวันที่ปัจจุบันไปยังองค์ประกอบใน 'Header HTML' ที่มีคลาส 'header-content'"
#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
-msgstr ""
+msgstr "ค่าต่อไปนี้ไม่ถูกต้อง: {0} ค่าต้องเป็นหนึ่งใน {1}"
#: frappe/core/doctype/data_import/importer.py:1043
msgid "The following values do not exist for {0}: {1}"
-msgstr ""
+msgstr "ค่าต่อไปนี้ไม่มีอยู่สำหรับ {0}: {1}"
#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
-msgstr ""
+msgstr "ไม่ได้ตั้งค่าขีดจำกัดสำหรับประเภทผู้ใช้ {0} ในไฟล์การกำหนดค่าไซต์"
#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
-msgstr ""
+msgstr "ลิงก์จะหมดอายุใน {0} นาที"
#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
-msgstr ""
+msgstr "ลิงก์ที่คุณพยายามเข้าสู่ระบบไม่ถูกต้องหรือหมดอายุ"
#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
-msgstr ""
+msgstr "คำอธิบายเมตาเป็นแอตทริบิวต์ HTML ที่ให้สรุปสั้นๆ ของหน้าเว็บ เครื่องมือค้นหาเช่น Google มักจะแสดงคำอธิบายเมตาในผลการค้นหา ซึ่งสามารถมีอิทธิพลต่ออัตราการคลิกผ่าน"
#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
-msgstr ""
+msgstr "ภาพเมตาเป็นภาพที่ไม่ซ้ำกันซึ่งแสดงถึงเนื้อหาของหน้า รูปภาพสำหรับการ์ดนี้ควรมีความกว้างอย่างน้อย 280px และสูงอย่างน้อย 150px"
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr ""
+msgstr "ชื่อที่จะปรากฏใน Google ปฏิทิน"
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
-msgstr ""
+msgstr "ทัวร์ถัดไปจะเริ่มจากจุดที่ผู้ใช้หยุดไว้"
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
-msgstr ""
+msgstr "จำนวนวินาทีก่อนที่คำขอจะหมดอายุ"
#: frappe/www/update-password.html:88
msgid "The password of your account has expired."
-msgstr ""
+msgstr "รหัสผ่านของบัญชีของคุณหมดอายุแล้ว"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
-msgstr ""
+msgstr "กระบวนการลบข้อมูล {0} ที่เกี่ยวข้องกับ {1} ได้เริ่มต้นขึ้นแล้ว"
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -25696,48 +25696,48 @@ msgstr ""
#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
-msgstr ""
+msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอายุแล้ว"
#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
-msgstr ""
+msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง"
#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr ""
+msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่"
#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
-msgstr ""
+msgstr "บทบาท {0} ควรเป็นบทบาทที่กำหนดเอง"
#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
-msgstr ""
+msgstr "เอกสารที่เลือก {0} ไม่ใช่ {1}"
#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
-msgstr ""
+msgstr "ระบบกำลังอัปเดต โปรดรีเฟรชอีกครั้งหลังจากสักครู่"
#: frappe/core/page/permission_manager/permission_manager_help.html:9
msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
-msgstr ""
+msgstr "ระบบมีบทบาทที่กำหนดไว้ล่วงหน้ามากมาย คุณสามารถเพิ่มบทบาทใหม่เพื่อกำหนดสิทธิ์ที่ละเอียดขึ้น"
#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
-msgstr ""
+msgstr "จำนวนประเภทเอกสารผู้ใช้ทั้งหมดเกินขีดจำกัดแล้ว"
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
-msgstr ""
+msgstr "ค่าที่คุณวางมีความยาว {0} ตัวอักษร จำนวนตัวอักษรสูงสุดที่อนุญาตคือ {1}"
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr ""
+msgstr "Webhook จะถูกเรียกใช้หากนิพจน์นี้เป็นจริง"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
-msgstr ""
+msgstr "{0} อยู่ในโหมดทำซ้ำอัตโนมัติ {1} แล้ว"
#. Label of the section_break_6 (Section Break) field in DocType 'Website
#. Settings'
@@ -25802,145 +25802,145 @@ msgstr ""
#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr ""
+msgstr "มีปัญหากับ URL ของไฟล์: {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
-msgstr ""
+msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:"
#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "There must be atleast one permission rule."
-msgstr ""
+msgstr "ต้องมีอย่างน้อยหนึ่งกฎสิทธิ์"
#: frappe/www/error.py:17
msgid "There was an error building this page"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดในการสร้างหน้านี้"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดในการบันทึกตัวกรอง"
#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr ""
+msgstr "มีข้อผิดพลาด"
#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
-msgstr ""
+msgstr "เกิดข้อผิดพลาดขณะสร้างเอกสาร โปรดลองอีกครั้ง"
#: frappe/public/js/frappe/views/communication.js:837
msgid "There were errors while sending email. Please try again."
-msgstr ""
+msgstr "เกิดข้อผิดพลาดขณะส่งอีเมล โปรดลองอีกครั้ง"
#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดบางอย่างในการตั้งชื่อ โปรดติดต่อผู้ดูแลระบบ"
#. Description of the 'Announcement Widget' (Text Editor) field in DocType
#. 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "These announcements will appear inside a dismissible alert below the Navbar."
-msgstr ""
+msgstr "ประกาศเหล่านี้จะแสดงในข้อความแจ้งเตือนที่สามารถปิดได้ใต้แถบนำทาง"
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
-msgstr ""
+msgstr "การตั้งค่าเหล่านี้จำเป็นหากใช้ไดเรกทอรี LDAP แบบกำหนดเอง"
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr ""
+msgstr "ค่าดังกล่าวจะถูกอัปเดตโดยอัตโนมัติในธุรกรรมและยังมีประโยชน์ในการจำกัดสิทธิ์สำหรับผู้ใช้นี้ในธุรกรรมที่มีค่าดังกล่าว"
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr ""
+msgstr "แอปพลิเคชันของบุคคลที่สาม"
#. Label of the third_party_authentication (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr ""
+msgstr "การตรวจสอบสิทธิ์ของบุคคลที่สาม"
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr ""
+msgstr "สกุลเงินนี้ถูกปิดใช้งาน เปิดใช้งานเพื่อใช้ในธุรกรรม"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
msgid "This Kanban Board will be private"
-msgstr ""
+msgstr "กระดาน Kanban นี้จะเป็นส่วนตัว"
#: frappe/public/js/frappe/ui/filters/filter.js:666
msgid "This Month"
-msgstr ""
+msgstr "เดือนนี้"
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
-msgstr ""
+msgstr "ไตรมาสนี้"
#: frappe/public/js/frappe/ui/filters/filter.js:662
msgid "This Week"
-msgstr ""
+msgstr "สัปดาห์นี้"
#: frappe/public/js/frappe/ui/filters/filter.js:674
msgid "This Year"
-msgstr ""
+msgstr "ปีนี้"
#: frappe/custom/doctype/customize_form/customize_form.js:220
msgid "This action is irreversible. Do you wish to continue?"
-msgstr ""
+msgstr "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?"
#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
-msgstr ""
+msgstr "การกระทำนี้อนุญาตเฉพาะสำหรับ {}"
#: frappe/public/js/frappe/form/toolbar.js:117
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
-msgstr ""
+msgstr "ไม่สามารถย้อนกลับได้"
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr ""
+msgstr "การ์ดนี้จะพร้อมใช้งานสำหรับผู้ใช้ทุกคนหากตั้งค่านี้"
#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "This chart will be available to all Users if this is set"
-msgstr ""
+msgstr "แผนภูมินี้จะพร้อมใช้งานสำหรับผู้ใช้ทุกคนหากตั้งค่านี้"
#: frappe/custom/doctype/customize_form/customize_form.js:212
msgid "This doctype has no orphan fields to trim"
-msgstr ""
+msgstr "ประเภทเอกสารนี้ไม่มีฟิลด์ที่ไม่ได้ใช้งานให้ตัดแต่ง"
#: frappe/core/doctype/doctype/doctype.py:1054
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
-msgstr ""
+msgstr "ประเภทเอกสารนี้มีการย้ายข้อมูลที่ค้างอยู่ ให้รัน 'bench migrate' ก่อนแก้ไขประเภทเอกสารเพื่อหลีกเลี่ยงการสูญเสียการเปลี่ยนแปลง"
#: frappe/model/delete_doc.py:112
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
-msgstr ""
+msgstr "ไม่สามารถลบเอกสารนี้ได้ในขณะนี้เนื่องจากกำลังถูกแก้ไขโดยผู้ใช้อื่น โปรดลองอีกครั้งหลังจากสักครู่"
#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr ""
+msgstr "เอกสารนี้ถูกแก้ไขหลังจากส่งอีเมลแล้ว"
#: frappe/public/js/frappe/form/form.js:1305
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
-msgstr ""
+msgstr "เอกสารนี้มีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกซึ่งอาจไม่ปรากฏใน PDF สุดท้าย
พิจารณาบันทึกเอกสารก่อนพิมพ์"
#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
-msgstr ""
+msgstr "เอกสารนี้ได้รับการแก้ไขแล้ว คุณไม่สามารถแก้ไขได้อีก"
#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
-msgstr ""
+msgstr "เอกสารนี้ถูกล็อกและจัดคิวสำหรับการดำเนินการ โปรดลองอีกครั้งหลังจากสักครู่"
#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
-msgstr ""
+msgstr "อีเมลนี้ถูกสร้างขึ้นโดยอัตโนมัติ"
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
msgid "This feature can not be used as dependencies are missing.\n"
@@ -25949,7 +25949,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "This feature is brand new and still experimental"
-msgstr ""
+msgstr "คุณลักษณะนี้เป็นของใหม่และยังอยู่ในขั้นทดลอง"
#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
#. Field'
@@ -25962,138 +25962,138 @@ msgstr ""
#: frappe/core/doctype/file/file.py:500
msgid "This file is attached to a protected document and cannot be deleted."
-msgstr ""
+msgstr "ไฟล์นี้แนบกับเอกสารที่ได้รับการป้องกันและไม่สามารถลบได้"
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
-msgstr ""
+msgstr "ไฟล์นี้เป็นสาธารณะและสามารถเข้าถึงได้โดยทุกคน แม้ไม่ได้เข้าสู่ระบบ ทำเครื่องหมายเป็นส่วนตัวเพื่อจำกัดการเข้าถึง"
#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
-msgstr ""
+msgstr "ไฟล์นี้เป็นสาธารณะ สามารถเข้าถึงได้โดยไม่ต้องยืนยันตัวตน"
#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
-msgstr ""
+msgstr "ฟอร์มนี้ถูกแก้ไขหลังจากที่คุณโหลดแล้ว"
#: frappe/public/js/frappe/form/form.js:2257
msgid "This form is not editable due to a Workflow."
-msgstr ""
+msgstr "ฟอร์มนี้ไม่สามารถแก้ไขได้เนื่องจากเวิร์กโฟลว์"
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr ""
+msgstr "รูปแบบนี้จะถูกใช้หากไม่พบรูปแบบเฉพาะประเทศ"
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
msgid "This geolocation provider is not supported yet."
-msgstr ""
+msgstr "ผู้ให้บริการตำแหน่งทางภูมิศาสตร์นี้ยังไม่ได้รับการสนับสนุน"
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr ""
+msgstr "สิ่งนี้จะอยู่เหนือสไลด์โชว์"
#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
-msgstr ""
+msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่"
#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
-msgstr ""
+msgstr "นี่คือรหัสผ่านที่พบบ่อยใน 10 อันดับแรก"
#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
-msgstr ""
+msgstr "นี่คือรหัสผ่านที่พบบ่อยใน 100 อันดับแรก"
#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
-msgstr ""
+msgstr "นี่คือรหัสผ่านที่พบบ่อยมาก"
#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
-msgstr ""
+msgstr "นี่คือประเภทเอกสารเสมือนและข้อมูลจะถูกล้างเป็นระยะ"
#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
-msgstr ""
+msgstr "นี่คือการตอบกลับที่สร้างขึ้นโดยอัตโนมัติ"
#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog
#. Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "This is an example Google SERP Preview."
-msgstr ""
+msgstr "นี่คือตัวอย่างการแสดงผลใน Google SERP"
#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
-msgstr ""
+msgstr "นี่คล้ายกับรหัสผ่านที่ใช้บ่อย"
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr ""
+msgstr "นี่คือตัวเลขของธุรกรรมล่าสุดที่สร้างด้วยคำนำหน้านี้"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
-msgstr ""
+msgstr "ลิงก์นี้ถูกเปิดใช้งานแล้วสำหรับการยืนยัน"
#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
-msgstr ""
+msgstr "ลิงก์นี้ไม่ถูกต้องหรือหมดอายุ โปรดตรวจสอบว่าคุณวางถูกต้อง"
#: frappe/printing/page/print/print.js:410
msgid "This may get printed on multiple pages"
-msgstr ""
+msgstr "สิ่งนี้อาจถูกพิมพ์ในหลายหน้า"
#: frappe/utils/goal.py:109
msgid "This month"
-msgstr ""
+msgstr "เดือนนี้"
#: frappe/email/doctype/newsletter/newsletter.js:223
msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
+msgstr "จดหมายข่าวนี้มีกำหนดส่งในวันที่ {0}"
#: frappe/email/doctype/newsletter/newsletter.js:50
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
+msgstr "จดหมายข่าวนี้มีกำหนดส่งในภายหลัง คุณแน่ใจหรือไม่ว่าต้องการส่งตอนนี้?"
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
-msgstr ""
+msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน"
#: frappe/templates/emails/auto_email_report.html:57
msgid "This report was generated on {0}"
-msgstr ""
+msgstr "รายงานนี้ถูกสร้างขึ้นเมื่อ {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
-msgstr ""
+msgstr "รายงานนี้ถูกสร้างขึ้น {0}"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr ""
+msgstr "คำขอนี้ยังไม่ได้รับการอนุมัติจากผู้ใช้"
#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
-msgstr ""
+msgstr "ไซต์นี้อยู่ในโหมดอ่านอย่างเดียว ฟังก์ชันการทำงานทั้งหมดจะได้รับการคืนค่าในไม่ช้า"
#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
-msgstr ""
+msgstr "ไซต์นี้กำลังทำงานในโหมดนักพัฒนา การเปลี่ยนแปลงใด ๆ ที่ทำที่นี่จะถูกอัปเดตในโค้ด"
#: frappe/www/attribution.html:11
msgid "This software is built on top of many open source packages."
-msgstr ""
+msgstr "ซอฟต์แวร์นี้สร้างขึ้นบนพื้นฐานของแพ็คเกจโอเพ่นซอร์สมากมาย"
#: frappe/website/doctype/web_page/web_page.js:71
msgid "This title will be used as the title of the webpage as well as in meta tags"
-msgstr ""
+msgstr "ชื่อนี้จะถูกใช้เป็นชื่อของหน้าเว็บรวมถึงในแท็กเมตา"
#: frappe/public/js/frappe/form/controls/base_input.js:129
msgid "This value is fetched from {0}'s {1} field"
-msgstr ""
+msgstr "ค่านี้ถูกดึงมาจากฟิลด์ {1} ของ {0}"
#. Description of the 'Max Report Rows' (Int) field in DocType 'System
#. Settings'
@@ -26103,31 +26103,31 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
-msgstr ""
+msgstr "สิ่งนี้จะถูกสร้างขึ้นโดยอัตโนมัติเมื่อคุณเผยแพร่หน้า คุณยังสามารถป้อนเส้นทางเองได้หากต้องการ"
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr ""
+msgstr "สิ่งนี้จะแสดงในหน้าต่างโมดัลหลังจากการกำหนดเส้นทาง"
#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown to the user in a dialog after routing to the report"
-msgstr ""
+msgstr "สิ่งนี้จะแสดงให้ผู้ใช้เห็นในกล่องโต้ตอบหลังจากการกำหนดเส้นทางไปยังรายงาน"
#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
-msgstr ""
+msgstr "สิ่งนี้จะออกจากระบบ {0} จากอุปกรณ์อื่นทั้งหมด"
#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
-msgstr ""
+msgstr "สิ่งนี้จะลบข้อมูลของคุณอย่างถาวร"
#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
-msgstr ""
+msgstr "สิ่งนี้จะรีเซ็ตทัวร์นี้และแสดงให้ผู้ใช้ทุกคนเห็น คุณแน่ใจหรือไม่?"
#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
@@ -26450,19 +26450,19 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
msgid "To allow more reports update limit in System Settings."
-msgstr ""
+msgstr "เพื่ออนุญาตให้รายงานเพิ่มเติมอัปเดตขีดจำกัดในการตั้งค่าระบบ"
#. Label of the section_break_10 (Section Break) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr ""
+msgstr "ถึงและสำเนา"
#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
#. Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year."
-msgstr ""
+msgstr "เพื่อเริ่มช่วงวันที่ตั้งแต่ต้นช่วงเวลาที่เลือก ตัวอย่างเช่น หากเลือก 'ปี' เป็นช่วงเวลา รายงานจะเริ่มตั้งแต่วันที่ 1 มกราคมของปีปัจจุบัน"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
@@ -26470,44 +26470,44 @@ msgstr ""
#: frappe/www/login.html:76
msgid "To enable it follow the instructions in the following link: {0}"
-msgstr ""
+msgstr "เพื่อเปิดใช้งาน ให้ทำตามคำแนะนำในลิงก์ต่อไปนี้: {0}"
#: frappe/core/doctype/server_script/server_script.js:40
msgid "To enable server scripts, read the {0}."
-msgstr ""
+msgstr "เพื่อเปิดใช้งานสคริปต์เซิร์ฟเวอร์ อ่าน {0}"
#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
msgid "To export this step as JSON, link it in a Onboarding document and save the document."
-msgstr ""
+msgstr "เพื่อส่งออกขั้นตอนนี้เป็น JSON ให้ลิงก์ในเอกสารการเริ่มต้นใช้งานและบันทึกเอกสาร"
#: frappe/email/doctype/email_account/email_account.js:126
msgid "To generate password click {0}"
-msgstr ""
+msgstr "เพื่อสร้างรหัสผ่าน คลิก {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
-msgstr ""
+msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}"
#: frappe/email/doctype/email_account/email_account.js:139
msgid "To know more click {0}"
-msgstr ""
+msgstr "เพื่อทราบข้อมูลเพิ่มเติม คลิก {0}"
#. Description of the 'Console' (Code) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "To print output use print(text)"
-msgstr ""
+msgstr "เพื่อพิมพ์ผลลัพธ์ ใช้ print(text)"
#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
-msgstr ""
+msgstr "เพื่อกำหนดบทบาท {0} ในผู้ใช้ {1} โปรดตั้งค่าฟิลด์ {2} เป็น {3} ในระเบียน {4} หนึ่งรายการ"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr ""
+msgstr "เพื่อใช้ Google ปฏิทิน ให้เปิดใช้งาน {0}"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr ""
+msgstr "เพื่อใช้ Google ผู้ติดต่อ ให้เปิดใช้งาน {0}"
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
@@ -26522,7 +26522,7 @@ msgstr ""
#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
-msgstr ""
+msgstr "ถึงเวอร์ชัน"
#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
@@ -26531,119 +26531,119 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr ""
+msgstr "สิ่งที่ต้องทำ"
#: frappe/public/js/frappe/form/controls/date.js:58
#: frappe/public/js/frappe/ui/filters/filter.js:733
#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
-msgstr ""
+msgstr "วันนี้"
#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
-msgstr ""
+msgstr "สลับแผนภูมิ"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Full Width"
-msgstr ""
+msgstr "สลับความกว้างเต็ม"
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr ""
+msgstr "สลับมุมมองตาราง"
#: frappe/public/js/frappe/ui/page.js:201
#: frappe/public/js/frappe/ui/page.js:203
#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "สลับแถบด้านข้าง"
#: frappe/public/js/frappe/list/list_view.js:1819
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "สลับแถบด้านข้าง"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Theme"
-msgstr ""
+msgstr "สลับธีม"
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr ""
+msgstr "โทเค็น"
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
-msgstr ""
+msgstr "แคชโทเค็น"
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
-msgstr ""
+msgstr "ประเภทโทเค็น"
#. Label of the token_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
-msgstr ""
+msgstr "URI โทเค็น"
#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr ""
+msgstr "โทเค็นหายไป"
#: frappe/public/js/frappe/ui/filters/filter.js:739
msgid "Tomorrow"
-msgstr ""
+msgstr "พรุ่งนี้"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
#: frappe/model/workflow.py:254
msgid "Too Many Documents"
-msgstr ""
+msgstr "เอกสารมากเกินไป"
#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr ""
+msgstr "คำขอมากเกินไป"
#: frappe/database/database.py:474
msgid "Too many changes to database in single action."
-msgstr ""
+msgstr "การเปลี่ยนแปลงฐานข้อมูลมากเกินไปในหนึ่งการกระทำ"
#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
-msgstr ""
+msgstr "งานพื้นหลังที่คิวมากเกินไป ({0}) โปรดลองอีกครั้งหลังจากสักครู่"
#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
-msgstr ""
+msgstr "ผู้ใช้จำนวนมากลงทะเบียนเมื่อเร็ว ๆ นี้ ดังนั้นการลงทะเบียนจึงถูกปิดใช้งาน โปรดลองอีกครั้งในหนึ่งชั่วโมง"
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
-msgstr ""
+msgstr "เครื่องมือ"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr ""
+msgstr "บนสุด"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
-msgstr ""
+msgstr "10 อันดับแรก"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr ""
+msgstr "รายการแถบบน"
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr ""
+msgstr "รายการแถบบน"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26651,18 +26651,18 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
-msgstr ""
+msgstr "ศูนย์กลางบนสุด"
#. Label of the top_errors (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Top Errors"
-msgstr ""
+msgstr "ข้อผิดพลาดสูงสุด"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
-msgstr ""
+msgstr "ซ้ายบน"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26670,45 +26670,45 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
-msgstr ""
+msgstr "ขวาบน"
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr ""
+msgstr "หัวข้อ"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
-msgstr ""
+msgstr "รวม"
#. Label of the total_background_workers (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Background Workers"
-msgstr ""
+msgstr "รวมผู้ปฏิบัติงานพื้นหลัง"
#. Label of the total_errors (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Errors (last 1 day)"
-msgstr ""
+msgstr "รวมข้อผิดพลาด (1 วันที่ผ่านมา)"
#: frappe/public/js/frappe/ui/capture.js:259
msgid "Total Images"
-msgstr ""
+msgstr "รวมภาพ"
#. Label of the total_outgoing_emails (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Outgoing Emails"
-msgstr ""
+msgstr "รวมอีเมลขาออก"
#. Label of the total_recipients (Int) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Recipients"
-msgstr ""
+msgstr "รวมผู้รับ"
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
@@ -26716,22 +26716,22 @@ msgstr ""
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
-msgstr ""
+msgstr "รวมผู้สมัครสมาชิก"
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Users"
-msgstr ""
+msgstr "รวมผู้ใช้"
#. Label of the total_views (Int) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Views"
-msgstr ""
+msgstr "รวมการดู"
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
-msgstr ""
+msgstr "รวมเวลาทำงาน"
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
@@ -26741,15 +26741,15 @@ msgstr ""
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
msgid "Total:"
-msgstr ""
+msgstr "รวม:"
#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
-msgstr ""
+msgstr "รวมทั้งหมด"
#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
-msgstr ""
+msgstr "แถวรวม"
#. Label of the trace_id (Data) field in DocType 'Error Log'
#: frappe/core/doctype/error_log/error_log.json
@@ -26806,7 +26806,7 @@ msgstr ""
#. Description of a DocType
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Track milestones for any document"
-msgstr ""
+msgstr "ติดตามเหตุการณ์สำคัญสำหรับเอกสารใด ๆ"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
@@ -26815,41 +26815,41 @@ msgstr ""
#: frappe/public/js/frappe/utils/utils.js:1781
msgid "Tracking URL generated and copied to clipboard"
-msgstr ""
+msgstr "URL การติดตามถูกสร้างและคัดลอกไปยังคลิปบอร์ด"
#. Label of the transaction_hash (Small Text) field in DocType 'Transaction
#. Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Hash"
-msgstr ""
+msgstr "แฮชธุรกรรม"
#. Name of a DocType
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Log"
-msgstr ""
+msgstr "บันทึกธุรกรรม"
#. Name of a report
#: frappe/core/report/transaction_log_report/transaction_log_report.json
msgid "Transaction Log Report"
-msgstr ""
+msgstr "รายงานบันทึกธุรกรรม"
#: frappe/desk/page/setup_wizard/install_fixtures.py:31
msgid "Transgender"
-msgstr ""
+msgstr "คนข้ามเพศ"
#: frappe/public/js/workflow_builder/components/Properties.vue:19
msgid "Transition Properties"
-msgstr ""
+msgstr "คุณสมบัติการเปลี่ยนผ่าน"
#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr ""
+msgstr "กฎการเปลี่ยนผ่าน"
#. Label of the transitions (Table) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr ""
+msgstr "การเปลี่ยนผ่าน"
#. Label of the translatable (Check) field in DocType 'DocField'
#. Label of the translatable (Check) field in DocType 'Custom Field'
@@ -26858,40 +26858,40 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr ""
+msgstr "สามารถแปลได้"
#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
-msgstr ""
+msgstr "แปลข้อมูล"
#. Label of the translated_doctype (Check) field in DocType 'DocType'
#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
-msgstr ""
+msgstr "แปลฟิลด์ลิงก์"
#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
-msgstr ""
+msgstr "แปลค่า"
#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
-msgstr ""
+msgstr "แปล {0}"
#. Label of the translated_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr ""
+msgstr "ข้อความที่แปลแล้ว"
#. Name of a DocType
#: frappe/core/doctype/translation/translation.json
msgid "Translation"
-msgstr ""
+msgstr "การแปล"
#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
-msgstr ""
+msgstr "การแปล"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -27116,33 +27116,33 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
-msgstr ""
+msgstr "URL ของหน้า"
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
-msgstr ""
+msgstr "URL ที่จะไปเมื่อคลิกที่ภาพสไลด์โชว์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
-msgstr ""
+msgstr "แคมเปญ UTM"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
-msgstr ""
+msgstr "สื่อ UTM"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
#: frappe/website/workspace/website/website.json
msgid "UTM Source"
-msgstr ""
+msgstr "แหล่งที่มา UTM"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -27151,75 +27151,75 @@ msgstr ""
#: frappe/desk/form/document_follow.py:79
msgid "Un-following document {0}"
-msgstr ""
+msgstr "เลิกติดตามเอกสาร {0}"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67
msgid "Unable to find DocType {0}"
-msgstr ""
+msgstr "ไม่สามารถหา DocType {0} ได้"
#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
-msgstr ""
+msgstr "ไม่สามารถโหลดกล้องได้"
#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
-msgstr ""
+msgstr "ไม่สามารถโหลด: {0}"
#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
-msgstr ""
+msgstr "ไม่สามารถเปิดไฟล์ที่แนบมาได้ คุณได้ส่งออกเป็น CSV หรือไม่?"
#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
-msgstr ""
+msgstr "ไม่สามารถอ่านรูปแบบไฟล์สำหรับ {0}"
#: frappe/core/doctype/communication/email.py:179
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
-msgstr ""
+msgstr "ไม่สามารถส่งอีเมลได้เนื่องจากไม่มีบัญชีอีเมล โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจาก การตั้งค่า > บัญชีอีเมล"
#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
-msgstr ""
+msgstr "ไม่สามารถอัปเดตกิจกรรมได้"
#: frappe/core/doctype/file/file.py:464
msgid "Unable to write file format for {0}"
-msgstr ""
+msgstr "ไม่สามารถเขียนรูปแบบไฟล์สำหรับ {0}"
#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr ""
+msgstr "ยกเลิกการกำหนดเงื่อนไข"
#: frappe/app.py:376
msgid "Uncaught Exception"
-msgstr ""
+msgstr "ข้อยกเว้นที่ไม่ได้จับ"
#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
-msgstr ""
+msgstr "ไม่เปลี่ยนแปลง"
#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Undo"
-msgstr ""
+msgstr "เลิกทำ"
#: frappe/public/js/frappe/form/toolbar.js:523
msgid "Undo last action"
-msgstr ""
+msgstr "เลิกทำการกระทำล่าสุด"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
-msgstr ""
+msgstr "เลิกติดตาม"
#. Name of a DocType
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Unhandled Email"
-msgstr ""
+msgstr "อีเมลที่ไม่ได้จัดการ"
#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Unhandled Emails"
-msgstr ""
+msgstr "อีเมลที่ไม่ได้จัดการ"
#. Label of the unique (Check) field in DocType 'DocField'
#. Label of the unique (Check) field in DocType 'Custom Field'
@@ -27228,76 +27228,76 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr ""
+msgstr "ไม่ซ้ำ"
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
-msgstr ""
+msgstr "ไม่ทราบ"
#: frappe/public/js/frappe/model/model.js:209
msgid "Unknown Column: {0}"
-msgstr ""
+msgstr "คอลัมน์ที่ไม่ทราบ: {0}"
#: frappe/utils/data.py:1246
msgid "Unknown Rounding Method: {}"
-msgstr ""
+msgstr "วิธีการปัดเศษที่ไม่ทราบ: {}"
#: frappe/auth.py:316
msgid "Unknown User"
-msgstr ""
+msgstr "ผู้ใช้ที่ไม่ทราบ"
#: frappe/utils/csvutils.py:54
msgid "Unknown file encoding. Tried to use: {0}"
-msgstr ""
+msgstr "การเข้ารหัสไฟล์ที่ไม่ทราบ พยายามใช้: {0}"
#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
-msgstr ""
+msgstr "ปลดล็อกเอกสารอ้างอิง"
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
#: frappe/website/doctype/blog_post/blog_post.js:36
#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
-msgstr ""
+msgstr "ยกเลิกการเผยแพร่"
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Unread"
-msgstr ""
+msgstr "ยังไม่ได้อ่าน"
#. Label of the unread_notification_sent (Check) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr ""
+msgstr "การแจ้งเตือนที่ยังไม่ได้อ่านถูกส่งแล้ว"
#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
-msgstr ""
+msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย"
#: frappe/public/js/frappe/data_import/data_exporter.js:159
#: frappe/public/js/frappe/form/controls/multicheck.js:166
msgid "Unselect All"
-msgstr ""
+msgstr "ยกเลิกการเลือกทั้งหมด"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr ""
+msgstr "ไม่ได้แชร์"
#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
msgid "Unsubscribe"
-msgstr ""
+msgstr "ยกเลิกการสมัครสมาชิก"
#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr ""
+msgstr "วิธียกเลิกการสมัครสมาชิก"
#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Params"
-msgstr ""
+msgstr "พารามิเตอร์ยกเลิกการสมัครสมาชิก"
#. Label of the unsubscribed (Check) field in DocType 'Contact'
#. Label of the unsubscribed (Check) field in DocType 'User'
@@ -27307,27 +27307,27 @@ msgstr ""
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/queue.py:122
msgid "Unsubscribed"
-msgstr ""
+msgstr "ยกเลิกการสมัครสมาชิกแล้ว"
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
-msgstr ""
+msgstr "คอลัมน์ที่ไม่มีชื่อ"
#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
-msgstr ""
+msgstr "แตกไฟล์ซิป"
#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
-msgstr ""
+msgstr "แตกไฟล์ {0} แล้ว"
#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
-msgstr ""
+msgstr "กำลังแตกไฟล์..."
#: frappe/desk/doctype/event/event.py:269
msgid "Upcoming Events for Today"
-msgstr ""
+msgstr "กิจกรรมที่กำลังจะมาถึงสำหรับวันนี้"
#. Label of the update (Button) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/data_import/data_import_list.js:36
@@ -27341,73 +27341,73 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
#: frappe/public/js/frappe/form/grid_row.js:411
msgid "Update"
-msgstr ""
+msgstr "อัปเดต"
#. Label of the update_amendment_naming (Button) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
-msgstr ""
+msgstr "อัปเดตการตั้งชื่อการแก้ไข"
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Update Existing Records"
-msgstr ""
+msgstr "อัปเดตระเบียนที่มีอยู่"
#. Label of the update_field (Select) field in DocType 'Workflow Document
#. State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Field"
-msgstr ""
+msgstr "อัปเดตฟิลด์"
#: frappe/core/doctype/installed_applications/installed_applications.js:6
#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
-msgstr ""
+msgstr "อัปเดตลำดับการแก้ไข Hooks"
#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
-msgstr ""
+msgstr "อัปเดตคำสั่งซื้อ"
#: frappe/desk/page/setup_wizard/setup_wizard.js:494
msgid "Update Password"
-msgstr ""
+msgstr "อัปเดตรหัสผ่าน"
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
-msgstr ""
+msgstr "อัปเดตตัวนับซีรีส์"
#. Label of the update_series_start (Button) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr ""
+msgstr "อัปเดตหมายเลขซีรีส์"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr ""
+msgstr "อัปเดตการตั้งค่า"
#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
-msgstr ""
+msgstr "อัปเดตการแปล"
#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
#. Label of the update_value (Data) field in DocType 'Workflow Document State'
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr ""
+msgstr "อัปเดตค่า"
#: frappe/utils/change_log.py:381
msgid "Update from Frappe Cloud"
-msgstr ""
+msgstr "อัปเดตจาก Frappe Cloud"
#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
-msgstr ""
+msgstr "อัปเดตระเบียน {0}"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
@@ -27417,93 +27417,93 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
#: frappe/public/js/frappe/web_form/web_form.js:427
msgid "Updated"
-msgstr ""
+msgstr "อัปเดตแล้ว"
#: frappe/desk/doctype/bulk_update/bulk_update.js:32
msgid "Updated Successfully"
-msgstr ""
+msgstr "อัปเดตสำเร็จ"
#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
-msgstr ""
+msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉"
#: frappe/public/js/frappe/list/bulk_operations.js:372
msgid "Updated successfully"
-msgstr ""
+msgstr "อัปเดตสำเร็จ"
#: frappe/utils/response.py:330
msgid "Updating"
-msgstr ""
+msgstr "กำลังอัปเดต"
#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
-msgstr ""
+msgstr "กำลังอัปเดต"
#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
-msgstr ""
+msgstr "กำลังอัปเดตสถานะคิวอีเมล อีเมลจะถูกดึงขึ้นในรอบที่กำหนดถัดไป"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
-msgstr ""
+msgstr "การอัปเดตตัวนับอาจนำไปสู่ความขัดแย้งของชื่อเอกสารหากไม่ได้ทำอย่างถูกต้อง"
#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
-msgstr ""
+msgstr "กำลังอัปเดตการตั้งค่าทั่วโลก"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
-msgstr ""
+msgstr "กำลังอัปเดตตัวเลือกซีรีส์การตั้งชื่อ"
#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
-msgstr ""
+msgstr "กำลังอัปเดตฟิลด์ที่เกี่ยวข้อง..."
#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
-msgstr ""
+msgstr "กำลังอัปเดต {0}"
#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
-msgstr ""
+msgstr "กำลังอัปเดต {0} ของ {1}, {2}"
#: frappe/public/js/billing.bundle.js:131
msgid "Upgrade plan"
-msgstr ""
+msgstr "อัปเกรดแผน"
#: frappe/public/js/frappe/list/list_sidebar.js:331
msgid "Upgrade your support experience with Frappe Helpdesk"
-msgstr ""
+msgstr "อัปเกรดประสบการณ์การสนับสนุนของคุณด้วย Frappe Helpdesk"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
-msgstr ""
+msgstr "อัปโหลด"
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
msgid "Upload Image"
-msgstr ""
+msgstr "อัปโหลดภาพ"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198
msgid "Upload file"
-msgstr ""
+msgstr "อัปโหลดไฟล์"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201
msgid "Upload {0} files"
-msgstr ""
+msgstr "อัปโหลดไฟล์ {0}"
#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr ""
+msgstr "อัปโหลดไปยัง Dropbox"
#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr ""
+msgstr "อัปโหลดไปยัง Google Drive"
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
@@ -27515,41 +27515,41 @@ msgstr ""
#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr ""
+msgstr "ใช้การเข้ารหัส ASCII สำหรับรหัสผ่าน"
#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Use First Day of Period"
-msgstr ""
+msgstr "ใช้วันแรกของช่วงเวลา"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
-msgstr ""
+msgstr "ใช้ HTML"
#. Label of the use_imap (Check) field in DocType 'Email Account'
#. Label of the use_imap (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr ""
+msgstr "ใช้ IMAP"
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Use Number Format from Currency"
-msgstr ""
+msgstr "ใช้รูปแบบตัวเลขจากสกุลเงิน"
#. Label of the use_post (Check) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr ""
+msgstr "ใช้ POST"
#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr ""
+msgstr "ใช้แผนภูมิรายงาน"
#. Label of the use_ssl (Check) field in DocType 'Email Account'
#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
@@ -27558,63 +27558,63 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr ""
+msgstr "ใช้ SSL"
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
-msgstr ""
+msgstr "ใช้ STARTTLS"
#. Label of the use_tls (Check) field in DocType 'Email Account'
#. Label of the use_tls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr ""
+msgstr "ใช้ TLS"
#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
-msgstr ""
+msgstr "ใช้คำไม่กี่คำ หลีกเลี่ยงวลีทั่วไป"
#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
-msgstr ""
+msgstr "ใช้รหัสอีเมลที่แตกต่าง"
#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Use if the default settings don't seem to detect your data correctly"
-msgstr ""
+msgstr "ใช้หากการตั้งค่าเริ่มต้นดูเหมือนจะไม่ตรวจจับข้อมูลของคุณอย่างถูกต้อง"
#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
-msgstr ""
+msgstr "การใช้ฟังก์ชัน {0} ในฟิลด์ถูกจำกัด"
#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
-msgstr ""
+msgstr "การใช้คำสั่งย่อยหรือฟังก์ชันถูกจำกัด"
#: frappe/printing/page/print/print.js:279
msgid "Use the new Print Format Builder"
-msgstr ""
+msgstr "ใช้ตัวสร้างรูปแบบการพิมพ์ใหม่"
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr ""
+msgstr "ใช้ชื่อนี้เพื่อสร้างชื่อเรื่อง"
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use this, for example, if all sent emails should also be send to an archive."
-msgstr ""
+msgstr "ใช้สิ่งนี้ ตัวอย่างเช่น หากอีเมลที่ส่งทั้งหมดควรถูกส่งไปยังที่เก็บถาวรด้วย"
#. Label of the used_oauth (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
-msgstr ""
+msgstr "ใช้ OAuth แล้ว"
#. Label of the user (Link) field in DocType 'Assignment Rule User'
#. Label of the user (Link) field in DocType 'Reminder'
@@ -27673,7 +27673,7 @@ msgstr ""
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
-msgstr ""
+msgstr "ผู้ใช้"
#. Label of the user (Link) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -27682,7 +27682,7 @@ msgstr ""
#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
-msgstr ""
+msgstr "ผู้ใช้ '{0}' มีบทบาท '{1}' อยู่แล้ว"
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report.json
@@ -27697,120 +27697,120 @@ msgstr ""
#. Label of the user_agent (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr ""
+msgstr "ตัวแทนผู้ใช้"
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr ""
+msgstr "ผู้ใช้ไม่สามารถสร้างได้"
#. Label of the read_only (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr ""
+msgstr "ผู้ใช้ไม่สามารถค้นหาได้"
#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
-msgstr ""
+msgstr "ผู้ใช้เปลี่ยนแปลง"
#. Label of the defaults (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr ""
+msgstr "ค่าเริ่มต้นของผู้ใช้"
#. Label of the user_details_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Details"
-msgstr ""
+msgstr "รายละเอียดผู้ใช้"
#. Name of a report
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
msgid "User Doctype Permissions"
-msgstr ""
+msgstr "สิทธิ์ประเภทเอกสารของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
-msgstr ""
+msgstr "ประเภทเอกสารของผู้ใช้"
#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
-msgstr ""
+msgstr "เกินขีดจำกัดประเภทเอกสารของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
-msgstr ""
+msgstr "อีเมลผู้ใช้"
#. Label of the user_emails (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr ""
+msgstr "อีเมลผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
-msgstr ""
+msgstr "กลุ่มผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
-msgstr ""
+msgstr "สมาชิกกลุ่มผู้ใช้"
#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
#. Group'
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
-msgstr ""
+msgstr "สมาชิกกลุ่มผู้ใช้"
#. Label of the userid (Data) field in DocType 'User Social Login'
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr ""
+msgstr "รหัสผู้ใช้"
#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr ""
+msgstr "คุณสมบัติรหัสผู้ใช้"
#. Description of a DocType
#: frappe/website/doctype/blogger/blogger.json
msgid "User ID of a Blogger"
-msgstr ""
+msgstr "รหัสผู้ใช้ของบล็อกเกอร์"
#. Label of the user (Link) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr ""
+msgstr "รหัสผู้ใช้"
#. Label of the user_id_field (Select) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
-msgstr ""
+msgstr "ฟิลด์รหัสผู้ใช้"
#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
-msgstr ""
+msgstr "ฟิลด์รหัสผู้ใช้เป็นสิ่งจำเป็นในประเภทผู้ใช้ {0}"
#. Label of the user_image (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr ""
+msgstr "ภาพผู้ใช้"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
msgid "User Menu"
-msgstr ""
+msgstr "เมนูผู้ใช้"
#. Label of the user_name (Data) field in DocType 'Personal Data Download
#. Request'
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr ""
+msgstr "ชื่อผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
@@ -27818,51 +27818,51 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:1883
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้"
#: frappe/public/js/frappe/list/list_view.js:1777
msgctxt "Button in list view menu"
msgid "User Permissions"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้"
#: frappe/core/page/permission_manager/permission_manager_help.html:32
msgid "User Permissions are used to limit users to specific records."
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้ใช้เพื่อจำกัดผู้ใช้ให้เข้าถึงระเบียนเฉพาะ"
#: frappe/core/doctype/user_permission/user_permission_list.js:124
msgid "User Permissions created successfully"
-msgstr ""
+msgstr "สร้างสิทธิ์ของผู้ใช้สำเร็จ"
#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
-msgstr ""
+msgstr "บทบาทของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_role_profile/user_role_profile.json
msgid "User Role Profile"
-msgstr ""
+msgstr "โปรไฟล์บทบาทของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
-msgstr ""
+msgstr "ผู้ใช้เลือกประเภทเอกสาร"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "User Settings"
-msgstr ""
+msgstr "การตั้งค่าผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User Social Login"
-msgstr ""
+msgstr "การเข้าสู่ระบบโซเชียลของผู้ใช้"
#. Label of the _user_tags (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr ""
+msgstr "แท็กผู้ใช้"
#. Label of the user_type (Link) field in DocType 'User'
#. Name of a DocType
@@ -27870,106 +27870,106 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User Type"
-msgstr ""
+msgstr "ประเภทผู้ใช้"
#. Label of the user_type_modules (Table) field in DocType 'User Type'
#. Name of a DocType
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type_module/user_type_module.json
msgid "User Type Module"
-msgstr ""
+msgstr "โมดูลประเภทผู้ใช้"
#. Description of the 'Allow Login using Mobile Number' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr ""
+msgstr "ผู้ใช้สามารถเข้าสู่ระบบโดยใช้รหัสอีเมลหรือหมายเลขโทรศัพท์มือถือ"
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr ""
+msgstr "ผู้ใช้สามารถเข้าสู่ระบบโดยใช้รหัสอีเมลหรือชื่อผู้ใช้"
#: frappe/templates/includes/login/login.js:292
msgid "User does not exist."
-msgstr ""
+msgstr "ผู้ใช้ไม่มีอยู่"
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
-msgstr ""
+msgstr "ผู้ใช้ไม่มีสิทธิ์สร้าง {0} ใหม่"
#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
-msgstr ""
+msgstr "ผู้ใช้เป็นสิ่งจำเป็นสำหรับการแชร์"
#. Label of the user_must_always_select (Check) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr ""
+msgstr "ผู้ใช้ต้องเลือกเสมอ"
#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้มีอยู่แล้ว"
#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
-msgstr ""
+msgstr "ผู้ใช้ที่มีที่อยู่อีเมล {0} ไม่มีอยู่"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
-msgstr ""
+msgstr "ผู้ใช้ที่มีอีเมล: {0} ไม่มีอยู่ในระบบ โปรดขอให้ 'ผู้ดูแลระบบ' สร้างผู้ใช้ให้คุณ"
#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
-msgstr ""
+msgstr "ไม่สามารถลบผู้ใช้ {0} ได้"
#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
-msgstr ""
+msgstr "ไม่สามารถปิดใช้งานผู้ใช้ {0} ได้"
#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนชื่อผู้ใช้ {0} ได้"
#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงเอกสารนี้"
#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงประเภทเอกสารผ่านสิทธิ์บทบาทสำหรับเอกสาร {1}"
#: frappe/desk/doctype/workspace/workspace.py:275
msgid "User {0} does not have the permission to create a Workspace."
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์สร้างพื้นที่ทำงาน"
#: frappe/templates/emails/data_deletion_approval.html:1
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
-msgstr ""
+msgstr "ผู้ใช้ {0} ได้ร้องขอการลบข้อมูล"
#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
-msgstr ""
+msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}"
#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
-msgstr ""
+msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน"
#: frappe/sessions.py:242
msgid "User {0} is disabled. Please contact your System Manager."
-msgstr ""
+msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน โปรดติดต่อผู้จัดการระบบของคุณ"
#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่ได้รับอนุญาตให้เข้าถึงเอกสารนี้"
#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
-msgstr ""
+msgstr "URI ข้อมูลผู้ใช้"
#. Label of the username (Data) field in DocType 'User'
#. Label of the username (Data) field in DocType 'User Social Login'
@@ -27977,11 +27977,11 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/www/login.py:110
msgid "Username"
-msgstr ""
+msgstr "ชื่อผู้ใช้"
#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
-msgstr ""
+msgstr "ชื่อผู้ใช้ {0} มีอยู่แล้ว"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
@@ -27992,7 +27992,7 @@ msgstr ""
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
-msgstr ""
+msgstr "ผู้ใช้"
#. Description of the 'Protect Attached Files' (Check) field in DocType
#. 'DocType'
@@ -28001,25 +28001,25 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
-msgstr ""
+msgstr "ผู้ใช้สามารถลบไฟล์ที่แนบมาได้เฉพาะเมื่อเอกสารอยู่ในร่างหรือถูกยกเลิก และพวกเขายังสามารถลบเอกสารได้"
#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr ""
+msgstr "ผู้ใช้ที่มีบทบาท {0}:"
#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
-msgstr ""
+msgstr "ใช้ธีมของระบบเพื่อสลับระหว่างโหมดสว่างและมืด"
#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
-msgstr ""
+msgstr "การใช้คอนโซลนี้อาจทำให้ผู้โจมตีปลอมตัวเป็นคุณและขโมยข้อมูลของคุณได้ อย่าป้อนหรือวางโค้ดที่คุณไม่เข้าใจ"
#. Label of the utilization (Percent) field in DocType 'System Health Report
#. Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Utilization"
-msgstr ""
+msgstr "การใช้งาน"
#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -28030,27 +28030,27 @@ msgstr ""
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr ""
+msgstr "ถูกต้อง"
#: frappe/templates/includes/login/login.js:52
#: frappe/templates/includes/login/login.js:65
msgid "Valid Login id required."
-msgstr ""
+msgstr "ต้องการรหัสเข้าสู่ระบบที่ถูกต้อง"
#: frappe/templates/includes/login/login.js:39
msgid "Valid email and name required"
-msgstr ""
+msgstr "ต้องการอีเมลและชื่อที่ถูกต้อง"
#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr ""
+msgstr "ตรวจสอบฟิลด์"
#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Validate Frappe Mail Settings"
-msgstr ""
+msgstr "ตรวจสอบการตั้งค่าอีเมล Frappe"
#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
#. Account'
@@ -28061,16 +28061,16 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Validate SSL Certificate"
-msgstr ""
+msgstr "ตรวจสอบใบรับรอง SSL"
#: frappe/public/js/frappe/web_form/web_form.js:360
msgid "Validation Error"
-msgstr ""
+msgstr "ข้อผิดพลาดในการตรวจสอบ"
#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr ""
+msgstr "ความถูกต้อง"
#. Label of the value (Data) field in DocType 'Milestone'
#. Label of the defvalue (Text) field in DocType 'DefaultValue'
@@ -28097,87 +28097,87 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.js:197
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
-msgstr ""
+msgstr "ค่า"
#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Value Based On"
-msgstr ""
+msgstr "ค่าตาม"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Change"
-msgstr ""
+msgstr "การเปลี่ยนแปลงค่า"
#. Label of the value_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr ""
+msgstr "ค่าที่เปลี่ยนแปลง"
#. Label of the property_value (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr ""
+msgstr "ค่าที่จะตั้ง"
#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
-msgstr ""
+msgstr "ค่าไม่สามารถเปลี่ยนแปลงได้สำหรับ {0}"
#: frappe/model/document.py:779
msgid "Value cannot be negative for"
-msgstr ""
+msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ"
#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
-msgstr ""
+msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ {0}: {1}"
#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
-msgstr ""
+msgstr "ค่าของฟิลด์ตรวจสอบสามารถเป็น 0 หรือ 1"
#: frappe/custom/doctype/customize_form/customize_form.py:611
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
-msgstr ""
+msgstr "ค่าของฟิลด์ {0} ยาวเกินไปใน {1} ความยาวควรน้อยกว่า {2} ตัวอักษร"
#: frappe/model/base_document.py:445
msgid "Value for {0} cannot be a list"
-msgstr ""
+msgstr "ค่าของ {0} ไม่สามารถเป็นรายการได้"
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr ""
+msgstr "ค่าจากฟิลด์นี้จะถูกตั้งเป็นวันที่ครบกำหนดใน ToDo"
#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
-msgstr ""
+msgstr "ค่าต้องเป็นหนึ่งใน {0}"
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
-msgstr ""
+msgstr "ค่าที่จะตรวจสอบ"
#: frappe/model/base_document.py:1124
msgid "Value too big"
-msgstr ""
+msgstr "ค่ามากเกินไป"
#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
-msgstr ""
+msgstr "ค่า {0} หายไปสำหรับ {1}"
#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
msgid "Value {0} must be in the valid duration format: d h m s"
-msgstr ""
+msgstr "ค่า {0} ต้องอยู่ในรูปแบบระยะเวลาที่ถูกต้อง: d h m s"
#: frappe/core/doctype/data_import/importer.py:745
#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
-msgstr ""
+msgstr "ค่า {0} ต้องอยู่ในรูปแบบ {1}"
#: frappe/core/doctype/version/version_view.html:8
msgid "Values Changed"
-msgstr ""
+msgstr "ค่าที่เปลี่ยนแปลง"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -28186,114 +28186,114 @@ msgstr ""
#: frappe/templates/includes/login/login.js:333
msgid "Verification"
-msgstr ""
+msgstr "การตรวจสอบ"
#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352
msgid "Verification Code"
-msgstr ""
+msgstr "รหัสการตรวจสอบ"
#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
-msgstr ""
+msgstr "ลิงก์การตรวจสอบ"
#: frappe/templates/includes/login/login.js:383
msgid "Verification code email not sent. Please contact Administrator."
-msgstr ""
+msgstr "อีเมลรหัสการตรวจสอบไม่ได้ส่ง โปรดติดต่อผู้ดูแลระบบ"
#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
-msgstr ""
+msgstr "รหัสการตรวจสอบถูกส่งไปยังที่อยู่อีเมลที่ลงทะเบียนของคุณแล้ว"
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr ""
+msgstr "ตรวจสอบแล้ว"
#: frappe/public/js/frappe/ui/messages.js:359
#: frappe/templates/includes/login/login.js:337
msgid "Verify"
-msgstr ""
+msgstr "ตรวจสอบ"
#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
-msgstr ""
+msgstr "ตรวจสอบรหัสผ่าน"
#: frappe/templates/includes/login/login.js:171
msgid "Verifying..."
-msgstr ""
+msgstr "กำลังตรวจสอบ..."
#. Name of a DocType
#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr ""
+msgstr "เวอร์ชัน"
#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
-msgstr ""
+msgstr "อัปเดตเวอร์ชันแล้ว"
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr ""
+msgstr "URL วิดีโอ"
#. Label of the view_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "View"
-msgstr ""
+msgstr "ดู"
#: frappe/core/doctype/success_action/success_action.js:60
#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
-msgstr ""
+msgstr "ดูทั้งหมด"
#: frappe/public/js/frappe/form/toolbar.js:577
msgid "View Audit Trail"
-msgstr ""
+msgstr "ดูเส้นทางการตรวจสอบ"
#: frappe/templates/includes/likes/likes.py:34
msgid "View Blog Post"
-msgstr ""
+msgstr "ดูโพสต์บล็อก"
#: frappe/templates/includes/comments/comments.py:56
msgid "View Comment"
-msgstr ""
+msgstr "ดูความคิดเห็น"
#: frappe/core/doctype/user/user.js:151
msgid "View Doctype Permissions"
-msgstr ""
+msgstr "ดูสิทธิ์ประเภทเอกสาร"
#: frappe/core/doctype/file/file.js:4
msgid "View File"
-msgstr ""
+msgstr "ดูไฟล์"
#: frappe/public/js/frappe/ui/notifications/notifications.js:220
msgid "View Full Log"
-msgstr ""
+msgstr "ดูบันทึกทั้งหมด"
#: frappe/public/js/frappe/views/treeview.js:484
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
-msgstr ""
+msgstr "ดูรายการ"
#. Name of a DocType
#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
-msgstr ""
+msgstr "ดูบันทึก"
#: frappe/core/doctype/user/user.js:142
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
-msgstr ""
+msgstr "ดูเอกสารที่อนุญาต"
#. Label of the view_properties (Button) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr ""
+msgstr "ดูคุณสมบัติ (ผ่านการปรับแต่งฟอร์ม)"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr ""
+msgstr "ดูรายงาน"
#. Label of the view_settings (Section Break) field in DocType 'DocType'
#. Label of the view_settings_section (Section Break) field in DocType
@@ -28301,158 +28301,158 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr ""
+msgstr "ดูการตั้งค่า"
#. Label of the view_switcher (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "View Switcher"
-msgstr ""
+msgstr "ดูตัวสลับ"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
-msgstr ""
+msgstr "ดูเว็บไซต์"
#: frappe/www/confirm_workflow_action.html:12
msgid "View document"
-msgstr ""
+msgstr "ดูเอกสาร"
#: frappe/templates/emails/auto_email_report.html:60
msgid "View report in your browser"
-msgstr ""
+msgstr "ดูรายงานในเบราว์เซอร์ของคุณ"
#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
-msgstr ""
+msgstr "ดูสิ่งนี้ในเบราว์เซอร์ของคุณ"
#: frappe/public/js/frappe/web_form/web_form.js:454
msgctxt "Button in web form"
msgid "View your response"
-msgstr ""
+msgstr "ดูการตอบกลับของคุณ"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
#: frappe/desk/doctype/dashboard/dashboard_list.js:10
msgid "View {0}"
-msgstr ""
+msgstr "ดู {0}"
#. Label of the viewed_by (Data) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr ""
+msgstr "ดูโดย"
#. Group in DocType's connections
#. Label of a Card Break in the Build Workspace
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/workspace/build/build.json
msgid "Views"
-msgstr ""
+msgstr "การดู"
#. Label of the is_virtual (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
-msgstr ""
+msgstr "เสมือน"
#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
-msgstr ""
+msgstr "ประเภทเอกสารเสมือน {} ต้องการเมธอดแบบคงที่ที่เรียกว่า {} พบ {}"
#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
-msgstr ""
+msgstr "ประเภทเอกสารเสมือน {} ต้องการการแทนที่เมธอดอินสแตนซ์ที่เรียกว่า {} พบ {}"
#. Label of the visibility_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
-msgstr ""
+msgstr "การมองเห็น"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41
msgid "Visible to website/portal users."
-msgstr ""
+msgstr "มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัล"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr ""
+msgstr "เยี่ยมชม"
#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
-msgstr ""
+msgstr "เยี่ยมชมหน้าเว็บ"
#. Label of the visitor_id (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
-msgstr ""
+msgstr "รหัสผู้เยี่ยมชม"
#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
-msgstr ""
+msgstr "ต้องการพูดคุยหรือไม่?"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Warehouse"
-msgstr ""
+msgstr "คลังสินค้า"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
-msgstr ""
+msgstr "คำเตือน"
#: frappe/custom/doctype/customize_form/customize_form.js:217
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
-msgstr ""
+msgstr "คำเตือน: ข้อมูลสูญหายใกล้เข้ามา! การดำเนินการจะลบคอลัมน์ฐานข้อมูลต่อไปนี้ออกจากประเภทเอกสาร {0} อย่างถาวร:"
#: frappe/core/doctype/doctype/doctype.py:1125
msgid "Warning: Naming is not set"
-msgstr ""
+msgstr "คำเตือน: ยังไม่ได้ตั้งชื่อ"
#: frappe/public/js/frappe/model/meta.js:182
msgid "Warning: Unable to find {0} in any table related to {1}"
-msgstr ""
+msgstr "คำเตือน: ไม่สามารถหา {0} ในตารางใด ๆ ที่เกี่ยวข้องกับ {1}"
#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
-msgstr ""
+msgstr "คำเตือน: การอัปเดตตัวนับอาจนำไปสู่ความขัดแย้งของชื่อเอกสารหากไม่ได้ทำอย่างถูกต้อง"
#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr ""
+msgstr "บทความนี้มีประโยชน์หรือไม่?"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
msgid "Watch Tutorial"
-msgstr ""
+msgstr "ดูบทแนะนำ"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Watch Video"
-msgstr ""
+msgstr "ดูวิดีโอ"
#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
-msgstr ""
+msgstr "เราไม่อนุญาตให้แก้ไขเอกสารนี้ เพียงคลิกปุ่มแก้ไขในหน้าพื้นที่ทำงานเพื่อทำให้พื้นที่ทำงานของคุณสามารถแก้ไขได้และปรับแต่งตามที่คุณต้องการ"
#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
-msgstr ""
+msgstr "เราได้รับคำขอให้ลบข้อมูล {0} ที่เกี่ยวข้องกับ: {1}"
#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
-msgstr ""
+msgstr "เราได้รับคำขอจากคุณเพื่อดาวน์โหลดข้อมูล {0} ที่เกี่ยวข้องกับ: {1}"
#: frappe/www/attribution.html:12
msgid "We would like to thank the authors of these packages for their contribution."
-msgstr ""
+msgstr "เราขอขอบคุณผู้เขียนแพ็คเกจเหล่านี้สำหรับการมีส่วนร่วมของพวกเขา"
#: frappe/www/contact.py:50
msgid "We've received your query!"
-msgstr ""
+msgstr "เราได้รับคำถามของคุณแล้ว!"
#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
-msgstr ""
+msgstr "อ่อนแอ"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28460,22 +28460,22 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/workspace/website/website.json
msgid "Web Form"
-msgstr ""
+msgstr "ฟอร์มเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
-msgstr ""
+msgstr "ฟิลด์ฟอร์มเว็บ"
#. Label of the web_form_fields (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr ""
+msgstr "ฟิลด์ฟอร์มเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
-msgstr ""
+msgstr "คอลัมน์รายการฟอร์มเว็บ"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28483,21 +28483,21 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json
msgid "Web Page"
-msgstr ""
+msgstr "หน้าเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
-msgstr ""
+msgstr "บล็อกหน้าเว็บ"
#: frappe/public/js/frappe/utils/utils.js:1709
msgid "Web Page URL"
-msgstr ""
+msgstr "URL หน้าเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
-msgstr ""
+msgstr "มุมมองหน้าเว็บ"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
@@ -28509,26 +28509,26 @@ msgstr ""
#: frappe/website/doctype/web_page_block/web_page_block.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Web Template"
-msgstr ""
+msgstr "แม่แบบเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
-msgstr ""
+msgstr "ฟิลด์แม่แบบเว็บ"
#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr ""
+msgstr "ค่าของแม่แบบเว็บ"
#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
-msgstr ""
+msgstr "ไม่ได้ระบุแม่แบบเว็บ"
#. Label of the web_view (Tab Break) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr ""
+msgstr "มุมมองเว็บ"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
@@ -28544,49 +28544,49 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
msgid "Webhook Data"
-msgstr ""
+msgstr "ข้อมูล Webhook"
#. Name of a DocType
#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
-msgstr ""
+msgstr "ส่วนหัว Webhook"
#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr ""
+msgstr "ส่วนหัว Webhook"
#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr ""
+msgstr "คำขอ Webhook"
#. Label of a Link in the Build Workspace
#. Name of a DocType
#: frappe/core/workspace/build/build.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
-msgstr ""
+msgstr "บันทึกคำขอ Webhook"
#. Label of the webhook_secret (Password) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr ""
+msgstr "ความลับ Webhook"
#. Label of the sb_security (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr ""
+msgstr "ความปลอดภัย Webhook"
#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr ""
+msgstr "ทริกเกอร์ Webhook"
#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr ""
+msgstr "URL Webhook"
#. Group in Module Def's connections
#. Name of a Workspace
@@ -28596,14 +28596,14 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr ""
+msgstr "เว็บไซต์"
#. Name of a report
#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
-msgstr ""
+msgstr "การวิเคราะห์เว็บไซต์"
#. Name of a role
#: frappe/core/doctype/comment/comment.json
@@ -28624,47 +28624,47 @@ msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr ""
+msgstr "ผู้จัดการเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
-msgstr ""
+msgstr "แท็กเมตาเว็บไซต์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_route_meta/website_route_meta.json
#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
-msgstr ""
+msgstr "เมตาเส้นทางเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางเว็บไซต์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_script/website_script.json
#: frappe/website/workspace/website/website.json
msgid "Website Script"
-msgstr ""
+msgstr "สคริปต์เว็บไซต์"
#. Label of the website_search_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Website Search Field"
-msgstr ""
+msgstr "ฟิลด์ค้นหาเว็บไซต์"
#: frappe/core/doctype/doctype/doctype.py:1522
msgid "Website Search Field must be a valid fieldname"
-msgstr ""
+msgstr "ฟิลด์ค้นหาเว็บไซต์ต้องเป็นชื่อฟิลด์ที่ถูกต้อง"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr ""
+msgstr "การตั้งค่าเว็บไซต์"
#. Label of the website_sidebar (Link) field in DocType 'Web Form'
#. Label of the website_sidebar (Link) field in DocType 'Web Page'
@@ -28675,24 +28675,24 @@ msgstr ""
#: frappe/website/doctype/website_sidebar/website_sidebar.json
#: frappe/website/workspace/website/website.json
msgid "Website Sidebar"
-msgstr ""
+msgstr "แถบด้านข้างเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
-msgstr ""
+msgstr "รายการแถบด้านข้างเว็บไซต์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
-msgstr ""
+msgstr "สไลด์โชว์เว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
-msgstr ""
+msgstr "รายการสไลด์โชว์เว็บไซต์"
#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
@@ -28701,23 +28701,23 @@ msgstr ""
#: frappe/website/doctype/website_theme/website_theme.json
#: frappe/website/workspace/website/website.json
msgid "Website Theme"
-msgstr ""
+msgstr "ธีมเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
-msgstr ""
+msgstr "ธีมเว็บไซต์ไม่สนใจแอป"
#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr ""
+msgstr "ภาพธีมเว็บไซต์"
#. Label of the website_theme_image_link (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
-msgstr ""
+msgstr "ลิงก์ภาพธีมเว็บไซต์"
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
@@ -28739,16 +28739,16 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Wednesday"
-msgstr ""
+msgstr "วันพุธ"
#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
-msgstr ""
+msgstr "สัปดาห์"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr ""
+msgstr "วันธรรมดา"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -28770,18 +28770,18 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
-msgstr ""
+msgstr "รายสัปดาห์"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr ""
+msgstr "รายสัปดาห์แบบยาว"
#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
-msgstr ""
+msgstr "ยินดีต้อนรับ"
#. Label of the welcome_email_template (Link) field in DocType 'System
#. Settings'
@@ -28789,12 +28789,12 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr ""
+msgstr "แม่แบบอีเมลต้อนรับ"
#. Label of the welcome_url (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
-msgstr ""
+msgstr "URL ต้อนรับ"
#. Name of a Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
@@ -28803,44 +28803,44 @@ msgstr ""
#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
-msgstr ""
+msgstr "ส่งอีเมลต้อนรับแล้ว"
#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
-msgstr ""
+msgstr "ยินดีต้อนรับสู่ {0}"
#: frappe/public/js/frappe/ui/notifications/notifications.js:62
msgid "What's New"
-msgstr ""
+msgstr "มีอะไรใหม่"
#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
-msgstr ""
+msgstr "เมื่อเปิดใช้งาน จะอนุญาตให้ผู้เยี่ยมชมอัปโหลดไฟล์ไปยังแอปพลิเคชันของคุณ คุณสามารถเปิดใช้งานได้หากต้องการรวบรวมไฟล์จากผู้ใช้โดยไม่ต้องให้พวกเขาเข้าสู่ระบบ เช่น ในฟอร์มสมัครงาน"
#. Description of the 'Store Attached PDF Document' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
-msgstr ""
+msgstr "เมื่อส่งเอกสารทางอีเมล ให้เก็บ PDF ไว้ในการสื่อสาร คำเตือน: สิ่งนี้อาจเพิ่มการใช้งานพื้นที่เก็บข้อมูลของคุณ"
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
-msgstr ""
+msgstr "เมื่ออัปโหลดไฟล์ บังคับให้ใช้การจับภาพบนเว็บ หากไม่ได้เลือกสิ่งนี้ พฤติกรรมเริ่มต้นคือการใช้กล้องพื้นฐานของมือถือเมื่อมีการตรวจพบการใช้งานจากมือถือ"
#: frappe/core/page/permission_manager/permission_manager_help.html:18
msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
+msgstr "เมื่อคุณแก้ไขเอกสารหลังจากยกเลิกและบันทึก มันจะได้รับหมายเลขใหม่ที่เป็นเวอร์ชันของหมายเลขเก่า"
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr ""
+msgstr "มุมมองใดของ DocType ที่เกี่ยวข้องที่ทางลัดนี้ควรนำคุณไป?"
#. Label of the width (Data) field in DocType 'DocField'
#. Label of the width (Int) field in DocType 'Report Column'
@@ -28855,7 +28855,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
-msgstr ""
+msgstr "ความกว้าง"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
msgid "Widths can be set in px or %."
@@ -28864,7 +28864,7 @@ msgstr ""
#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr ""
+msgstr "ตัวกรองไวลด์การ์ด"
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
@@ -28875,36 +28875,36 @@ msgstr ""
#. Description of the 'Short Name' (Data) field in DocType 'Blogger'
#: frappe/website/doctype/blogger/blogger.json
msgid "Will be used in url (usually first name)."
-msgstr ""
+msgstr "จะใช้ใน URL (โดยปกติคือชื่อแรก)"
#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
-msgstr ""
+msgstr "จะเป็นรหัสเข้าสู่ระบบของคุณ"
#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
-msgstr ""
+msgstr "จะแสดงเฉพาะเมื่อเปิดใช้งานหัวข้อส่วน"
#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
#. in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
-msgstr ""
+msgstr "จะรันงานตามกำหนดเวลาเพียงครั้งเดียวต่อวันสำหรับไซต์ที่ไม่ได้ใช้งาน ตั้งค่าเป็น 0 เพื่อหลีกเลี่ยงการปิดใช้งานตัวกำหนดเวลาโดยอัตโนมัติ"
#: frappe/public/js/frappe/form/print_utils.js:15
msgid "With Letter head"
-msgstr ""
+msgstr "พร้อมหัวจดหมาย"
#. Label of the worker_information_section (Section Break) field in DocType 'RQ
#. Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Information"
-msgstr ""
+msgstr "ข้อมูลพนักงาน"
#. Label of the worker_name (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
-msgstr ""
+msgstr "ชื่อพนักงาน"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Group in DocType's connections
@@ -28914,42 +28914,42 @@ msgstr ""
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow"
-msgstr ""
+msgstr "เวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
-msgstr ""
+msgstr "การดำเนินการเวิร์กโฟลว์"
#. Name of a DocType
#. Description of a DocType
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
-msgstr ""
+msgstr "มาสเตอร์การดำเนินการเวิร์กโฟลว์"
#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
#. Master'
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr ""
+msgstr "ชื่อการดำเนินการเวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
-msgstr ""
+msgstr "บทบาทที่อนุญาตให้ดำเนินการเวิร์กโฟลว์"
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr ""
+msgstr "ไม่ได้สร้างการดำเนินการเวิร์กโฟลว์สำหรับสถานะที่เลือกได้"
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.js:25
#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
msgid "Workflow Builder"
-msgstr ""
+msgstr "ตัวสร้างเวิร์กโฟลว์"
#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
#. State'
@@ -28958,72 +28958,72 @@ msgstr ""
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
-msgstr ""
+msgstr "รหัสตัวสร้างเวิร์กโฟลว์"
#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
-msgstr ""
+msgstr "ตัวสร้างเวิร์กโฟลว์ช่วยให้คุณสร้างเวิร์กโฟลว์ได้อย่างเห็นภาพ คุณสามารถลากและวางสถานะและเชื่อมโยงเพื่อสร้างการเปลี่ยนผ่าน นอกจากนี้คุณยังสามารถอัปเดตคุณสมบัติของพวกเขาจากแถบด้านข้าง"
#. Label of the workflow_data (JSON) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
-msgstr ""
+msgstr "ข้อมูลเวิร์กโฟลว์"
#: frappe/public/js/workflow_builder/components/Properties.vue:42
msgid "Workflow Details"
-msgstr ""
+msgstr "รายละเอียดเวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
-msgstr ""
+msgstr "สถานะเอกสารเวิร์กโฟลว์"
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr ""
+msgstr "ชื่อเวิร์กโฟลว์"
#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์"
#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr ""
+msgstr "ฟิลด์สถานะเวิร์กโฟลว์"
#: frappe/model/workflow.py:61
msgid "Workflow State not set"
-msgstr ""
+msgstr "ไม่ได้ตั้งค่าสถานะเวิร์กโฟลว์"
#: frappe/model/workflow.py:204 frappe/model/workflow.py:212
msgid "Workflow State transition not allowed from {0} to {1}"
-msgstr ""
+msgstr "ไม่อนุญาตให้เปลี่ยนสถานะเวิร์กโฟลว์จาก {0} เป็น {1}"
#: frappe/workflow/doctype/workflow/workflow.js:140
msgid "Workflow States Don't Exist"
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์ไม่มีอยู่"
#: frappe/model/workflow.py:328
msgid "Workflow Status"
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
-msgstr ""
+msgstr "การเปลี่ยนผ่านเวิร์กโฟลว์"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow state represents the current state of a document."
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์แสดงถึงสถานะปัจจุบันของเอกสาร"
#: frappe/public/js/workflow_builder/store.js:83
msgid "Workflow updated successfully"
-msgstr ""
+msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
@@ -29035,43 +29035,43 @@ msgstr ""
#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
-msgstr ""
+msgstr "พื้นที่ทำงาน"
#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
-msgstr ""
+msgstr "พื้นที่ทำงาน {0} ไม่มีอยู่"
#. Name of a DocType
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
-msgstr ""
+msgstr "แผนภูมิพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
-msgstr ""
+msgstr "บล็อกที่กำหนดเองของพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
-msgstr ""
+msgstr "ลิงก์พื้นที่ทำงาน"
#. Name of a role
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
-msgstr ""
+msgstr "ผู้จัดการพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
-msgstr ""
+msgstr "การ์ดตัวเลขพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
-msgstr ""
+msgstr "รายการด่วนพื้นที่ทำงาน"
#. Label of a standard navbar item
#. Type: Action
@@ -29079,45 +29079,45 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
#: frappe/hooks.py
msgid "Workspace Settings"
-msgstr ""
+msgstr "การตั้งค่าพื้นที่ทำงาน"
#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Setup Completed"
-msgstr ""
+msgstr "การตั้งค่าพื้นที่ทำงานเสร็จสมบูรณ์"
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
-msgstr ""
+msgstr "ทางลัดพื้นที่ทำงาน"
#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Visibility"
-msgstr ""
+msgstr "การมองเห็นพื้นที่ทำงาน"
#: frappe/public/js/frappe/views/workspace/workspace.js:538
msgid "Workspace {0} created"
-msgstr ""
+msgstr "สร้างพื้นที่ทำงาน {0} แล้ว"
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
-msgstr ""
+msgstr "พื้นที่ทำงาน"
#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
-msgstr ""
+msgstr "คุณต้องการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะมองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัล"
#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
-msgstr ""
+msgstr "คุณต้องการยกเลิกการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะไม่มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัลอีกต่อไป"
#: frappe/desk/page/setup_wizard/setup_wizard.py:41
msgid "Wrapping up"
-msgstr ""
+msgstr "กำลังสรุป"
#. Label of the write (Check) field in DocType 'Custom DocPerm'
#. Label of the write (Check) field in DocType 'DocPerm'
@@ -29128,20 +29128,20 @@ msgstr ""
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr ""
+msgstr "เขียน"
#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
-msgstr ""
+msgstr "ค่าที่ดึงมาผิด"
#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
-msgstr ""
+msgstr "ฟิลด์แกน X"
#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr ""
+msgstr "ฟิลด์ X"
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -29151,17 +29151,17 @@ msgstr ""
#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr ""
+msgstr "แกน Y"
#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
-msgstr ""
+msgstr "ฟิลด์แกน Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
-msgstr ""
+msgstr "ฟิลด์ Y"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -29178,7 +29178,7 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/website/doctype/company_history/company_history.json
msgid "Year"
-msgstr ""
+msgstr "ปี"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -29196,14 +29196,14 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/utils/common.js:403
msgid "Yearly"
-msgstr ""
+msgstr "รายปี"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
-msgstr ""
+msgstr "สีเหลือง"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
@@ -29223,130 +29223,130 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
-msgstr ""
+msgstr "ใช่"
#: frappe/public/js/frappe/ui/messages.js:32
msgctxt "Approve confirmation dialog"
msgid "Yes"
-msgstr ""
+msgstr "ใช่"
#: frappe/public/js/frappe/ui/filters/filter.js:545
msgctxt "Checkbox is checked"
msgid "Yes"
-msgstr ""
+msgstr "ใช่"
#: frappe/public/js/frappe/ui/filters/filter.js:727
msgid "Yesterday"
-msgstr ""
+msgstr "เมื่อวาน"
#: frappe/public/js/frappe/utils/user.js:33
msgctxt "Name of the current user. For example: You edited this 5 hours ago."
msgid "You"
-msgstr ""
+msgstr "คุณ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
-msgstr ""
+msgstr "คุณชอบ"
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
-msgstr ""
+msgstr "คุณเชื่อมต่อกับอินเทอร์เน็ตแล้ว"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
msgid "You are impersonating as another user."
-msgstr ""
+msgstr "คุณกำลังปลอมตัวเป็นผู้ใช้อื่น"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
msgid "You are not allowed to access this resource"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้"
#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในฟิลด์ {3}"
#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในแถว {3}, ฟิลด์ {4}"
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้สร้างคอลัมน์"
#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้ลบรายงานมาตรฐาน"
#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้ลบธีมเว็บไซต์มาตรฐาน"
#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้แก้ไขรายงาน"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}"
#: frappe/public/js/frappe/views/treeview.js:448
msgid "You are not allowed to print this report"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้"
#: frappe/public/js/frappe/views/communication.js:781
msgid "You are not allowed to send emails related to this document"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้ส่งอีเมลที่เกี่ยวข้องกับเอกสารนี้"
#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารฟอร์มเว็บนี้"
#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
-msgstr ""
+msgstr "คุณไม่ได้เชื่อมต่อกับอินเทอร์เน็ต โปรดลองอีกครั้งในภายหลัง"
#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้โดยไม่เข้าสู่ระบบ"
#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้"
#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้ โปรดเข้าสู่ระบบเพื่อเข้าถึง"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
-msgstr ""
+msgstr "คุณกำลังติดตามเอกสารนี้ คุณจะได้รับการอัปเดตรายวันทางอีเมล คุณสามารถเปลี่ยนแปลงได้ในการตั้งค่าผู้ใช้"
#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
-msgstr ""
+msgstr "คุณได้รับอนุญาตให้ปรับปรุงคำสั่งซื้อเท่านั้น ห้ามลบหรือเพิ่มแอป"
#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
-msgstr ""
+msgstr "คุณกำลังเลือกตัวเลือกการซิงค์เป็น ALL ซึ่งจะซิงค์ข้อความที่อ่านและยังไม่ได้อ่านทั้งหมดจากเซิร์ฟเวอร์อีกครั้ง ซึ่งอาจทำให้เกิดการซ้ำซ้อนของการสื่อสาร (อีเมล) ได้"
#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
-msgstr ""
+msgstr "คุณแนบ {0}"
#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
-msgstr ""
+msgstr "คุณสามารถเพิ่มคุณสมบัติแบบไดนามิกจากเอกสารโดยใช้ Jinja templating"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
-msgstr ""
+msgstr "คุณยังสามารถเข้าถึงตัวแปร wkhtmltopdf (ใช้ได้เฉพาะในการพิมพ์ PDF):"
#: frappe/templates/emails/new_user.html:22
msgid "You can also copy-paste following link in your browser"
-msgstr ""
+msgstr "คุณยังสามารถคัดลอก-วางลิงก์ต่อไปนี้ในเบราว์เซอร์ของคุณ"
#: frappe/templates/emails/download_data.html:9
msgid "You can also copy-paste this "
@@ -29354,69 +29354,69 @@ msgstr ""
#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
-msgstr ""
+msgstr "คุณยังสามารถคัดลอก-วาง {0} นี้ในเบราว์เซอร์ของคุณ"
#: frappe/core/page/permission_manager/permission_manager_help.html:17
msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
+msgstr "คุณสามารถเปลี่ยนเอกสารที่ส่งแล้วโดยการยกเลิกและแก้ไข"
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
-msgstr ""
+msgstr "คุณสามารถเปลี่ยนนโยบายการเก็บรักษาจาก {0}"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
-msgstr ""
+msgstr "คุณสามารถดำเนินการต่อกับการเริ่มต้นใช้งานหลังจากสำรวจหน้านี้"
#: frappe/model/delete_doc.py:136
msgid "You can disable this {0} instead of deleting it."
-msgstr ""
+msgstr "คุณสามารถปิดใช้งาน {0} นี้แทนการลบได้"
#: frappe/core/doctype/file/file.py:736
msgid "You can increase the limit from System Settings."
-msgstr ""
+msgstr "คุณสามารถเพิ่มขีดจำกัดจากการตั้งค่าระบบ"
#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
-msgstr ""
+msgstr "คุณสามารถลบการล็อกด้วยตนเองหากคุณคิดว่าปลอดภัย: {}"
#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
-msgstr ""
+msgstr "คุณสามารถแทรกรูปภาพในฟิลด์ Markdown เท่านั้น"
#: frappe/public/js/frappe/list/bulk_operations.js:42
msgid "You can only print upto {0} documents at a time"
-msgstr ""
+msgstr "คุณสามารถพิมพ์เอกสารได้สูงสุด {0} ฉบับในครั้งเดียว"
#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
-msgstr ""
+msgstr "คุณสามารถตั้งค่าประเภทเอกสารที่กำหนดเองได้เพียง 3 ประเภทในตารางประเภทเอกสาร"
#: frappe/handler.py:182
msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
-msgstr ""
+msgstr "คุณสามารถอัปโหลดเอกสาร JPG, PNG, PDF, TXT, CSV หรือ Microsoft เท่านั้น"
#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
-msgstr ""
+msgstr "คุณสามารถอัปโหลดระเบียนได้สูงสุด 5000 ระเบียนในครั้งเดียว (อาจน้อยกว่านี้ในบางกรณี)"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "You can select one from the following,"
-msgstr ""
+msgstr "คุณสามารถเลือกหนึ่งจากรายการต่อไปนี้,"
#. Description of the 'Rate limit for email link login' (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "You can set a high value here if multiple users will be logging in from the same network."
-msgstr ""
+msgstr "คุณสามารถตั้งค่าค่าสูงที่นี่หากมีผู้ใช้หลายคนเข้าสู่ระบบจากเครือข่ายเดียวกัน"
#: frappe/desk/query_report.py:343
msgid "You can try changing the filters of your report."
-msgstr ""
+msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ"
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "You can use Customize Form to set levels on fields."
-msgstr ""
+msgstr "คุณสามารถใช้ฟอร์มปรับแต่งเพื่อกำหนดระดับในฟิลด์"
#: frappe/public/js/frappe/form/link_selector.js:30
msgid "You can use wildcard %"
@@ -29424,100 +29424,100 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:389
msgid "You can't set 'Options' for field {0}"
-msgstr ""
+msgstr "คุณไม่สามารถตั้งค่า 'ตัวเลือก' สำหรับฟิลด์ {0} ได้"
#: frappe/custom/doctype/customize_form/customize_form.py:393
msgid "You can't set 'Translatable' for field {0}"
-msgstr ""
+msgstr "คุณไม่สามารถตั้งค่า 'แปลได้' สำหรับฟิลด์ {0} ได้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
msgid "You cancelled this document"
-msgstr ""
+msgstr "คุณยกเลิกเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
msgctxt "Form timeline"
msgid "You cancelled this document {1}"
-msgstr ""
+msgstr "คุณยกเลิกเอกสารนี้ {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
-msgstr ""
+msgstr "คุณไม่สามารถสร้างแผนภูมิแดชบอร์ดจากประเภทเอกสารเดียวได้"
#: frappe/custom/doctype/customize_form/customize_form.py:385
msgid "You cannot unset 'Read Only' for field {0}"
-msgstr ""
+msgstr "คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} ได้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0} {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0} {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
-msgstr ""
+msgstr "คุณเปลี่ยน {0} เป็น {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
-msgstr ""
+msgstr "คุณสร้างสิ่งนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
msgctxt "Form timeline"
msgid "You created this document {0}"
-msgstr ""
+msgstr "คุณสร้างเอกสารนี้ {0}"
#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์อ่านหรือเลือกสำหรับ {}"
#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง"
#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการให้เสร็จสิ้น"
#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}"
#: frappe/public/js/frappe/form/form.js:960
msgid "You do not have permissions to cancel all linked documents."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกสารที่เชื่อมโยงทั้งหมด"
#: frappe/desk/query_report.py:42
msgid "You don't have access to Report: {0}"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงรายงาน: {0}"
#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}"
#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงไฟล์นี้"
#: frappe/desk/query_report.py:48
msgid "You don't have permission to get a report on: {0}"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์รับรายงานเกี่ยวกับ: {0}"
#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงเอกสารนี้"
#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from: "
@@ -29525,96 +29525,96 @@ msgstr ""
#: frappe/handler.py:118
msgid "You have been successfully logged out"
-msgstr ""
+msgstr "คุณออกจากระบบสำเร็จแล้ว"
#: frappe/custom/doctype/customize_form/customize_form.py:244
msgid "You have hit the row size limit on database table: {0}"
-msgstr ""
+msgstr "คุณถึงขีดจำกัดขนาดแถวในตารางฐานข้อมูล: {0}"
#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
-msgstr ""
+msgstr "คุณไม่ได้ป้อนค่า ฟิลด์จะถูกตั้งค่าเป็นว่างเปล่า"
#: frappe/templates/includes/likes/likes.py:31
msgid "You have received a ❤️ like on your blog post"
-msgstr ""
+msgstr "คุณได้รับการกดถูกใจ ❤️ ในโพสต์บล็อกของคุณ"
#: frappe/twofactor.py:432
msgid "You have to enable Two Factor Auth from System Settings."
-msgstr ""
+msgstr "คุณต้องเปิดใช้งานการยืนยันตัวตนสองขั้นตอนจากการตั้งค่าระบบ"
#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
-msgstr ""
+msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกในฟอร์มนี้ โปรดบันทึกก่อนดำเนินการต่อ"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
msgid "You have unseen notifications"
-msgstr ""
+msgstr "คุณมีการแจ้งเตือนที่ยังไม่ได้ดู"
#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
-msgstr ""
+msgstr "คุณมี {0} ที่ยังไม่ได้ดู"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
msgid "You haven't added any Dashboard Charts or Number Cards yet."
-msgstr ""
+msgstr "คุณยังไม่ได้เพิ่มแผนภูมิแดชบอร์ดหรือการ์ดตัวเลขใด ๆ"
#: frappe/public/js/frappe/list/list_view.js:498
msgid "You haven't created a {0} yet"
-msgstr ""
+msgstr "คุณยังไม่ได้สร้าง {0}"
#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
-msgstr ""
+msgstr "คุณถึงขีดจำกัดอัตราเนื่องจากคำขอมากเกินไป โปรดลองอีกครั้งในภายหลัง"
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
-msgstr ""
+msgstr "คุณแก้ไขสิ่งนี้ล่าสุด"
#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
-msgstr ""
+msgstr "คุณต้องเพิ่มลิงก์อย่างน้อยหนึ่งลิงก์"
#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อใช้ฟอร์มนี้"
#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้"
#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์ '{0}' ใน {1} {2} เพื่อดำเนินการนี้"
#: frappe/desk/doctype/workspace/workspace.py:127
msgid "You need to be Workspace Manager to delete a public workspace."
-msgstr ""
+msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อที่จะลบพื้นที่ทำงานสาธารณะ"
#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
-msgstr ""
+msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อแก้ไขเอกสารนี้"
#: frappe/www/attribution.py:16
msgid "You need to be a system user to access this page."
-msgstr ""
+msgstr "คุณต้องเป็นผู้ใช้ระบบเพื่อเข้าถึงหน้านี้"
#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
-msgstr ""
+msgstr "คุณต้องอยู่ในโหมดนักพัฒนาเพื่อแก้ไขฟอร์มเว็บมาตรฐาน"
#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบและมีบทบาทผู้จัดการระบบเพื่อเข้าถึงข้อมูลสำรอง"
#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึงหน้านี้"
#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึง {0} นี้"
#: frappe/public/js/frappe/widgets/links_widget.js:63
msgid "You need to create these first: "
@@ -29622,7 +29622,7 @@ msgstr ""
#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
-msgstr ""
+msgstr "คุณต้องเปิดใช้งาน JavaScript เพื่อให้แอปของคุณทำงานได้"
#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
@@ -29630,171 +29630,171 @@ msgstr ""
#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
-msgstr ""
+msgstr "คุณต้องติดตั้ง pycups เพื่อใช้คุณสมบัตินี้!"
#: frappe/core/doctype/recorder/recorder.js:38
msgid "You need to select indexes you want to add first."
-msgstr ""
+msgstr "คุณต้องเลือกดัชนีที่คุณต้องการเพิ่มก่อน"
#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
-msgstr ""
+msgstr "คุณต้องตั้งค่าหนึ่งโฟลเดอร์ IMAP สำหรับ {0}"
#: frappe/model/rename_doc.py:391
msgid "You need write permission on {0} {1} to merge"
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {1} เพื่อรวม"
#: frappe/model/rename_doc.py:386
msgid "You need write permission on {0} {1} to rename"
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {1} เพื่อเปลี่ยนชื่อ"
#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์ {0} เพื่อดึงค่าจาก {1} {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
-msgstr ""
+msgstr "คุณลบไฟล์แนบ {0}"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
-msgstr ""
+msgstr "คุณดูพร้อมที่จะไป!"
#: frappe/templates/includes/contact.js:20
msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
-msgstr ""
+msgstr "คุณดูเหมือนจะเขียนชื่อของคุณแทนอีเมล โปรดป้อนที่อยู่อีเมลที่ถูกต้องเพื่อให้เราสามารถติดต่อกลับได้"
#: frappe/public/js/frappe/list/bulk_operations.js:31
msgid "You selected Draft or Cancelled documents"
-msgstr ""
+msgstr "คุณเลือกเอกสารที่เป็นร่างหรือถูกยกเลิก"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
msgctxt "Form timeline"
msgid "You submitted this document"
-msgstr ""
+msgstr "คุณส่งเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
msgctxt "Form timeline"
msgid "You submitted this document {0}"
-msgstr ""
+msgstr "คุณส่งเอกสารนี้ {0}"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
-msgstr ""
+msgstr "คุณเลิกติดตามเอกสารนี้"
#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
-msgstr ""
+msgstr "คุณดูสิ่งนี้"
#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
-msgstr ""
+msgstr "คุณเข้าสู่ระบบในฐานะผู้ใช้อื่นจากแท็บอื่น โปรดรีเฟรชหน้านี้เพื่อใช้งานระบบต่อ"
#: frappe/core/doctype/prepared_report/prepared_report.js:57
msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
-msgstr ""
+msgstr "ไฟล์ CSV ของคุณกำลังถูกสร้างและจะปรากฏในส่วนไฟล์แนบเมื่อพร้อมใช้งาน นอกจากนี้คุณจะได้รับการแจ้งเตือนเมื่อไฟล์พร้อมให้ดาวน์โหลด"
#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
-msgstr ""
+msgstr "ประเทศของคุณ"
#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
-msgstr ""
+msgstr "ภาษาของคุณ"
#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
-msgstr ""
+msgstr "ชื่อของคุณ"
#: frappe/public/js/frappe/list/bulk_operations.js:132
msgid "Your PDF is ready for download"
-msgstr ""
+msgstr "PDF ของคุณพร้อมให้ดาวน์โหลดแล้ว"
#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
-msgstr ""
+msgstr "ทางลัดของคุณ"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
-msgstr ""
+msgstr "บัญชีของคุณถูกลบแล้ว"
#: frappe/auth.py:514
msgid "Your account has been locked and will resume after {0} seconds"
-msgstr ""
+msgstr "บัญชีของคุณถูกล็อกและจะกลับมาใช้งานได้หลังจาก {0} วินาที"
#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
-msgstr ""
+msgstr "การมอบหมายของคุณใน {0} {1} ถูกลบโดย {2}"
#: frappe/core/doctype/file/file.js:73
msgid "Your browser does not support the audio element."
-msgstr ""
+msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบเสียง"
#: frappe/core/doctype/file/file.js:55
msgid "Your browser does not support the video element."
-msgstr ""
+msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบวิดีโอ"
#: frappe/templates/pages/integrations/gcalendar-success.html:11
msgid "Your connection request to Google Calendar was successfully accepted"
-msgstr ""
+msgstr "คำขอเชื่อมต่อของคุณไปยัง Google Calendar ได้รับการยอมรับเรียบร้อยแล้ว"
#: frappe/www/contact.html:35
msgid "Your email address"
-msgstr ""
+msgstr "ที่อยู่อีเมลของคุณ"
#: frappe/public/js/frappe/web_form/web_form.js:428
msgid "Your form has been successfully updated"
-msgstr ""
+msgstr "ฟอร์มของคุณได้รับการอัปเดตเรียบร้อยแล้ว"
#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
-msgstr ""
+msgstr "รหัสเข้าสู่ระบบของคุณคือ"
#: frappe/www/update-password.html:167
msgid "Your new password has been set successfully."
-msgstr ""
+msgstr "รหัสผ่านใหม่ของคุณถูกตั้งค่าเรียบร้อยแล้ว"
#: frappe/www/update-password.html:147
msgid "Your old password is incorrect."
-msgstr ""
+msgstr "รหัสผ่านเก่าของคุณไม่ถูกต้อง"
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr ""
+msgstr "ชื่อและที่อยู่ขององค์กรของคุณสำหรับส่วนท้ายอีเมล"
#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
-msgstr ""
+msgstr "คำถามของคุณได้รับแล้ว เราจะตอบกลับในไม่ช้า หากคุณมีข้อมูลเพิ่มเติม โปรดตอบกลับอีเมลนี้"
#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
-msgstr ""
+msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
msgid "Your site is undergoing maintenance or being updated."
-msgstr ""
+msgstr "ไซต์ของคุณกำลังอยู่ในระหว่างการบำรุงรักษาหรือกำลังอัปเดต"
#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
-msgstr ""
+msgstr "รหัสยืนยันของคุณคือ {0}"
#: frappe/utils/data.py:1547
msgid "Zero"
-msgstr ""
+msgstr "ศูนย์"
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr ""
+msgstr "ศูนย์หมายถึงส่งระเบียนที่อัปเดตได้ตลอดเวลา"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265
msgid "[Action taken by {0}]"
-msgstr ""
+msgstr "[การดำเนินการโดย {0}]"
#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -29808,146 +29808,146 @@ msgstr ""
#: frappe/database/database.py:361
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
-msgstr ""
+msgstr "`as_iterator` ใช้งานได้เฉพาะกับ `as_list=True` หรือ `as_dict=True`"
#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
-msgstr ""
+msgstr "ต้องการพารามิเตอร์ `job_id` สำหรับการลบข้อมูลซ้ำ"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
-msgstr ""
+msgstr "เพิ่มแถวสำหรับ {0}"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr ""
+msgstr "หลังจากแทรก"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
msgid "and"
-msgstr ""
+msgstr "และ"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "ascending"
-msgstr ""
+msgstr "เรียงจากน้อยไปมาก"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr ""
+msgstr "สีน้ำเงิน"
#: frappe/public/js/frappe/form/workflow.js:35
msgid "by Role"
-msgstr ""
+msgstr "ตามบทบาท"
#. Label of the profile (Code) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "cProfile Output"
-msgstr ""
+msgstr "ผลลัพธ์ cProfile"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
msgid "calendar"
-msgstr ""
+msgstr "ปฏิทิน"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr ""
+msgstr "ยกเลิก"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
-msgstr ""
+msgstr "ถูกยกเลิก"
#: frappe/templates/includes/list/filters.html:19
msgid "clear"
-msgstr ""
+msgstr "ล้าง"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
msgid "commented"
-msgstr ""
+msgstr "แสดงความคิดเห็น"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr ""
+msgstr "สร้าง"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
-msgstr ""
+msgstr "สีฟ้า"
#: frappe/public/js/frappe/form/controls/duration.js:208
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr ""
+msgstr "วัน"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "darkgrey"
-msgstr ""
+msgstr "สีเทาเข้ม"
#: frappe/core/page/dashboard_view/dashboard_view.js:65
msgid "dashboard"
-msgstr ""
+msgstr "แดชบอร์ด"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd-mm-yyyy"
-msgstr ""
+msgstr "วว-ดด-ปปปป"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd.mm.yyyy"
-msgstr ""
+msgstr "วว.ดด.ปปปป"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd/mm/yyyy"
-msgstr ""
+msgstr "วว/ดด/ปปปป"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
-msgstr ""
+msgstr "เลื่อนออกไป"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr ""
+msgstr "ลบ"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
-msgstr ""
+msgstr "เรียงจากมากไปน้อย"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
-msgstr ""
+msgstr "ประเภทเอกสาร..., เช่น ลูกค้า"
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
@@ -29957,36 +29957,36 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
-msgstr ""
+msgstr "เช่น (55 + 434) / 4 หรือ =Math.sin(Math.PI/2)..."
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr ""
+msgstr "เช่น pop.gmail.com / imap.gmail.com"
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr ""
+msgstr "เช่น replies@yourcomany.com. การตอบกลับทั้งหมดจะมาที่กล่องจดหมายนี้"
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr ""
+msgstr "เช่น smtp.gmail.com"
#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
-msgstr ""
+msgstr "เช่น:"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "emacs"
-msgstr ""
+msgstr "อีแมคส์"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -29995,63 +29995,63 @@ msgstr ""
#: frappe/core/doctype/permission_inspector/permission_inspector.json
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "email"
-msgstr ""
+msgstr "อีเมล"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "email inbox"
-msgstr ""
+msgstr "กล่องจดหมายอีเมล"
#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
-msgstr ""
+msgstr "ว่างเปล่า"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr ""
+msgstr "ส่งออก"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "facebook"
-msgstr ""
+msgstr "เฟซบุ๊ก"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
-msgstr ""
+msgstr "ล้มเหลว"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr ""
+msgstr "เข้าสู่ระบบอย่างยุติธรรม"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
-msgstr ""
+msgstr "เสร็จสิ้น"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
-msgstr ""
+msgstr "สีเทา"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr ""
+msgstr "สีเขียว"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "grey"
-msgstr ""
+msgstr "สีเทา"
#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
-msgstr ""
+msgstr "ไม่พบ gzip ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล"
#: frappe/public/js/frappe/form/controls/duration.js:209
#: frappe/public/js/frappe/utils/utils.js:1120
@@ -30061,23 +30061,23 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296
msgid "hub"
-msgstr ""
+msgstr "ฮับ"
#. Label of the icon (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr ""
+msgstr "ไอคอน"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr ""
+msgstr "นำเข้า"
#. Description of the 'Read Time' (Int) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "in minutes"
-msgstr ""
+msgstr "ในนาที"
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
@@ -30085,243 +30085,243 @@ msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
-msgstr ""
+msgstr "เมื่อสักครู่"
#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
msgid "label"
-msgstr ""
+msgstr "ป้ายกำกับ"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "light-blue"
-msgstr ""
+msgstr "สีฟ้าอ่อน"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "link"
-msgstr ""
+msgstr "ลิงก์"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr ""
+msgstr "ลิงก์อิน"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "list"
-msgstr ""
+msgstr "รายการ"
#: frappe/www/third_party_apps.html:43
msgid "logged in"
-msgstr ""
+msgstr "เข้าสู่ระบบแล้ว"
#: frappe/website/doctype/web_form/web_form.js:362
msgid "login_required"
-msgstr ""
+msgstr "ต้องเข้าสู่ระบบ"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
-msgstr ""
+msgstr "ยาว"
#: frappe/public/js/frappe/form/controls/duration.js:210
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr ""
+msgstr "นาที"
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
-msgstr ""
+msgstr "รวม {0} เข้ากับ {1}"
#: frappe/website/doctype/blog_post/templates/blog_post.html:25
#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36
msgid "min read"
-msgstr ""
+msgstr "อ่านขั้นต่ำ"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr ""
+msgstr "ดด-วว-ปปปป"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr ""
+msgstr "ดด/วว/ปปปป"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "module"
-msgstr ""
+msgstr "โมดูล"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
-msgstr ""
+msgstr "ชื่อโมดูล..."
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160
msgid "new"
-msgstr ""
+msgstr "ใหม่"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
msgid "new type of document"
-msgstr ""
+msgstr "ประเภทเอกสารใหม่"
#. Label of the no_failed (Int) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr ""
+msgstr "ไม่มีความพยายามที่ล้มเหลว"
#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
-msgstr ""
+msgstr "โนนซ์"
#. Label of the notified (Check) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
-msgstr ""
+msgstr "แจ้งเตือนแล้ว"
#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
-msgstr ""
+msgstr "ตอนนี้"
#: frappe/public/js/frappe/form/grid_pagination.js:116
msgid "of"
-msgstr ""
+msgstr "ของ"
#. Label of the old_parent (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr ""
+msgstr "ผู้ปกครองเก่า"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_cancel"
-msgstr ""
+msgstr "เมื่อยกเลิก"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr ""
+msgstr "เมื่อเปลี่ยนแปลง"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_submit"
-msgstr ""
+msgstr "เมื่อส่ง"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr ""
+msgstr "เมื่อทิ้ง"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update"
-msgstr ""
+msgstr "เมื่ออัปเดต"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update_after_submit"
-msgstr ""
+msgstr "เมื่ออัปเดตหลังจากส่ง"
#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
-msgstr ""
+msgstr "หรือ"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr ""
+msgstr "สีส้ม"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "page"
-msgstr ""
+msgstr "หน้า"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
-msgstr ""
+msgstr "สีชมพู"
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "plain"
-msgstr ""
+msgstr "ธรรมดา"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr ""
+msgstr "พิมพ์"
#. Label of the processlist (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
-msgstr ""
+msgstr "รายการกระบวนการ"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr ""
+msgstr "สีม่วง"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "query-report"
-msgstr ""
+msgstr "รายงานคำถาม"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
-msgstr ""
+msgstr "อยู่ในคิว"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr ""
+msgstr "อ่าน"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr ""
+msgstr "สีแดง"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234
msgid "removed rows for {0}"
-msgstr ""
+msgstr "ลบแถวสำหรับ {0}"
#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
-msgstr ""
+msgstr "เปลี่ยนชื่อจาก {0} เป็น {1}"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr ""
+msgstr "รายงาน"
#. Label of the response (HTML) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr ""
+msgstr "การตอบกลับ"
#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
-msgstr ""
+msgstr "กู้คืน {0} เป็น {1}"
#: frappe/public/js/frappe/form/controls/duration.js:211
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr ""
+msgstr "วินาที"
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
@@ -30332,101 +30332,101 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
-msgstr ""
+msgstr "กำหนดเวลา"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "select"
-msgstr ""
+msgstr "เลือก"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr ""
+msgstr "แชร์"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "short"
-msgstr ""
+msgstr "สั้น"
#: frappe/public/js/frappe/widgets/number_card_widget.js:298
msgid "since last month"
-msgstr ""
+msgstr "ตั้งแต่เดือนที่แล้ว"
#: frappe/public/js/frappe/widgets/number_card_widget.js:297
msgid "since last week"
-msgstr ""
+msgstr "ตั้งแต่สัปดาห์ที่แล้ว"
#: frappe/public/js/frappe/widgets/number_card_widget.js:299
msgid "since last year"
-msgstr ""
+msgstr "ตั้งแต่ปีที่แล้ว"
#: frappe/public/js/frappe/widgets/number_card_widget.js:296
msgid "since yesterday"
-msgstr ""
+msgstr "ตั้งแต่เมื่อวาน"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
-msgstr ""
+msgstr "เริ่มต้นแล้ว"
#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
-msgstr ""
+msgstr "กำลังเริ่มการตั้งค่า..."
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
-msgstr ""
+msgstr "ค่าข้อความ เช่น กลุ่ม"
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
-msgstr ""
+msgstr "ค่าข้อความ เช่น สมาชิก"
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
-msgstr ""
+msgstr "ค่าข้อความ เช่น {0} หรือ uid={0},ou=users,dc=example,dc=com"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
-msgstr ""
+msgstr "ชื่อแท็ก เช่น #tag"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
-msgstr ""
+msgstr "ข้อความในประเภทเอกสาร"
#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
-msgstr ""
+msgstr "ฟอร์มนี้"
#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
-msgstr ""
+msgstr "สิ่งนี้ไม่ควรเสียหาย"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr ""
+msgstr "ทวิตเตอร์"
#: frappe/public/js/frappe/change_log.html:7
msgid "updated to {0}"
-msgstr ""
+msgstr "อัปเดตเป็น {0}"
#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
@@ -30434,38 +30434,38 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:360
msgid "values separated by commas"
-msgstr ""
+msgstr "ค่าที่คั่นด้วยเครื่องหมายจุลภาค"
#. Label of the version_table (HTML) field in DocType 'Audit Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
-msgstr ""
+msgstr "ตารางเวอร์ชัน"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
-msgstr ""
+msgstr "ผ่านกฎการมอบหมาย"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
msgid "via Auto Repeat"
-msgstr ""
+msgstr "ผ่านการทำซ้ำอัตโนมัติ"
#: frappe/core/doctype/data_import/importer.py:271
#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
-msgstr ""
+msgstr "ผ่านการนำเข้าข้อมูล"
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
-msgstr ""
+msgstr "ผ่าน Google Meet"
#: frappe/email/doctype/notification/notification.py:361
msgid "via Notification"
-msgstr ""
+msgstr "ผ่านการแจ้งเตือน"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
-msgstr ""
+msgstr "ผ่าน {0}"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -30479,13 +30479,13 @@ msgstr ""
#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
-msgstr ""
+msgstr "ต้องการเข้าถึงรายละเอียดต่อไปนี้จากบัญชีของคุณ"
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
-msgstr ""
+msgstr "เมื่อคลิกที่องค์ประกอบ จะโฟกัสไปที่ป๊อปโอเวอร์หากมีอยู่"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -30494,29 +30494,29 @@ msgstr ""
#: frappe/printing/page/print/print.js:622
msgid "wkhtmltopdf 0.12.x (with patched qt)."
-msgstr ""
+msgstr "wkhtmltopdf 0.12.x (พร้อม qt ที่แก้ไขแล้ว)"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr ""
+msgstr "เขียน"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr ""
+msgstr "สีเหลือง"
#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
-msgstr ""
+msgstr "เมื่อวาน"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr ""
+msgstr "ปปปป-ดด-วว"
#: frappe/desk/doctype/event/event.js:87
#: frappe/public/js/frappe/form/footer/form_timeline.js:547
@@ -30538,7 +30538,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr ""
+msgstr "{0} ({1}) (1 แถวจำเป็น)"
#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
@@ -30551,43 +30551,43 @@ msgstr ""
#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
-msgstr ""
+msgstr "ปฏิทิน {0}"
#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
-msgstr ""
+msgstr "แผนภูมิ {0}"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
-msgstr ""
+msgstr "แดชบอร์ด {0}"
#: frappe/public/js/frappe/form/grid_row.js:470
#: frappe/public/js/frappe/list/list_settings.js:227
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
-msgstr ""
+msgstr "ฟิลด์ {0}"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
-msgstr ""
+msgstr "กิจกรรม Google Calendar {0} ซิงค์แล้ว"
#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
-msgstr ""
+msgstr "รายชื่อ Google {0} ซิงค์แล้ว"
#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
-msgstr ""
+msgstr "ชอบ {0}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
#: frappe/www/list.html:8
msgid "{0} List"
-msgstr ""
+msgstr "รายการ {0}"
#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
@@ -30595,498 +30595,498 @@ msgstr ""
#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
-msgstr ""
+msgstr "แผนที่ {0}"
#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
-msgstr ""
+msgstr "ชื่อ {0}"
#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
-msgstr ""
+msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หลังจากส่งจาก {2} เป็น {3}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
#: frappe/public/js/frappe/widgets/chart_widget.js:366
msgid "{0} Report"
-msgstr ""
+msgstr "รายงาน {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
-msgstr ""
+msgstr "รายงาน {0}"
#: frappe/public/js/frappe/list/list_settings.js:32
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
-msgstr ""
+msgstr "การตั้งค่า {0}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
#: frappe/public/js/frappe/views/treeview.js:152
msgid "{0} Tree"
-msgstr ""
+msgstr "ต้นไม้ {0}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
-msgstr ""
+msgstr "การดูหน้าเว็บ {0}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
msgid "{0} Workspace"
-msgstr ""
+msgstr "พื้นที่ทำงาน {0}"
#: frappe/public/js/frappe/form/link_selector.js:225
msgid "{0} added"
-msgstr ""
+msgstr "เพิ่ม {0}"
#: frappe/public/js/frappe/form/controls/data.js:204
msgid "{0} already exists. Select another name"
-msgstr ""
+msgstr "{0} มีอยู่แล้ว เลือกชื่ออื่น"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
-msgstr ""
+msgstr "{0} ยกเลิกการสมัครแล้ว"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
-msgstr ""
+msgstr "{0} ยกเลิกการสมัครแล้วสำหรับ {1} {2}"
#: frappe/utils/data.py:1740
msgid "{0} and {1}"
-msgstr ""
+msgstr "{0} และ {1}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr ""
+msgstr "{0} ปัจจุบันคือ {1}"
#: frappe/printing/doctype/print_format/print_format.py:89
msgid "{0} are required"
-msgstr ""
+msgstr "ต้องการ {0}"
#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
-msgstr ""
+msgstr "{0} มอบหมายงานใหม่ {1} {2} ให้คุณ"
#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
-msgstr ""
+msgstr "{0} มอบหมาย {1}: {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
-msgstr ""
+msgstr "{0} แนบ {1}"
#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
-msgstr ""
+msgstr "{0} ต้องไม่เกิน {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
-msgstr ""
+msgstr "{0} ยกเลิกเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
-msgstr ""
+msgstr "{0} ยกเลิกเอกสารนี้ {1}"
#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
-msgstr ""
+msgstr "{0} ไม่สามารถแก้ไขได้เนื่องจากยังไม่ได้ยกเลิก โปรดยกเลิกเอกสารก่อนสร้างการแก้ไข"
#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
-msgstr ""
+msgstr "{0} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1} {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1} {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
-msgstr ""
+msgstr "{0} เปลี่ยน {1} เป็น {2}"
#: frappe/website/doctype/blog_post/blog_post.py:382
msgid "{0} comments"
-msgstr ""
+msgstr "{0} ความคิดเห็น"
#: frappe/core/doctype/doctype/doctype.py:1605
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
-msgstr ""
+msgstr "{0} มีนิพจน์ Fetch From ที่ไม่ถูกต้อง Fetch From ไม่สามารถอ้างอิงตัวเองได้"
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
-msgstr ""
+msgstr "{0} สร้างสำเร็จ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
-msgstr ""
+msgstr "{0} สร้างสิ่งนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
msgctxt "Form timeline"
msgid "{0} created this document {1}"
-msgstr ""
+msgstr "{0} สร้างเอกสารนี้ {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
-msgstr ""
+msgstr "{0} วัน"
#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
-msgstr ""
+msgstr "{0} วันที่ผ่านมา"
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
-msgstr ""
+msgstr "{0} ไม่มีอยู่ในแถว {1}"
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
-msgstr ""
+msgstr "ฟิลด์ {0} ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำใน {1} ได้ เนื่องจากมีค่าที่ไม่ซ้ำอยู่แล้ว"
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
-msgstr ""
+msgstr "ไม่สามารถกำหนดรูปแบบ {0} จากค่าที่อยู่ในคอลัมน์นี้ได้ กำหนดค่าเริ่มต้นเป็น {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
-msgstr ""
+msgstr "{0} จาก {1} ถึง {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
-msgstr ""
+msgstr "{0} จาก {1} ถึง {2} ในแถว #{3}"
#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
-msgstr ""
+msgstr "{0} ชั่วโมง"
#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
-msgstr ""
+msgstr "{0} ได้กำหนดค่าเริ่มต้นสำหรับ {1} แล้ว"
#: frappe/email/doctype/newsletter/newsletter.py:380
msgid "{0} has been successfully added to the Email Group."
-msgstr ""
+msgstr "{0} ถูกเพิ่มในกลุ่มอีเมลเรียบร้อยแล้ว"
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
-msgstr ""
+msgstr "{0} ออกจากการสนทนาใน {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
-msgstr ""
+msgstr "{0} ชั่วโมงที่ผ่านมา"
#: frappe/website/doctype/web_form/templates/web_form.html:148
msgid "{0} if you are not redirected within {1} seconds"
-msgstr ""
+msgstr "{0} หากคุณไม่ได้ถูกเปลี่ยนเส้นทางภายใน {1} วินาที"
#: frappe/website/doctype/website_settings/website_settings.py:102
#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
-msgstr ""
+msgstr "{0} ในแถว {1} ไม่สามารถมีทั้ง URL และรายการลูกได้"
#: frappe/core/doctype/doctype/doctype.py:934
msgid "{0} is a mandatory field"
-msgstr ""
+msgstr "{0} เป็นฟิลด์ที่จำเป็น"
#: frappe/core/doctype/file/file.py:544
msgid "{0} is a not a valid zip file"
-msgstr ""
+msgstr "{0} ไม่ใช่ไฟล์ zip ที่ถูกต้อง"
#: frappe/core/doctype/doctype/doctype.py:1618
msgid "{0} is an invalid Data field."
-msgstr ""
+msgstr "{0} เป็นฟิลด์ข้อมูลที่ไม่ถูกต้อง"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154
msgid "{0} is an invalid email address in 'Recipients'"
-msgstr ""
+msgstr "{0} เป็นที่อยู่อีเมลที่ไม่ถูกต้องใน 'ผู้รับ'"
#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
-msgstr ""
+msgstr "{0} อยู่ระหว่าง {1} และ {2}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr ""
+msgstr "{0} ปัจจุบันคือ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
-msgstr ""
+msgstr "{0} เท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
-msgstr ""
+msgstr "{0} มากกว่าหรือเท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
-msgstr ""
+msgstr "{0} มากกว่า {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
-msgstr ""
+msgstr "{0} น้อยกว่าหรือเท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
-msgstr ""
+msgstr "{0} น้อยกว่า {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
-msgstr ""
+msgstr "{0} คล้ายกับ {1}"
#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
-msgstr ""
+msgstr "{0} เป็นสิ่งจำเป็น"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่ฟิลด์ของประเภทเอกสาร {1}"
#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
-msgstr ""
+msgstr "{0} ไม่ใช่รูปแบบการพิมพ์ดิบ"
#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
-msgstr ""
+msgstr "{0} ไม่ใช่ปฏิทินที่ถูกต้อง กำลังเปลี่ยนเส้นทางไปยังปฏิทินเริ่มต้น"
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
-msgstr ""
+msgstr "{0} ไม่ใช่นิพจน์ Cron ที่ถูกต้อง"
#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
msgid "{0} is not a valid DocType for Dynamic Link"
-msgstr ""
+msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก"
#: frappe/email/doctype/email_group/email_group.py:131
#: frappe/utils/__init__.py:202
msgid "{0} is not a valid Email Address"
-msgstr ""
+msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง"
#: frappe/geo/doctype/country/country.py:30
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "{0} ไม่ใช่รหัส ISO 3166 ALPHA-2 ที่ถูกต้อง"
#: frappe/utils/__init__.py:170
msgid "{0} is not a valid Name"
-msgstr ""
+msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง"
#: frappe/utils/__init__.py:149
msgid "{0} is not a valid Phone Number"
-msgstr ""
+msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ที่ถูกต้อง"
#: frappe/model/workflow.py:189
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
-msgstr ""
+msgstr "{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง"
#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่ประเภทเอกสารหลักที่ถูกต้องสำหรับ {1}"
#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต้องสำหรับ {1}"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
msgid "{0} is not a valid report format. Report format should one of the following {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็นหนึ่งในสิ่งต่อไปนี้ {1}"
#: frappe/core/doctype/file/file.py:524
msgid "{0} is not a zip file"
-msgstr ""
+msgstr "{0} ไม่ใช่ไฟล์ zip"
#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
-msgstr ""
+msgstr "{0} ไม่เท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
-msgstr ""
+msgstr "{0} ไม่คล้ายกับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่หนึ่งใน {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
-msgstr ""
+msgstr "{0} ไม่ได้ตั้งค่า"
#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
-msgstr ""
+msgstr "{0} เป็นรูปแบบการพิมพ์เริ่มต้นสำหรับประเภทเอกสาร {1} แล้ว"
#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
-msgstr ""
+msgstr "{0} เป็นหนึ่งใน {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
#: frappe/printing/doctype/print_format/print_format.py:92
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
-msgstr ""
+msgstr "{0} เป็นสิ่งจำเป็น"
#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
-msgstr ""
+msgstr "{0} ถูกตั้งค่า"
#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
-msgstr ""
+msgstr "{0} อยู่ภายใน {1}"
#: frappe/public/js/frappe/list/list_view.js:1694
msgid "{0} items selected"
-msgstr ""
+msgstr "{0} รายการที่เลือก"
#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
-msgstr ""
+msgstr "{0} เพิ่งปลอมตัวเป็นคุณ พวกเขาให้เหตุผลนี้: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
-msgstr ""
+msgstr "{0} แก้ไขสิ่งนี้ล่าสุด"
#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
-msgstr ""
+msgstr "{0} เข้าสู่ระบบแล้ว"
#: frappe/core/doctype/activity_log/feed.py:19
msgid "{0} logged out: {1}"
-msgstr ""
+msgstr "{0} ออกจากระบบ: {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:27
msgid "{0} m"
-msgstr ""
+msgstr "{0} นาที"
#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
-msgstr ""
+msgstr "{0} กล่าวถึงคุณในความคิดเห็นใน {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:50
msgid "{0} minutes ago"
-msgstr ""
+msgstr "{0} นาทีที่ผ่านมา"
#: frappe/public/js/frappe/utils/pretty_date.js:68
msgid "{0} months ago"
-msgstr ""
+msgstr "{0} เดือนที่ผ่านมา"
#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
-msgstr ""
+msgstr "{0} ต้องอยู่หลังจาก {1}"
#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
-msgstr ""
+msgstr "{0} ต้องเริ่มต้นด้วย '{1}'"
#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
-msgstr ""
+msgstr "{0} ต้องเท่ากับ '{1}'"
#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
-msgstr ""
+msgstr "{0} ต้องไม่เป็นหนึ่งใน {1}"
#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
-msgstr ""
+msgstr "{0} ต้องเป็นหนึ่งใน {1}"
#: frappe/model/base_document.py:876
msgid "{0} must be set first"
-msgstr ""
+msgstr "{0} ต้องตั้งค่าก่อน"
#: frappe/model/base_document.py:729
msgid "{0} must be unique"
-msgstr ""
+msgstr "{0} ต้องไม่ซ้ำกัน"
#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
-msgstr ""
+msgstr "{0} ต้องเป็น {1} {2}"
#: frappe/core/doctype/language/language.py:79
msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore."
-msgstr ""
+msgstr "{0} ต้องเริ่มต้นและสิ้นสุดด้วยตัวอักษร และสามารถมีได้เฉพาะตัวอักษร, ขีดกลาง หรือขีดล่างเท่านั้น"
#: frappe/workflow/doctype/workflow/workflow.py:90
msgid "{0} not a valid State"
-msgstr ""
+msgstr "{0} ไม่ใช่สถานะที่ถูกต้อง"
#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
-msgstr ""
+msgstr "{0} ไม่อนุญาตให้เปลี่ยนชื่อ"
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
-msgstr ""
+msgstr "ไม่พบ {0}"
#: frappe/core/doctype/report/report.py:427
#: frappe/public/js/frappe/list/list_view.js:1068
msgid "{0} of {1}"
-msgstr ""
+msgstr "{0} ของ {1}"
#: frappe/public/js/frappe/list/list_view.js:1070
msgid "{0} of {1} ({2} rows with children)"
-msgstr ""
+msgstr "{0} ของ {1} ({2} แถวที่มีลูก)"
#: frappe/email/doctype/newsletter/newsletter.js:205
msgid "{0} of {1} sent"
-msgstr ""
+msgstr "{0} ของ {1} ถูกส่งแล้ว"
#: frappe/utils/data.py:1555
msgctxt "Money in words"
msgid "{0} only."
-msgstr ""
+msgstr "เฉพาะ {0} เท่านั้น"
#: frappe/utils/data.py:1730
msgid "{0} or {1}"
-msgstr ""
+msgstr "{0} หรือ {1}"
#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
-msgstr ""
+msgstr "ระเบียน {0} ถูกลบ"
#: frappe/public/js/frappe/logtypes.js:22
msgid "{0} records are not automatically deleted."
-msgstr ""
+msgstr "ระเบียน {0} จะไม่ถูกลบโดยอัตโนมัติ"
#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
-msgstr ""
+msgstr "ระเบียน {0} ถูกเก็บไว้เป็นเวลา {1} วัน"
#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
-msgstr ""
+msgstr "ระเบียน {0} ถูกลบ"
#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr ""
+msgstr "ระเบียน {0} จะถูกส่งออก"
#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
-msgstr ""
+msgstr "{0} ลบไฟล์แนบ {1}"
#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
-msgstr ""
+msgstr "{0} ลบการมอบหมายของพวกเขา"
#: frappe/public/js/frappe/roles_editor.js:62
msgid "{0} role does not have permission on any doctype"
-msgstr ""
+msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ"
#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
@@ -31094,99 +31094,99 @@ msgstr ""
#: frappe/desk/query_report.py:612
msgid "{0} saved successfully"
-msgstr ""
+msgstr "{0} บันทึกสำเร็จ"
#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
-msgstr ""
+msgstr "{0} มอบหมายงานนี้ให้ตัวเอง: {1}"
#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
-msgstr ""
+msgstr "{0} แชร์เอกสาร {1} {2} กับคุณ"
#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
-msgstr ""
+msgstr "{0} แชร์เอกสารนี้กับทุกคน"
#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
-msgstr ""
+msgstr "{0} แชร์เอกสารนี้กับ {1}"
#: frappe/core/doctype/doctype/doctype.py:316
msgid "{0} should be indexed because it's referred in dashboard connections"
-msgstr ""
+msgstr "{0} ควรถูกจัดทำดัชนีเพราะถูกอ้างอิงในการเชื่อมต่อแดชบอร์ด"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141
msgid "{0} should not be same as {1}"
-msgstr ""
+msgstr "{0} ไม่ควรเหมือนกับ {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
-msgstr ""
+msgstr "{0} ส่งเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
msgctxt "Form timeline"
msgid "{0} submitted this document {1}"
-msgstr ""
+msgstr "{0} ส่งเอกสารนี้ {1}"
#: frappe/email/doctype/email_group/email_group.py:62
#: frappe/email/doctype/email_group/email_group.py:133
msgid "{0} subscribers added"
-msgstr ""
+msgstr "เพิ่มผู้ติดตาม {0}"
#: frappe/email/queue.py:68
msgid "{0} to stop receiving emails of this type"
-msgstr ""
+msgstr "{0} เพื่อหยุดรับอีเมลประเภทนี้"
#: frappe/public/js/frappe/form/controls/date_range.js:48
#: frappe/public/js/frappe/form/controls/date_range.js:64
#: frappe/public/js/frappe/form/formatters.js:234
msgid "{0} to {1}"
-msgstr ""
+msgstr "{0} ถึง {1}"
#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
-msgstr ""
+msgstr "{0} ยกเลิกการแชร์เอกสารนี้กับ {1}"
#: frappe/custom/doctype/customize_form/customize_form.py:253
msgid "{0} updated"
-msgstr ""
+msgstr "{0} อัปเดตแล้ว"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
-msgstr ""
+msgstr "เลือกค่า {0} แล้ว"
#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
-msgstr ""
+msgstr "{0} ดูสิ่งนี้"
#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr ""
+msgstr "{0} สัปดาห์"
#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
-msgstr ""
+msgstr "{0} สัปดาห์ที่ผ่านมา"
#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
-msgstr ""
+msgstr "{0} ปี"
#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
-msgstr ""
+msgstr "{0} ปีที่ผ่านมา"
#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
-msgstr ""
+msgstr "เพิ่ม {0} {1}"
#: frappe/public/js/frappe/utils/dashboard_utils.js:270
msgid "{0} {1} added to Dashboard {2}"
-msgstr ""
+msgstr "เพิ่ม {0} {1} ในแดชบอร์ด {2}"
#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
-msgstr ""
+msgstr "{0} {1} มีอยู่แล้ว"
#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
@@ -31194,123 +31194,123 @@ msgstr ""
#: frappe/utils/nestedset.py:340
msgid "{0} {1} cannot be a leaf node as it has children"
-msgstr ""
+msgstr "{0} {1} ไม่สามารถเป็นโหนดใบได้เนื่องจากมีลูก"
#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
-msgstr ""
+msgstr "{0} {1} ไม่มีอยู่ โปรดเลือกเป้าหมายใหม่เพื่อรวม"
#: frappe/public/js/frappe/form/form.js:951
msgid "{0} {1} is linked with the following submitted documents: {2}"
-msgstr ""
+msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ส่งต่อไปนี้: {2}"
#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
-msgstr ""
+msgstr "ไม่พบ {0} {1}"
#: frappe/model/delete_doc.py:247
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
-msgstr ""
+msgstr "{0} {1}: ไม่สามารถลบระเบียนที่ส่งได้ คุณต้อง {2} ยกเลิก {3} ก่อน"
#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
-msgstr ""
+msgstr "{0}, แถว {1}"
#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "{0}/{1} complete | Please leave this tab open until completion."
-msgstr ""
+msgstr "{0}/{1} เสร็จสิ้น | โปรดเปิดแท็บนี้ไว้จนกว่าจะเสร็จสิ้น"
#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
-msgstr ""
+msgstr "{0}: '{1}' ({3}) จะถูกตัดออก เนื่องจากจำนวนตัวอักษรสูงสุดที่อนุญาตคือ {2}"
#: frappe/core/doctype/doctype/doctype.py:1800
msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่าแก้ไขได้โดยไม่ยกเลิก"
#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการแก้ไขได้หากไม่สามารถส่งได้"
#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการส่งได้หากไม่สามารถส่งได้"
#: frappe/core/doctype/doctype/doctype.py:1795
msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยไม่ส่ง"
#: frappe/core/doctype/doctype/doctype.py:1802
msgid "{0}: Cannot set Import without Create"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่สร้าง"
#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่าส่ง ยกเลิก แก้ไขได้โดยไม่มีการเขียน"
#: frappe/core/doctype/doctype/doctype.py:1822
msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้เนื่องจาก {1} ไม่สามารถนำเข้าได้"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
-msgstr ""
+msgstr "{0}: ล้มเหลวในการแนบเอกสารที่เกิดซ้ำใหม่ เพื่อเปิดใช้งานการแนบเอกสารในอีเมลแจ้งเตือนการทำซ้ำอัตโนมัติ โปรดเปิดใช้งาน {1} ในการตั้งค่าการพิมพ์"
#: frappe/core/doctype/doctype/doctype.py:1426
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
-msgstr ""
+msgstr "{0}: ฟิลด์ '{1}' ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำได้เนื่องจากมีค่าที่ซ้ำกัน"
#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr ""
+msgstr "{0}: ฟิลด์ {1} ในแถว {2} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น"
#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr ""
+msgstr "{0}: ฟิลด์ {1} ประเภท {2} ไม่สามารถบังคับได้"
#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
-msgstr ""
+msgstr "{0}: ชื่อฟิลด์ {1} ปรากฏหลายครั้งในแถว {2}"
#: frappe/core/doctype/doctype/doctype.py:1413
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
-msgstr ""
+msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถเป็นค่าที่ไม่ซ้ำได้"
#: frappe/core/doctype/doctype/doctype.py:1755
msgid "{0}: No basic permissions set"
-msgstr ""
+msgstr "{0}: ไม่มีการตั้งค่าสิทธิ์พื้นฐาน"
#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
-msgstr ""
+msgstr "{0}: อนุญาตให้มีกฎเพียงข้อเดียวที่มีบทบาท ระดับ และ {1} เดียวกัน"
#: frappe/core/doctype/doctype/doctype.py:1315
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
-msgstr ""
+msgstr "{0}: ตัวเลือกต้องเป็นประเภทเอกสารที่ถูกต้องสำหรับฟิลด์ {1} ในแถว {2}"
#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
-msgstr ""
+msgstr "{0}: ต้องการตัวเลือกสำหรับฟิลด์ประเภทลิงก์หรือตาราง {1} ในแถว {2}"
#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
-msgstr ""
+msgstr "{0}: ตัวเลือก {1} ต้องเหมือนกับชื่อประเภทเอกสาร {2} สำหรับฟิลด์ {3}"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "{0}: Other permission rules may also apply"
-msgstr ""
+msgstr "{0}: กฎสิทธิ์อื่น ๆ อาจมีผลบังคับใช้ด้วย"
#: frappe/core/doctype/doctype/doctype.py:1784
msgid "{0}: Permission at level 0 must be set before higher levels are set"
-msgstr ""
+msgstr "{0}: ต้องตั้งค่าสิทธิ์ที่ระดับ 0 ก่อนที่จะตั้งค่าระดับที่สูงกว่า"
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
-msgstr ""
+msgstr "{0}: คุณสามารถเพิ่มขีดจำกัดสำหรับฟิลด์ได้หากจำเป็นผ่าน {1}"
#: frappe/core/doctype/doctype/doctype.py:1268
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
-msgstr ""
+msgstr "{0}: ชื่อฟิลด์ไม่สามารถตั้งค่าเป็นคำสำรอง {1} ได้"
#: frappe/contacts/doctype/address/address.js:35
#: frappe/contacts/doctype/contact/contact.js:88
@@ -31319,51 +31319,51 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
-msgstr ""
+msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}"
#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
-msgstr ""
+msgstr "{0}: {1} เทียบกับ {2}"
#: frappe/core/doctype/doctype/doctype.py:1434
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
-msgstr ""
+msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถจัดทำดัชนีได้"
#: frappe/public/js/frappe/form/quick_entry.js:195
msgid "{1} saved"
-msgstr ""
+msgstr "{1} ถูกบันทึกแล้ว"
#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
-msgstr ""
+msgstr "คัดลอกเซลล์ {count} แล้ว"
#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
-msgstr ""
+msgstr "คัดลอกเซลล์ {count} แล้ว"
#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
-msgstr ""
+msgstr "เลือกแถว {count} แล้ว"
#: frappe/public/js/frappe/utils/datatable.js:17
msgid "{count} rows selected"
-msgstr ""
+msgstr "เลือกแถว {count} แล้ว"
#: frappe/core/doctype/doctype/doctype.py:1488
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
-msgstr ""
+msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ที่ถูกต้อง ควรเป็น {{field_name}}"
#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
-msgstr ""
+msgstr "{} เสร็จสมบูรณ์"
#: frappe/utils/data.py:2488
msgid "{} Invalid python code on line {}"
-msgstr ""
+msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}"
#: frappe/utils/data.py:2497
msgid "{} Possibly invalid python code.
{}"
-msgstr ""
+msgstr "{} โค้ด Python อาจไม่ถูกต้อง
{}"
#. Count format of shortcut in the Website Workspace
#: frappe/website/workspace/website/website.json
@@ -31372,35 +31372,35 @@ msgstr ""
#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
-msgstr ""
+msgstr "{} ไม่รองรับการล้างบันทึกอัตโนมัติ"
#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
-msgstr ""
+msgstr "ฟิลด์ {} ไม่สามารถว่างเปล่าได้"
#: frappe/email/doctype/email_account/email_account.py:223
#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
-msgstr ""
+msgstr "{} ถูกปิดใช้งาน สามารถเปิดใช้งานได้เฉพาะเมื่อเลือก {}"
#: frappe/utils/data.py:135
msgid "{} is not a valid date string."
-msgstr ""
+msgstr "{} ไม่ใช่สตริงวันที่ที่ถูกต้อง"
#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
-msgstr ""
+msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อเข้าถึงคอนโซล"
#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
-msgstr ""
+msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อกู้คืนฐานข้อมูล"
#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
-msgstr ""
+msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล"
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
msgid "← Back to upload files"
-msgstr ""
+msgstr "← กลับไปที่อัปโหลดไฟล์"
From 39c554d100c76e701822cc38c12591abdb0944d3 Mon Sep 17 00:00:00 2001
From: sokumon
{}"
msgstr ""
@@ -31450,7 +31364,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
From 1812cdb613dc20d2051c6e0023aaca1b0aca5fbd Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:30:52 +0530
Subject: [PATCH 050/211] test: improve report permission test
---
frappe/core/doctype/report/test_report.py | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/frappe/core/doctype/report/test_report.py b/frappe/core/doctype/report/test_report.py
index 73f67b044d..ef606d00cf 100644
--- a/frappe/core/doctype/report/test_report.py
+++ b/frappe/core/doctype/report/test_report.py
@@ -175,12 +175,11 @@ class TestReport(IntegrationTestCase):
)
def test_report_permissions(self):
- frappe.set_user("test@example.com")
- frappe.db.delete("Has Role", {"parent": frappe.session.user, "role": "Test Has Role"})
- frappe.db.commit()
+ # create role "Test Has Role"
if not frappe.db.exists("Role", "Test Has Role"):
frappe.get_doc({"doctype": "Role", "role_name": "Test Has Role"}).insert(ignore_permissions=True)
+ # create report "Test Report"
if not frappe.db.exists("Report", "Test Report"):
report = frappe.get_doc(
{
@@ -195,8 +194,10 @@ class TestReport(IntegrationTestCase):
else:
report = frappe.get_doc("Report", "Test Report")
- self.assertNotEqual(report.is_permitted(), True)
- frappe.set_user("Administrator")
+ with self.set_user("test@example.com"):
+ # remove role "Test Has Role" from user if found
+ frappe.db.delete("Has Role", {"parent": frappe.session.user, "role": "Test Has Role"})
+ self.assertNotEqual(report.is_permitted(), True)
def test_report_custom_permissions(self):
frappe.set_user("test@example.com")
From e01b6ff4ec64bf64e34f3e956825c09eb814d521 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:35:34 +0530
Subject: [PATCH 051/211] test: improve report custom permission test
---
frappe/core/doctype/report/test_report.py | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/frappe/core/doctype/report/test_report.py b/frappe/core/doctype/report/test_report.py
index ef606d00cf..29b22b1799 100644
--- a/frappe/core/doctype/report/test_report.py
+++ b/frappe/core/doctype/report/test_report.py
@@ -200,9 +200,10 @@ class TestReport(IntegrationTestCase):
self.assertNotEqual(report.is_permitted(), True)
def test_report_custom_permissions(self):
- frappe.set_user("test@example.com")
+ # delete custom role if exists
frappe.db.delete("Custom Role", {"report": "Test Custom Role Report"})
- frappe.db.commit() # nosemgrep
+
+ # create report if not exists
if not frappe.db.exists("Report", "Test Custom Role Report"):
report = frappe.get_doc(
{
@@ -217,8 +218,11 @@ class TestReport(IntegrationTestCase):
else:
report = frappe.get_doc("Report", "Test Custom Role Report")
- self.assertEqual(report.is_permitted(), True)
+ # check report is permitted without custom role created
+ with self.set_user("test@example.com"):
+ self.assertEqual(report.is_permitted(), True)
+ # create custom role for report
frappe.get_doc(
{
"doctype": "Custom Role",
@@ -228,8 +232,9 @@ class TestReport(IntegrationTestCase):
}
).insert(ignore_permissions=True)
- self.assertNotEqual(report.is_permitted(), True)
- frappe.set_user("Administrator")
+ # check report is not permitted with custom role created
+ with self.set_user("test@example.com"):
+ self.assertNotEqual(report.is_permitted(), True)
# test for the `_format` method if report data doesn't have sort_by parameter
def test_format_method(self):
From 35581eb50bd41a2fdc66490cabe5a2660823a862 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:44:09 +0530
Subject: [PATCH 052/211] test: fix test for nested permission
---
frappe/tests/test_db_query.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/frappe/tests/test_db_query.py b/frappe/tests/test_db_query.py
index f04cdd5190..aaa6d79c6d 100644
--- a/frappe/tests/test_db_query.py
+++ b/frappe/tests/test_db_query.py
@@ -566,8 +566,8 @@ class TestDBQuery(IntegrationTestCase):
# to avoid if_owner filter
update("Nested DocType", "All", 0, "if_owner", 0)
- frappe.set_user("test2@example.com")
- data = DatabaseQuery("Nested DocType").execute()
+ with self.set_user("test2@example.com"):
+ data = DatabaseQuery("Nested DocType").execute()
# children of root folder (for which we added user permission) should be accessible
self.assertTrue({"name": "Level 2 A"} in data)
@@ -577,7 +577,6 @@ class TestDBQuery(IntegrationTestCase):
self.assertFalse({"name": "Level 1 B"} in data)
self.assertFalse({"name": "Level 2 B"} in data)
update("Nested DocType", "All", 0, "if_owner", 1)
- frappe.set_user("Administrator")
def test_filter_sanitizer(self):
self.assertRaises(
From 547bc6b7f56b52e2992b8a0e1d91ee068994847b Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:47:03 +0530
Subject: [PATCH 053/211] test: fix `test_if_owner_permission_on_delete`
---
frappe/tests/test_permissions.py | 47 ++++++++++++++++----------------
1 file changed, 23 insertions(+), 24 deletions(-)
diff --git a/frappe/tests/test_permissions.py b/frappe/tests/test_permissions.py
index 7bbc17aaea..df802f8d07 100644
--- a/frappe/tests/test_permissions.py
+++ b/frappe/tests/test_permissions.py
@@ -594,36 +594,35 @@ class TestPermissions(IntegrationTestCase):
frappe.clear_cache(doctype="Blog Post")
- frappe.set_user("test2@example.com")
+ with self.set_user("test2@example.com"):
+ doc = frappe.get_doc(
+ {
+ "doctype": "Blog Post",
+ "blog_category": "-test-blog-category",
+ "blogger": "_Test Blogger 1",
+ "title": "_Test Blog Post Title New 1",
+ "content": "_Test Blog Post Content",
+ }
+ )
- doc = frappe.get_doc(
- {
- "doctype": "Blog Post",
- "blog_category": "-test-blog-category",
- "blogger": "_Test Blogger 1",
- "title": "_Test Blog Post Title New 1",
- "content": "_Test Blog Post Content",
- }
- )
+ doc.insert()
- doc.insert()
+ getdoc("Blog Post", doc.name)
+ doclist = [d.name for d in frappe.response.docs]
+ self.assertTrue(doc.name in doclist)
- getdoc("Blog Post", doc.name)
- doclist = [d.name for d in frappe.response.docs]
- self.assertTrue(doc.name in doclist)
+ with self.set_user("testperm@example.com"):
+ # Website Manager able to read
+ getdoc("Blog Post", doc.name)
+ doclist = [d.name for d in frappe.response.docs]
+ self.assertTrue(doc.name in doclist)
- frappe.set_user("testperm@example.com")
+ # Website Manager should not be able to delete
+ self.assertRaises(frappe.PermissionError, frappe.delete_doc, "Blog Post", doc.name)
- # Website Manager able to read
- getdoc("Blog Post", doc.name)
- doclist = [d.name for d in frappe.response.docs]
- self.assertTrue(doc.name in doclist)
+ with self.set_user("test2@example.com"):
+ frappe.delete_doc("Blog Post", "-test-blog-post-title-new-1")
- # Website Manager should not be able to delete
- self.assertRaises(frappe.PermissionError, frappe.delete_doc, "Blog Post", doc.name)
-
- frappe.set_user("test2@example.com")
- frappe.delete_doc("Blog Post", "-test-blog-post-title-new-1")
update("Blog Post", "Website Manager", 0, "delete", 1, 1)
def test_clear_user_permissions(self):
From 8b13971ab28912f3bd7232594e89448d2a277023 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:51:26 +0530
Subject: [PATCH 054/211] test: use contextmanager to set user
---
frappe/tests/test_query.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 4656853a1e..c8e7f93a9c 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -868,8 +868,8 @@ class TestQuery(IntegrationTestCase):
test2user = frappe.get_doc("User", "test2@example.com")
test2user.add_roles("Blogger")
- frappe.set_user("test2@example.com")
- data = frappe.qb.get_query("Nested DocType", ignore_permissions=False).run(as_dict=1)
+ with self.set_user("test2@example.com"):
+ data = frappe.qb.get_query("Nested DocType", ignore_permissions=False).run(as_dict=1)
# Children of the permitted node should be accessible
self.assertTrue(any(d.name == "Level 2 A" for d in data))
@@ -879,7 +879,6 @@ class TestQuery(IntegrationTestCase):
self.assertFalse(any(d.name == "Level 2 B" for d in data))
update("Nested DocType", "All", 0, "if_owner", 1) # Reset to default
- frappe.set_user("Administrator")
def test_is_set_is_not_set(self):
"""Test is set and is not set filters"""
From d190e07cfa49cea3625a6b4b025b1c797f7e769b Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Sat, 28 Jun 2025 06:45:52 +0000
Subject: [PATCH 055/211] fix: restore earlier werkzeug request default
(#33145)
---
frappe/app.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/frappe/app.py b/frappe/app.py
index e3934314ba..81194d7606 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -66,6 +66,11 @@ import frappe.website.website_generator # web page doctypes
# end: module pre-loading
+# better werkzeug default
+# this is necessary because frappe desk sends most requests as form data
+# and some of them can exceed werkzeug's default limit of 500kb
+Request.max_form_memory_size = None
+
def after_response_wrapper(app):
"""Wrap a WSGI application to call after_response hooks after we have responded.
From 4d8fdb93f1b5865a29666d5b1a6df8cf1e0fbd31 Mon Sep 17 00:00:00 2001
From: Ejaaz Khan
Fieldname is limited to 64 characters ({0})"
@@ -9852,7 +9840,7 @@ msgstr "أسم الحقل الذي سيكون DOCTYPE لهذا الحقل الا
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}"
@@ -9904,6 +9892,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10069,6 +10061,14 @@ msgstr "اسم الفلتر"
msgid "Filter Values"
msgstr "قيم التصفية"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10312,10 +10312,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr "الحقول التالية والقيم المفقودة:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10732,10 +10728,8 @@ msgid "Friday"
msgstr "الجمعة"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "من"
@@ -10816,10 +10810,14 @@ msgstr "وظيفة"
msgid "Function Based On"
msgstr "وظيفة على أساس"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة '"
@@ -11301,6 +11299,10 @@ msgstr "مجموعة حسب النوع"
msgid "Group By field is required to create a dashboard chart"
msgstr "حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "عقدة المجموعة"
@@ -11349,7 +11351,6 @@ msgstr "HH: MM: SS"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11363,7 +11364,6 @@ msgstr "HH: MM: SS"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11872,6 +11872,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "حد المعدل بالساعة لإنشاء روابط إعادة تعيين كلمة المرور"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "ساعات"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12637,11 +12642,11 @@ msgstr "مستخدم غير صحيح أو كلمة مرور"
msgid "Incorrect Verification code"
msgstr "رمز التحقق غير صحيح"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12793,11 +12798,11 @@ msgstr "تعليمات"
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "عدم كفاية الإذن {0}"
@@ -12947,7 +12952,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr "بيانات الاعتماد غير صالحة"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "تاريخ غير صالح"
@@ -12955,7 +12960,7 @@ msgstr "تاريخ غير صالح"
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12967,6 +12972,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13031,7 +13041,7 @@ msgstr ""
msgid "Invalid Password"
msgstr "رمز مرور خاطئ"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13075,10 +13085,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "عمود غير صالح"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13091,10 +13129,26 @@ msgstr "تم تعيين تعبير غير صالح في عامل التصفية
msgid "Invalid expression set in filter {0} ({1})"
msgstr "تم تعيين تعبير غير صالح في عامل التصفية {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "اسم الحقل غير صالح {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي"
@@ -13103,11 +13157,26 @@ msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي"
msgid "Invalid file path: {0}"
msgstr "مسار الملف غير صالح: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "مرشح غير صالح: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13129,10 +13198,22 @@ msgstr "محتوى غير صالح أو تالف للاستيراد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "ملف نموذج غير صالح للاستيراد"
@@ -13574,11 +13655,11 @@ msgstr "عمود لوح كانبان"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "اسم لوح كانبان"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14290,6 +14371,10 @@ msgstr "اعجابات"
msgid "Limit"
msgstr "حد"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14553,6 +14638,7 @@ msgid "Load Balancing"
msgstr "تحميل موازنة"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15071,11 +15157,9 @@ msgstr "علامة كدعاية"
msgid "Mark as Unread"
msgstr "حدده كغير مقروء"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15264,7 +15348,6 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15277,7 +15360,6 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15292,16 +15374,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "رسالة"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "الرسالة (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "الرسالة (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15425,7 +15497,7 @@ msgstr "عنوان Meta لـ SEO"
msgid "Method"
msgstr "طريقة"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15475,6 +15547,11 @@ msgstr "الحد الأدنى من كلمة المرور"
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "الدقائق"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15870,7 +15947,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "يجب أن يكون من نوع "إرفاق صورة""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير."
@@ -16058,6 +16135,10 @@ msgstr ""
msgid "Negative Value"
msgstr "قيمة سالبة"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "خطأ مجموعة متداخلة . يرجى الاتصال بمدير البرنامج."
@@ -16140,7 +16221,7 @@ msgstr "حدث جديد"
msgid "New Folder"
msgstr "ملف جديد"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "مجلس كانبان جديدة"
@@ -16284,48 +16365,13 @@ msgstr "تتوفر {} إصدارات جديدة للتطبيقات التالي
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "النشرة الإخبارية"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "البريد الإلكتروني المجموعة البريدية"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "مدير النشرة الإخبارية"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "الرسالة الإخبارية قد تم إرسالها من قبل"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "يجب أن تحتوي الرسالة الإخبارية على متلقي واحد على الأقل"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "النشرات الإخبارية"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16587,7 +16633,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16615,10 +16661,6 @@ msgstr "لا تنبيهات لهذا اليوم"
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "لا توجد تغييرات في المستند"
@@ -16655,7 +16697,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr "لا جهات اتصال مرتبطة بالمستند"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "لا توجد بيانات للتصدير"
@@ -16675,7 +16717,7 @@ msgstr "لا يوجد حساب بريد إلكتروني مرتبط بالمست
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16734,7 +16776,7 @@ msgstr "عدد الصفوف (بحد أقصى 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "لا يوجد صلاحية لـ {0}
No permission for {0}"
@@ -16862,7 +16904,7 @@ msgstr "ليس من أحفاد"
msgid "Not Equals"
msgstr "لا تساوي"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "لم يتم العثور على"
@@ -16888,7 +16930,7 @@ msgstr "غير مرتبط بأي سجل"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16897,7 +16939,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "لا يسمح"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16925,7 +16967,6 @@ msgstr "لا أرى"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "لا ترسل"
@@ -16958,7 +16999,7 @@ msgstr ""
msgid "Not active"
msgstr "غير نشطة"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "غير مسموح لـ {0}: {1}"
@@ -17392,6 +17433,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "كلمة المرور القديمة"
@@ -17565,7 +17610,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17737,7 +17782,7 @@ msgstr "افتتح"
msgid "Operation"
msgstr "عملية"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "يجب أن يكون المشغل واحدا من {0}"
@@ -17836,6 +17881,10 @@ msgstr ""
msgid "Order"
msgstr "طلب"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18231,7 +18280,7 @@ msgstr "الأصل هو اسم المستند الذي ستتم إضافة ال
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18353,10 +18402,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr "كلمة المرور غير مطابقة!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "لصق"
@@ -18502,7 +18547,7 @@ msgstr "إرسال دائم {0} ؟"
msgid "Permanently delete {0}?"
msgstr "حذف بشكل دائم {0} ؟"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "خطأ في الإذن"
@@ -18654,7 +18699,7 @@ msgstr "هاتف"
msgid "Phone No."
msgstr "رقم الهاتف"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18927,10 +18972,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr "الرجاء حفظ قبل إرفاق."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "يرجى حفظ النشرة الإخبارية قبل إرسالها"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "الرجاء حفظ المستند قبل التعيين"
@@ -18963,7 +19004,7 @@ msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18979,7 +19020,7 @@ msgstr "يرجى تحديد ملف أو URL"
msgid "Please select a valid csv file with data"
msgstr "يرجى تحديد ملف CSV ساري المفعول مع البيانات"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "الرجاء تحديد مرشح تاريخ صالح"
@@ -19057,7 +19098,7 @@ msgstr ""
msgid "Please specify"
msgstr "رجاء حدد"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19094,10 +19135,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19191,6 +19228,10 @@ msgstr "مشاركات {0}"
msgid "Posts filed under {0}"
msgstr "الوظائف المقدمة في إطار {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19250,7 +19291,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "إعداد تقرير المستخدم"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19279,8 +19320,6 @@ msgstr "اضغط على إنتر للحفظ"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19668,7 +19707,7 @@ msgstr ""
msgid "Progress"
msgstr "تقدم"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "مشروع"
@@ -19763,14 +19802,7 @@ msgstr ""
msgid "Publish"
msgstr "نشر"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19778,7 +19810,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19953,7 +19984,7 @@ msgstr "الاستعلام عن"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19999,7 +20030,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "قائمة الانتظار"
@@ -20022,19 +20052,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr "قائمة الانتظار للنسخ الاحتياطي. سوف تتلقى رسالة بريد إلكتروني مع رابط التحميل"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20235,7 +20257,7 @@ msgstr "قراءة من قبل المتلقي"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21102,7 +21124,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "تم تحديث التقرير بنجاح"
@@ -21123,7 +21145,7 @@ msgstr "تقرير {0}"
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "تقرير غير مفعلة {0}"
@@ -21456,10 +21478,8 @@ msgstr "سحب"
msgid "Revoked"
msgstr "إلغاء"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21670,7 +21690,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21684,7 +21703,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21802,7 +21820,7 @@ msgstr "قاعدة"
msgid "Rule Conditions"
msgstr "شروط القاعدة"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21991,11 +22009,11 @@ msgstr "السبت"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22087,32 +22105,17 @@ msgstr "مسح رمز الاستجابة السريعة وأدخل رمز الن
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "من المقرر"
@@ -22146,17 +22149,6 @@ msgstr "نوع الوظيفة المجدولة"
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "من المقرر أن ترسل"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "تم تحديث التنفيذ المجدول للنص {0}"
@@ -22368,6 +22360,11 @@ msgstr "بحث..."
msgid "Searching ..."
msgstr "جاري البحث ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22757,9 +22754,7 @@ msgstr "حدد {0}"
msgid "Self approval is not allowed"
msgstr "الموافقة الذاتية غير مسموح بها"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "إرسال"
@@ -22790,11 +22785,6 @@ msgstr "إرسال تنبيه في"
msgid "Send Email Alert"
msgstr "إرسال تنبيه عبر البريد الإلكتروني"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22852,38 +22842,16 @@ msgstr "إرسال مقروءة إيصال"
msgid "Send System Notification"
msgstr "إرسال إشعار النظام"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "أرسل إلى جميع المعينين"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "إرسال رابط إلغاء الإشتراك"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "إرسال رسالة ترحيبية"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22931,10 +22899,6 @@ msgstr ""
msgid "Send me a copy"
msgstr "أرسل لي نسخة"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22950,19 +22914,15 @@ msgstr "إرسال رسالة إلغاء الاشتراك في البريد ال
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "مرسل"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "البريد الإلكتروني المرسل"
@@ -22979,9 +22939,7 @@ msgid "Sender Field should have Email in options"
msgstr "يجب أن يحتوي حقل المرسل على البريد الإلكتروني في الخيارات"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23001,18 +22959,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "إرسال"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23020,8 +22969,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "أرسلت"
@@ -23091,7 +23038,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}"
msgid "Server Action"
msgstr "عمل الخادم"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطأ في الخادم"
@@ -23110,7 +23057,7 @@ msgstr "خادم IP"
msgid "Server Script"
msgstr "خادم النصي"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23149,15 +23096,15 @@ msgstr "إعدادات الجلسة الافتراضية"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "الجلسة الافتراضية"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "تم حفظ الإعدادات الافتراضية للجلسة"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "انتهت الجلسة"
@@ -23387,7 +23334,7 @@ msgstr "إعداد النظام الخاص بك"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24470,7 +24417,6 @@ msgstr "الفاصل الزمني للإحصائيات"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24495,7 +24441,6 @@ msgstr "الفاصل الزمني للإحصائيات"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24636,8 +24581,6 @@ msgstr "مجال فرعي"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24646,7 +24589,6 @@ msgstr "مجال فرعي"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25017,7 +24959,7 @@ msgstr "المزامنة"
msgid "Syncing {0} of {1}"
msgstr "مزامنة {0} من {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25324,7 +25266,7 @@ msgstr ""
msgid "Table updated"
msgstr "الجدول محدث"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "جدول {0} لا يمكن أن يكون فارغا"
@@ -25451,10 +25393,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "تم إرسال بريد إلكتروني تجريبي إلى {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "إختبار_المجلد"
@@ -25520,10 +25458,6 @@ msgstr "شكرا لك على بريدك الالكتروني"
msgid "Thank you for your feedback!"
msgstr "شكرا لك على ملاحظاتك!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "شكرا لك على اهتمامك في الاشتراك في تحديثاتنا"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25712,7 +25646,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "المصدر الذي تبحث عنه غير متاح\\n
\\nThe resource you are looking for is not available"
@@ -25724,7 +25658,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25877,7 +25811,7 @@ msgstr "إثبات أصالة الطرف الثالث"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "تم تعطيل هذه العملات . تمكين لاستخدامها في المعاملات"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "وهذا المجلس كانبان يكون القطاع الخاص"
@@ -25901,7 +25835,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "هذا الإجراء مسموح به فقط لـ {}"
@@ -26061,14 +25995,6 @@ msgstr "قد تتم طباعة هذا على صفحات متعددة"
msgid "This month"
msgstr "هذا الشهر"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26181,7 +26107,6 @@ msgstr "الخميس"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "زمن"
@@ -26407,10 +26332,8 @@ msgid "Title of the page"
msgstr "عنوان الصفحة"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "إلى"
@@ -26687,7 +26610,7 @@ msgstr ""
msgid "Topic"
msgstr "موضوع"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26715,16 +26638,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "إجمالي عدد المشتركين"
@@ -26733,11 +26648,6 @@ msgstr "إجمالي عدد المشتركين"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27134,23 +27044,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "عنوان URL للانتقال إليه عند النقر فوق صورة عرض الشرائح"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27200,7 +27104,7 @@ msgstr "تعذر كتابة تنسيق الملف {0}"
msgid "Unassign Condition"
msgstr "إلغاء تعيين الشرط"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27216,6 +27120,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27248,7 +27156,7 @@ msgstr "غير معروف"
msgid "Unknown Column: {0}"
msgstr "عمود غير معروف: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27281,7 +27189,7 @@ msgstr "غير مقروء"
msgid "Unread Notification Sent"
msgstr "إرسال الإشعارات غير المقروءة"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27295,7 +27203,7 @@ msgstr ""
msgid "Unshared"
msgstr "غير مشارك"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "إلغاء الاشتراك"
@@ -27319,6 +27227,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "إلغاء اشتراكك"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "عمود بلا عنوان"
@@ -27441,7 +27354,7 @@ msgstr "تم التحديث إلى إصدار جديد 🎉"
msgid "Updated successfully"
msgstr "تم التحديث بنجاح"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "يتم التحديث"
@@ -28176,7 +28089,7 @@ msgstr "قيمة كبيرة جدا"
msgid "Value {0} missing for {1}"
msgstr "القيمة {0} مفقودة لـ {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "يجب أن تكون القيمة {0} بتنسيق المدة الصالح: dhms"
@@ -28601,7 +28514,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28609,9 +28521,7 @@ msgid "Website"
msgstr "الموقع"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "تحليلات الموقع"
@@ -29047,7 +28957,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29270,11 +29180,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "لا يسمح لك بالوصول إلى هذا السجل {0} لأنه مرتبط بـ {1} '{2}' في الحقل {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29297,7 +29207,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "غير مسموح لك بتصدير النمط {}"
@@ -29325,7 +29235,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "لا يسمح لك بالوصول إلى هذه الصفحة."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29420,7 +29330,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "يمكنك محاولة تغيير عوامل تصفية تقريرك."
@@ -29497,11 +29407,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29509,7 +29423,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr "ليس لديك أذونات لإلغاء كافة المستندات المرتبطة."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "ليس لديك حق الوصول إلى التقرير: {0}"
@@ -29517,11 +29431,11 @@ msgstr "ليس لديك حق الوصول إلى التقرير: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا الملف"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "ليس لديك إذن للحصول على تقرير عن: {0}"
@@ -29614,7 +29528,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "عليك أن تكون في وضع المطور لتعديل نموذج ويب قياسي"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية."
@@ -29780,7 +29694,7 @@ msgstr "اسم المؤسسة وعنوانك لتذييل البريد الإل
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة."
@@ -29792,7 +29706,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "صفر"
@@ -29839,7 +29753,7 @@ msgstr "أدخل_بعد"
msgid "amend"
msgstr "تعديل"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "و"
@@ -29896,7 +29810,7 @@ msgstr "إنشاء"
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30011,7 +29925,7 @@ msgstr "البريد الإلكتروني"
msgid "email inbox"
msgstr "البريد الوارد"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "فارغة"
@@ -30063,7 +29977,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30097,7 +30011,7 @@ msgstr ""
msgid "just now"
msgstr "الآن فقط"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30137,7 +30051,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30327,7 +30241,7 @@ msgstr "استجابة"
msgid "restored {0} as {1}"
msgstr "استعادة {0} ك {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30662,7 +30576,7 @@ msgstr "{0} غير مشترك أصلاً"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} تم إلغاء الاشتراك في {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} و {1}"
@@ -30768,6 +30682,10 @@ msgstr "{0} غير موجود في الصف {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "لا يمكن أن يحتوي اسم الحقل {0} على أحرف خاصة مثل {1}"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30788,10 +30706,6 @@ msgstr "{0} ح"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} قام بالفعل بتعيين القيمة الافتراضية لـ {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} تركت محادثة في {1} {2}"
@@ -30862,6 +30776,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} إلزامي"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30883,7 +30801,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ليس نوع DocType صالحًا للارتباط الديناميكي"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Email Address"
@@ -30891,11 +30809,11 @@ msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Emai
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} ليس اسمًا صالحًا"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} ليس رقم هاتف صالحًا"
@@ -30903,11 +30821,11 @@ msgstr "{0} ليس رقم هاتف صالحًا"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ليست حالة سير عمل صالحة. يرجى تحديث سير العمل والمحاولة مرة أخرى."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30995,23 +30913,23 @@ msgstr "قبل {0} دقائق"
msgid "{0} months ago"
msgstr "قبل {0} أشهر"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} يجب أن يكون بعد {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} يجب أن يكون واحدا من {1}"
@@ -31023,7 +30941,7 @@ msgstr "يجب تعيين {0} أولا"
msgid "{0} must be unique"
msgstr "{0} يجب أن تكون فريدة من نوعها"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31052,16 +30970,12 @@ msgstr "{0} من {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} أو {1}"
@@ -31098,11 +31012,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "تم حفظ {0} بنجاح"
@@ -31214,7 +31128,7 @@ msgstr "{0} {1} غير موجود ، حدد هدفا جديدا لدمج"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} غير موجود"
@@ -31367,11 +31281,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na
msgid "{} Complete"
msgstr "{} اكتمال"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31393,7 +31307,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} ليست سلسلة تاريخ صالحة."
diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po
index 252770ba90..62129430b8 100644
--- a/frappe/locale/bs.po
+++ b/frappe/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'U Prikazu Liste' nije dozvoljeno za tip {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primaoci' nisu navedeni"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -1034,7 +1034,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1673,6 +1673,14 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr "Upozorenja i Obavještenja"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr "Alias ne može biti SQL ključna riječ: {0}"
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr "Alias mora biti niz"
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1713,7 +1721,6 @@ msgstr "Poravnaj Vrijednost"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2159,7 +2166,7 @@ msgstr "Izmjena nije Dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila Izmjene Imenovanje ažurirana"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije"
@@ -2277,7 +2284,7 @@ msgstr "Naziv Aplikacije"
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2491,10 +2498,6 @@ msgstr "Jeste li sigurni da želite poništiti sve prilagodbe?"
msgid "Are you sure you want to save this document?"
msgstr "Jeste li sigurni da želite spremiti ovaj dokument?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Jeste li sigurni da sada želite poslati ovaj bilten?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2748,9 +2751,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Priloženo Imenu mora biti niz ili cijeli broj"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Prilog"
@@ -2777,10 +2778,7 @@ msgid "Attachment Removed"
msgstr "Prilog Uklonjen"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2798,11 +2796,6 @@ msgstr "Pokušaj pokretanja QZ Tray..."
msgid "Attribution"
msgstr "Pripisivanje"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Publika"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3229,7 +3222,7 @@ msgstr "Pozadinska Slika"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Poslovi u Pozadini"
@@ -3957,9 +3950,7 @@ msgstr "Naziv Povratnog Poziva"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4045,10 +4036,6 @@ msgstr "Otkaži"
msgid "Cancel All Documents"
msgstr "Otkaži Sve Dokumente"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Otkaži Planiranje"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4342,7 +4329,7 @@ msgstr "Opis Kategorije"
msgid "Category Name"
msgstr "Naziv Kategorije"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4511,10 +4498,6 @@ msgstr "Provjeri"
msgid "Check Request URL"
msgstr "Provjeri URL zahtjeva"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Provjeri neispravne veze"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Označite kolone za odabir, povucite da postavite redoslijed."
@@ -4538,10 +4521,6 @@ msgstr "Označite ovo ako želite prisiliti korisnika da odabere seriju prije sp
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Označite za prikaz pune numeričke vrijednosti (npr. 1.234.567 umjesto 1,2 miliona)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Provjera neispravnih veza..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Provjerava se samo trenutak"
@@ -4588,6 +4567,10 @@ msgstr "Podređena tabela {0} za polje {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr "Podređena polja upita za '{0}' moraju biti lista ili torka."
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Odaberi postojeću karticu ili kreiraj novu karticu"
@@ -4677,10 +4660,6 @@ msgstr "Klikni Prilagodi kako biste dodali svoj prvi vidžet"
msgid "Click here"
msgstr "Klikni ovdje"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Klikni ovdje za potvrdu"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klikni na datoteku da biste je odabrali."
@@ -5022,7 +5001,7 @@ msgstr "Kolone"
msgid "Columns / Fields"
msgstr "Kolone / Polja"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Kolone zasnovane na"
@@ -5344,17 +5323,12 @@ msgstr "Potvrdi Lozinku"
msgid "Confirm Request"
msgstr "Potvrdi Zahtjev"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Potvrdi vašu e-poštu"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Šablon e-pošte Potvrde"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Potvrđeno"
@@ -5485,8 +5459,6 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5494,7 +5466,6 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5519,10 +5490,8 @@ msgstr "Sadržaj (Markdown)"
msgid "Content Hash"
msgstr "Hash Sadržaja"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5628,6 +5597,10 @@ msgstr "Nije moguće pronaći {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nije moguće mapirati kolonu {0} na polje {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr "Nije moguće parsirati polje: {0}"
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Nije moguće pokrenuti: "
@@ -5683,7 +5656,7 @@ msgstr "Brojač"
msgid "Country"
msgstr "Zemlja"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Kod Zemlje Obavezan"
@@ -5814,11 +5787,6 @@ msgstr "+ {0}"
msgid "Create a {0} Account"
msgstr "+ {0} Račun"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Kreiraj i šalji e-poštu određenoj grupi pretplatnika periodično."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Kreiraj ili Uredi Format Ispisa"
@@ -6167,6 +6135,10 @@ msgstr "Prilagođeni Prijevod"
msgid "Custom field renamed to {0} successfully."
msgstr "Prilagođeno polje uspješno je preimenovano u {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili None, dobijeno {1}"
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6224,7 +6196,7 @@ msgstr "Prilagodi nadzornu ploču"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Prilagodi Formu"
@@ -6517,7 +6489,6 @@ msgstr "Verzija Baze Podataka"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6581,6 +6552,11 @@ msgstr "Dan"
msgid "Day of Week"
msgstr "Dan u Sedmici"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dana"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6848,6 +6824,7 @@ msgstr "Odgođeno"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7160,6 +7137,7 @@ msgstr "Tema Radne Površine"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7916,7 +7894,7 @@ msgid "Document Types and Permissions"
msgstr "Tipovi Dokumenata i Dozvole"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument Otključan"
@@ -8534,7 +8512,6 @@ msgstr "Birač Elementa"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8628,11 +8605,9 @@ msgstr "Adresa Podnožju e-pošte"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Grupa e-pošte"
@@ -8705,18 +8680,11 @@ msgstr "Broj Pokušaja e-pošte"
msgid "Email Rule"
msgstr "Pravilo e-pošte"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-pošta Poslana"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-pošta poslana"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8823,10 +8791,18 @@ msgstr "E-pošta će biti poslane sa sljedećim mogućim radnjama radnog toka"
msgid "Embed code copied"
msgstr "Kod Ugradnje kopiran"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr "Prazan pseudonim nije dozvoljen"
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Prazna kolona"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr "Prazni niz argumenti nisu dozvoljeni"
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9291,6 +9267,14 @@ msgstr "Greška u Obavještenju"
msgid "Error in print format on line {0}: {1}"
msgstr "Greška u formatu za ispisivanje na liniji {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr "Greška u {0}.get_list: {1}"
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr "Greška pri parsiranju ugniježđenih filtera: {0}"
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Greška prilikom povezivanja na račun e-pošte {0}"
@@ -9487,6 +9471,10 @@ msgstr "Proširi"
msgid "Expand All"
msgstr "Rasklopi Sve"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Eksperimentalno"
@@ -10018,7 +10006,7 @@ msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
@@ -10034,7 +10022,7 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze."
msgid "Fieldname {0} appears multiple times"
msgstr "Ime polja {0} pojavljuje se više puta"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
@@ -10086,6 +10074,10 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija"
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10251,6 +10243,14 @@ msgstr "Filter Naziv"
msgid "Filter Values"
msgstr "Filter Vrijednosti"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr "Nedostaje uslov filtera nakon operatora: {0}"
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr "Polja filtera ne mogu sadržavati povratne crte (`)."
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filtriraj..."
@@ -10494,10 +10494,6 @@ msgstr "Sljedeća polja nemaju vrijednosti"
msgid "Following fields have missing values:"
msgstr "Sljedeća polja nemaju vrijednosti:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Sljedeće veze su prekinute u sadržaju e-pošte: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10915,10 +10911,8 @@ msgid "Friday"
msgstr "Petak"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Od"
@@ -10999,10 +10993,14 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije dat"
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Podređeni članovi se mogu kreirati samo pod članovima tipa 'Grupa'"
@@ -11484,6 +11482,10 @@ msgstr "Grupiši Po Tipu"
msgid "Group By field is required to create a dashboard chart"
msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr "Grupiraj Po mora biti niz"
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grupa"
@@ -11532,7 +11534,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11546,7 +11547,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12055,6 +12055,11 @@ msgstr "Satno Održavanje"
msgid "Hourly rate limit for generating password reset links"
msgstr "Broj veza koji se mogu kreirati po satu za poništavanje lozinke"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Sati"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12820,11 +12825,11 @@ msgstr "Netačan korisnik ili lozinka"
msgid "Incorrect Verification code"
msgstr "Netačan Verifikacioni Kod"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Netačna vrijednost u redu {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Netačna vrijednost:"
@@ -12976,11 +12981,11 @@ msgstr "Instrukcije"
msgid "Instructions Emailed"
msgstr "Instrukcije Poslane e-poštom"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan Nivo Dozvola za {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljne Dozvole za {0}"
@@ -13130,7 +13135,7 @@ msgstr "Nevažeći Uslov: {}"
msgid "Invalid Credentials"
msgstr "Nevažeći Podaci"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Nevažeći Datum"
@@ -13138,7 +13143,7 @@ msgstr "Nevažeći Datum"
msgid "Invalid DocType"
msgstr "Nevažeći DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Nevažeći DocType: {0}"
@@ -13150,6 +13155,11 @@ msgstr "Nevažeći Naziv Polja"
msgid "Invalid File URL"
msgstr "Nevažeći URL Datoteke"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr "Nevažeći Filter"
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Nevažeći Format Filtera za polje {0} tipa {1}. Pokušajte koristiti ikonu filtera na polju da ga ispravno postavite"
@@ -13214,7 +13224,7 @@ msgstr "Nevažeći Parametri."
msgid "Invalid Password"
msgstr "Nevažeća Lozinka"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Nevažeći Broj Telefona"
@@ -13258,10 +13268,38 @@ msgstr "Nevažeća Tajna Webhooka"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator."
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodni niz literali ili jednostavna imena polja."
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr "Nevažeći tip argumenta: {0}. Dozvoljeni su samo nizovi, brojevi i None."
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr "Nevažeći znakovi u nazivu polja: {0}. Dozvoljeni su samo slova, brojevi i podvlake."
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr "Nevažeći znakovi u nazivu tabele: {0}"
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Nevažeća kolona"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr "Nevažeći tip uslova u ugniježđenim filterima: {0}"
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'."
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13274,10 +13312,26 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, sa povratnim ukrštanjem, kvalifikovani tabelom, aliasirani ili sa '*'."
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'."
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja."
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr "Nevažeći tip polja: {0}"
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu"
@@ -13286,11 +13340,26 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu"
msgid "Invalid file path: {0}"
msgstr "Nevažeći put datoteke: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka."
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'."
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None."
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr "Nevažeći format rječnika funkcija"
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13312,10 +13381,22 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahtjeva"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr "Nevažeći format jednostavnog filtera: {0}"
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka."
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr "Nevažeći format niza literala: {0}"
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Nevažeća datoteka šablona za uvoz"
@@ -13757,11 +13838,11 @@ msgstr "Kolona Oglasne Table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Naziv Oglasne Table"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Postavke Oglasne Table"
@@ -14473,6 +14554,10 @@ msgstr "Lajkova"
msgid "Limit"
msgstr "Ograniči"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "Granica mora biti cijeli broj koji nije negativan"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14736,6 +14821,7 @@ msgid "Load Balancing"
msgstr "Load Balancing"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15254,11 +15340,9 @@ msgstr "Označi kao Neželjenu Poštu"
msgid "Mark as Unread"
msgstr "Označi kao Nepročitano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15447,7 +15531,6 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15460,7 +15543,6 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15475,16 +15557,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Poruka"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Poruka (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Poruka (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15608,7 +15680,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Metoda nije Dozvoljena"
@@ -15658,6 +15730,11 @@ msgstr "Minimalna Vrijdnost Lozinke"
msgid "Minor"
msgstr "Manja"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minuta"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16053,7 +16130,7 @@ msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za k
msgid "Must be of type \"Attach Image\""
msgstr "Mora biti tipa \"Priloži Sliku\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Mora imati dozvolu za pristup ovom izvještaju."
@@ -16243,6 +16320,10 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r
msgid "Negative Value"
msgstr "Negativna Vrijednost"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr "Ugniježđeni filteri moraju biti dati kao lista ili torka."
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora."
@@ -16325,7 +16406,7 @@ msgstr "Novi Događaj"
msgid "New Folder"
msgstr "Nova Mapa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nova Oglasna Tabla"
@@ -16469,48 +16550,13 @@ msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije"
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Bilten"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Prilog Biltena"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Grupa e-pošte Biltena"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Upravitelj Biltena"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Bilten je već poslan"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Bilten mora biti objavljen da biste poslali vezu za web pregled u e-mailu"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Bilten treba da ima najmanje jednog primaoca"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Bilteni"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16772,7 +16818,7 @@ msgstr "Nema Rezultata"
msgid "No Roles Specified"
msgstr "Nisu Navedene Uloge"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Nije Pronađeno Odabirno Polje"
@@ -16800,10 +16846,6 @@ msgstr "Nema upozorenja za danas"
msgid "No automatic optimization suggestions available."
msgstr "Nema dostupnih prijedloga za automatsku optimizaciju."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "U sadržaju e-pošte nisu pronađene neispravne veze"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Nema promjena u dokumentu"
@@ -16840,7 +16882,7 @@ msgstr "Još nema dodanih kontakata."
msgid "No contacts linked to document"
msgstr "Nema kontakata povezanih s dokumentom"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Nema podataka za izvoz"
@@ -16860,7 +16902,7 @@ msgstr "Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun pod Ko
msgid "No failed logs"
msgstr "Nema neuspjelih zapisa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"."
@@ -16919,7 +16961,7 @@ msgstr "Broj Redova (Max. 500)"
msgid "No of Sent SMS"
msgstr "Broj Poslanih SMS-ova"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Nema dozvole za {0}"
@@ -17047,7 +17089,7 @@ msgstr "Nisu Podređeni Od"
msgid "Not Equals"
msgstr "Nije Jednako"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije Pronađeno"
@@ -17073,7 +17115,7 @@ msgstr "Nije povezano ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Nemože se Nulirati"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17082,7 +17124,7 @@ msgstr "Nemože se Nulirati"
msgid "Not Permitted"
msgstr "Nije Dozvoljeno"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Nije Dozvoljeno čitati {0}"
@@ -17110,7 +17152,6 @@ msgstr "Nije Viđeno"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Nije Poslano"
@@ -17143,7 +17184,7 @@ msgstr "Nije važeći korisnik"
msgid "Not active"
msgstr "Nije aktivno"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
@@ -17577,6 +17618,10 @@ msgstr "Pomak X"
msgid "Offset Y"
msgstr "Pomak Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr "Pomak mora biti cijeli broj koji nije negativan"
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Stara Lozinka"
@@ -17750,7 +17795,7 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
msgid "Only allowed to export customizations in developer mode"
msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Mogu se odbaciti samo nacrti dokumenata"
@@ -17922,7 +17967,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
@@ -18021,6 +18066,10 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Red"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr "Sortiraj Po mora biti niz"
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18416,7 +18465,7 @@ msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Grupiranje roditelj-dijete ili dijete-roditelj nije dozvoljeno."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Nadređeno polje nije navedeno u {0}: {1}"
@@ -18538,10 +18587,6 @@ msgstr "Lozinke se ne podudaraju"
msgid "Passwords do not match!"
msgstr "Lozinke se ne podudaraju!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Prošli datumi nisu dozvoljeni za zakazivanje."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Zalijepi"
@@ -18687,7 +18732,7 @@ msgstr "Trajno Podnesi {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno izbriši {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Greška Dozvole"
@@ -18839,7 +18884,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Broj Telefona."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
@@ -19112,10 +19157,6 @@ msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo."
msgid "Please save before attaching."
msgstr "Spremi prije prilaganja."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Spremi bilten prije slanja"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Spremi dokument prije dodjele"
@@ -19148,7 +19189,7 @@ msgstr "Odaberi Minimalnu Vrijednost Lozinke"
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Odaberi pozivni broj zemlje za polje {1}."
@@ -19164,7 +19205,7 @@ msgstr "Odaberi datoteku ili url"
msgid "Please select a valid csv file with data"
msgstr "Odaberi važeću csv datoteku sa podacima"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Odaberi važeći filter datuma"
@@ -19242,7 +19283,7 @@ msgstr "Podesi standard odlazni račun e-pošte iz Alati > Račun e-pošte"
msgid "Please specify"
msgstr "Navedi"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Navedi važeći nadređeni DocType za {0}"
@@ -19279,10 +19320,6 @@ msgstr "Ažuriraj {} prije nego nastavite."
msgid "Please use a valid LDAP search filter"
msgstr "Koristi važeći LDAP filter za pretraživanje"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Potvrdi vašu adresu e-pošte"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key."
@@ -19376,6 +19413,10 @@ msgstr "Objave od {0}"
msgid "Posts filed under {0}"
msgstr "Objave zavedene pod {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr "Potencijalno opasan sadržaj u niz literalu: {0}"
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19435,7 +19476,7 @@ msgstr "Analitika Pripremljenog Izvještaja"
msgid "Prepared Report User"
msgstr "Korisnik Pripremljenog Izvještaja"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
@@ -19464,8 +19505,6 @@ msgstr "Pritisni Enter da spremite"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19853,7 +19892,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Napredak"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekat"
@@ -19948,14 +19987,7 @@ msgstr "Javne Datoteke (MB)"
msgid "Publish"
msgstr "Objavi"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Objavi kao web stranicu"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19963,7 +19995,6 @@ msgstr "Objavi kao web stranicu"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20138,7 +20169,7 @@ msgstr "Izvještaj Upita"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analiza Upita završena. Provjeri predložene indekse."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
@@ -20184,7 +20215,6 @@ msgstr "Red(ovi)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "U Redu"
@@ -20207,19 +20237,11 @@ msgstr "U Redu za Podnošenje. Možete pratiti napredak preko {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzimanje"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "Broj poruka e-pošte u redu čekanja {0}"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Redovi"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-pošta u redu čekanja..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "U redu za Podnošenje {0}"
@@ -20420,7 +20442,7 @@ msgstr "Čitanje Primatelja Omogućeno"
msgid "Read mode"
msgstr "Način Čitanja"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Pročitaj dokumentaciju da biste saznali više"
@@ -21287,7 +21309,7 @@ msgstr "Granica Izvještaja Dostignuta"
msgid "Report timed out."
msgstr "Izvještaj je istekao."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Izvještaj je uspješno ažuriran"
@@ -21308,7 +21330,7 @@ msgstr "Izvještaj {0}"
msgid "Report {0} deleted"
msgstr "Izvještaj {0} izbrisan"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Izvještaj {0} je onemogućen"
@@ -21641,10 +21663,8 @@ msgstr "Opozovi"
msgid "Revoked"
msgstr "Opozvano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21855,7 +21875,6 @@ msgstr "Metoda Zaokruživanja"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21869,7 +21888,6 @@ msgstr "Metoda Zaokruživanja"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21987,7 +22005,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi Pravila"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Pravilo za ovu kombinaciju tipa dokumenta, uloge, nivoa dozvole i vlasnika već postoji."
@@ -22176,11 +22194,11 @@ msgstr "Subota"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22272,32 +22290,17 @@ msgstr "Skenirajte QR Kod i unesi prikazani rezultirajući kod."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Raspored"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Zakaži Bilten"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Raspored Slanja"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Zakaži Slanje"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Zakažite slanje za kasnije"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Zakazano"
@@ -22331,17 +22334,6 @@ msgstr "Tip Zakazanog Posla"
msgid "Scheduled Jobs Logs"
msgstr "Zapisnik Zakazanih Poslova"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Zakazano Slanje"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Zakazano Slanje"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Zakazano izvršenje za skriptu {0} je ažurirano"
@@ -22553,6 +22545,11 @@ msgstr "Traži..."
msgid "Searching ..."
msgstr "Pretraživanje u toku..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "Sekundi"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22942,9 +22939,7 @@ msgstr "Odaberi {0}"
msgid "Self approval is not allowed"
msgstr "Samoodobrenje nije dozvoljeno"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Pošalji"
@@ -22975,11 +22970,6 @@ msgstr "Pošalji Upozorenje"
msgid "Send Email Alert"
msgstr "Pošalji Upozorenje e-poštom"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Pošalji e-poštu"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23037,38 +23027,16 @@ msgstr "Pošalji Potvrdu o Čitanju"
msgid "Send System Notification"
msgstr "Pošalji Sistemsko Obaveštenje"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Pošalji Probnu e-poštu"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Pošalji svim Dodjeljnim"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Pošalji Vezu Odjave"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Pošalji vezu za Web Pregled"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Pošalji e-poštu Dobrodošlice"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Pošalji Probnu e-poštu"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Pošalji ponovo"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23116,10 +23084,6 @@ msgstr "Pošalji Vezu Prijave"
msgid "Send me a copy"
msgstr "Pošalji Mi Kopiju"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Pošalji sada"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23135,19 +23099,15 @@ msgstr "Pošaljite poruku za odjavu putem e-pošte"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Pošiljatelj"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "E-pošta Pošiljatelja"
@@ -23164,9 +23124,7 @@ msgid "Sender Field should have Email in options"
msgstr "Polje Pošiljatelja treba da ima opciju E-pošta"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Ime Pošiljatelja"
@@ -23186,18 +23144,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Šalje se"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Šalje se e-pošta"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Slanje u toku..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23205,8 +23154,6 @@ msgstr "Slanje u toku..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Poslano"
@@ -23276,7 +23223,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23295,7 +23242,7 @@ msgstr "IP Servera"
msgid "Server Script"
msgstr "Server Skripta"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije."
@@ -23334,15 +23281,15 @@ msgstr "Standard Postavke Sesije"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Standard Sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sesija Istekla"
@@ -23596,7 +23543,7 @@ msgstr "Postavljanje vašeg sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24679,7 +24626,6 @@ msgstr "Vremenski Interval Statistike"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24704,7 +24650,6 @@ msgstr "Vremenski Interval Statistike"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24845,8 +24790,6 @@ msgstr "Poddomena"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24855,7 +24798,6 @@ msgstr "Poddomena"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25226,7 +25168,7 @@ msgstr "Sinhronizacija u toku"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizira se {0} od {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Greška Sintakse"
@@ -25533,7 +25475,7 @@ msgstr "Tabela Optimizirana"
msgid "Table updated"
msgstr "Tabela Ažurirana"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25660,10 +25602,6 @@ msgstr "ID Test Posla"
msgid "Test Spanish"
msgstr "Test Španski"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Probna e-pošta poslana na {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test Mapa"
@@ -25731,10 +25669,6 @@ msgstr "Hvala vam na poruci e-pošte"
msgid "Thank you for your feedback!"
msgstr "Hvala vam na povratnim informacijama!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Hvala vam na interesovanju da se pretplatite na naša ažuriranja"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Hvala vam na poruci"
@@ -25929,7 +25863,7 @@ msgstr "Veza za poništavanje lozinke je istekla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -25941,7 +25875,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Odabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
@@ -26094,7 +26028,7 @@ msgstr "Autentifikacija Trećeih Strane"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ova Oglasna Tabla će biti privatna"
@@ -26118,7 +26052,7 @@ msgstr "Ove Godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
@@ -26282,14 +26216,6 @@ msgstr "Ovo se može ispisati na više stranica"
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Ovaj bilten je planiran za slanje {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Slanje ovog biltena bilo je planirano za neki kasniji datum. Jeste li sigurni da ga želite sada poslati?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
@@ -26402,7 +26328,6 @@ msgstr "Četvrtak"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Vrijeme"
@@ -26628,10 +26553,8 @@ msgid "Title of the page"
msgstr "Naziv stranice"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Za"
@@ -26914,7 +26837,7 @@ msgstr "Vrh Desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26942,16 +26865,8 @@ msgstr "Ukupno Slika"
msgid "Total Outgoing Emails"
msgstr "Ukupno Odlazne e-pošte"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Ukupno Primatelja"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Ukupno Pretplatnika"
@@ -26960,11 +26875,6 @@ msgstr "Ukupno Pretplatnika"
msgid "Total Users"
msgstr "Ukupno Korisnika"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Ukupno Pregleda"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27364,23 +27274,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL na koji ćete otići nakon klika na sliku slajdova"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM Kampanja"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM Medij"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM Izvor"
@@ -27430,7 +27334,7 @@ msgstr "Nije moguće napisati format datoteke za {0}"
msgid "Unassign Condition"
msgstr "Poništi Dodjelu Uslova"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Neuhvaćena Iznimka"
@@ -27446,6 +27350,10 @@ msgstr "Poništi"
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr "Neizbjegnuti navodnici u niz literalu: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27478,7 +27386,7 @@ msgstr "Nepoznato"
msgid "Unknown Column: {0}"
msgstr "Nepoznata Kolona: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Nepoznata Metoda Zaokruživanja: {}"
@@ -27511,7 +27419,7 @@ msgstr "Nepročitano"
msgid "Unread Notification Sent"
msgstr "Nepročitana Obavijest Poslana"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
@@ -27525,7 +27433,7 @@ msgstr "Poništi Odabir Svih"
msgid "Unshared"
msgstr "Nedijeljeno"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Otkaži Pretplatu"
@@ -27549,6 +27457,11 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr "Otkazano"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}"
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Kolona bez Naziva"
@@ -27671,7 +27584,7 @@ msgstr "Ažurirano na Novu Verziju 🎉"
msgid "Updated successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Ažuriranje"
@@ -28406,7 +28319,7 @@ msgstr "Vrijednost je Prevelika"
msgid "Value {0} missing for {1}"
msgstr "Nedostaje vrijednost {0} za {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s"
@@ -28831,7 +28744,6 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28839,9 +28751,7 @@ msgid "Website"
msgstr "Web Stranica"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Analiza Web Stranice"
@@ -29277,7 +29187,7 @@ msgstr "Radni Tok je uspješno ažuriran"
msgid "Workspace"
msgstr "Radni Prostor"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Radni Prostor {0} ne postoji"
@@ -29500,11 +29410,11 @@ msgstr "Predstavljate se kao neki drugi korisnik."
msgid "You are not allowed to access this resource"
msgstr "Nije vam dozvoljen pristup ovom resursu"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Nije vam dozvoljen pristup ovom {0} zapisu jer je povezan sa {1} '{2}' u polju {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Nije vam dozvoljen pristup ovom zapisu {0} jer je povezan s {1} '{2}' u redu {3}, polju {4}"
@@ -29527,7 +29437,7 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Nije vam dozvoljeno da izvezete {} doctype"
@@ -29555,7 +29465,7 @@ msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave."
msgid "You are not permitted to access this page."
msgstr "Nije vam dozvoljen pristup ovoj stranici."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -29650,7 +29560,7 @@ msgstr "Možete odabrati jedan od sljedećih,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati promijeniti filtere vašeg izvještaja."
@@ -29727,11 +29637,15 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite radnju"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr "Nemate dozvolu za pristup polju: {0}"
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -29739,7 +29653,7 @@ msgstr "Nemate dozvolu za pristup {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup Izvještaju: {0}"
@@ -29747,11 +29661,11 @@ msgstr "Nemate pristup Izvještaju: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvolu za pristup {0} DocType."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovoj datoteci"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}"
@@ -29844,7 +29758,7 @@ msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama."
@@ -30010,7 +29924,7 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
@@ -30022,7 +29936,7 @@ msgstr "Vaša je stranica u toku održavanja ili ažuriranja."
msgid "Your verification code is {0}"
msgstr "Vaš verifikacioni kod je {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Nula"
@@ -30069,7 +29983,7 @@ msgstr "nakon_umetanja"
msgid "amend"
msgstr "izmijeni"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "i"
@@ -30126,7 +30040,7 @@ msgstr "kreiraj"
msgid "cyan"
msgstr "cijan"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30241,7 +30155,7 @@ msgstr "e-pošta"
msgid "email inbox"
msgstr "prijemno sanduče e-pošte"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "prazno"
@@ -30293,7 +30207,7 @@ msgstr "siva"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nije pronađen u PATH! Ovo je potrebno za izradu sigurnosne kopije."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30327,7 +30241,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "upravo sada"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "oznaka"
@@ -30367,7 +30281,7 @@ msgstr "prijava_potrebna"
msgid "long"
msgstr "dugo"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30557,7 +30471,7 @@ msgstr "odgovor"
msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30892,7 +30806,7 @@ msgstr "{0} je već odjavljen"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} je već otkazan za {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} i {1}"
@@ -30998,6 +30912,10 @@ msgstr "{0} ne postoji u redu {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr "Polja {0} ne mogu sadržavati povratne naznake (`): {1}"
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format nije mogao biti određen iz vrijednosti u ovoj koloni. Standard je {1}."
@@ -31018,10 +30936,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodijelio(la) standard vrijednost za {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} je uspješno dodan u grupu e-pošte."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} je napustio(la) konverzaciju u {1} {2}"
@@ -31092,6 +31006,10 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezan"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr "{0} nije podređena tabela od {1}"
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} nije polje tipa dokumenta {1}"
@@ -31113,7 +31031,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeća DocType za dinamičku vezu"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća adresa e-pošte"
@@ -31121,11 +31039,11 @@ msgstr "{0} nije važeća adresa e-pošte"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} nije važeće Ime"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije ispravan broj telefona"
@@ -31133,11 +31051,11 @@ msgstr "{0} nije ispravan broj telefona"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći nadređeni DocType za {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće nadređeno polje za {1}"
@@ -31225,23 +31143,23 @@ msgstr "prije {0} minuta"
msgid "{0} months ago"
msgstr "{0} mjeseci prije"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} mora biti iza {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora početi sa '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} ne smije biti ni jedna od {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
@@ -31253,7 +31171,7 @@ msgstr "{0} se mora prvo postaviti"
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31282,16 +31200,12 @@ msgstr "{0} od {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} od {1} poslano"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "Samo {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ili {1}"
@@ -31328,11 +31242,11 @@ msgstr "{0} je uklonio(la) svoju dodjelu."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} red #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} uspješno spremljen"
@@ -31444,7 +31358,7 @@ msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
@@ -31597,11 +31511,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam
msgid "{} Complete"
msgstr "{} Završeno"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Možda nevažeći python kod.
{}"
@@ -31623,7 +31537,7 @@ msgstr "Polje {} ne može biti prazno."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} nije ispravan datumski niz."
diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po
index 5085672df2..939db438e0 100644
--- a/frappe/locale/cs.po
+++ b/frappe/locale/cs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index b52c8d6edc..321d6d449a 100644
--- a/frappe/locale/de.po
+++ b/frappe/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "\"In der Listenansicht\" nicht erlaubt für den Typ {0} in Zeile {1}"
msgid "'Recipients' not specified"
msgstr "Keine \"Empfänger\" angegeben"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0} ist keine gültige URL"
@@ -1035,7 +1035,7 @@ msgstr "Aktion / Route"
msgid "Action Complete"
msgstr "Aktion abgeschlossen"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Aktion fehlgeschlagen"
@@ -1674,6 +1674,14 @@ msgstr "Hinweis"
msgid "Alerts and Notifications"
msgstr "Warnungen und Benachrichtigungen"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Wert anordnen"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Berichtigung nicht erlaubt"
msgid "Amendment naming rules updated."
msgstr "Benennungsregeln für Berichtigungen aktualisiert."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Beim Festlegen der Sitzungsstandards ist ein Fehler aufgetreten"
@@ -2278,7 +2285,7 @@ msgstr "App-Name"
msgid "App not found for module: {0}"
msgstr "App nicht gefunden für Modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} ist nicht installiert"
@@ -2492,10 +2499,6 @@ msgstr "Möchten Sie wirklich alle Anpassungen zurücksetzen?"
msgid "Are you sure you want to save this document?"
msgstr "Sind Sie sicher, dass Sie dieses Dokument speichern möchten?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Sind Sie sicher, dass Sie diesen Newsletter jetzt senden möchten?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Angehängt an Name muss eine Zeichenfolge oder eine Ganzzahl sein"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Anhang"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Anlage entfernt"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "Es wird versucht, QZ Tray zu starten ..."
msgid "Attribution"
msgstr "Namensnennung"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Zielgruppe"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Hintergrundbild"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Hintergrundprozesse"
@@ -3959,9 +3952,7 @@ msgstr "Rückruftitel"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Alle stornieren"
msgid "Cancel All Documents"
msgstr "Alle Dokumente abbrechen"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Planung abbrechen"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Kategoriebeschreibung"
msgid "Category Name"
msgstr "Kategoriename"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4513,10 +4500,6 @@ msgstr "Kontrollkästchen"
msgid "Check Request URL"
msgstr "Anfrage-URL prüfen"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Überprüfe kaputte Links"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Markieren Sie Spalten, um sie auszuwählen, ziehen Sie sie, um die Reihenfolge festzulegen."
@@ -4540,10 +4523,6 @@ msgstr "Aktivieren, falls der Benutzer gezwungen sein soll, vor dem Speichern ei
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Aktivieren Sie diese Option, um den vollständigen numerischen Wert anzuzeigen (z.B. 1.234.567 statt 1,2M)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Überprüfe kaputte Links..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Einen Moment bitte, Überprüfung läuft."
@@ -4590,6 +4569,10 @@ msgstr "Untertabelle {0} für Feld {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Untergeordnete Tabellen werden in anderen DocTypes als Raster angezeigt"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Wählen Sie Vorhandene Karte oder erstellen Sie eine neue Karte"
@@ -4679,10 +4662,6 @@ msgstr "Klicken Sie auf „Anpassen“, um Ihr erstes Widget hinzuzufügen"
msgid "Click here"
msgstr "Klicken Sie hier"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Hier klicken um die Richtigkeit zu bestätigen"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klicken Sie auf eine Datei, um sie auszuwählen."
@@ -5024,7 +5003,7 @@ msgstr "Spalten"
msgid "Columns / Fields"
msgstr "Spalten / Felder"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Spalten basierend auf"
@@ -5346,17 +5325,12 @@ msgstr "Kennwort bestätigen"
msgid "Confirm Request"
msgstr "Anfrage bestätigen"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Email-Adresse bestätigen"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Bestätigungs-E-Mail-Vorlage"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Bestätigt"
@@ -5487,8 +5461,6 @@ msgstr "Enthält {0} Sicherheitsfixes"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "Enthält {0} Sicherheitsfixes"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "Inhalt (Markdown)"
msgid "Content Hash"
msgstr "Inhalts-Hash"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "{0} konnte nicht gefunden werden"
msgid "Could not map column {0} to field {1}"
msgstr "Die Spalte {0} konnte dem Feld {1} nicht zugeordnet werden."
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Konnte nicht gestartet werden: "
@@ -5685,7 +5658,7 @@ msgstr "Zähler"
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Landesvorwahl erforderlich"
@@ -5816,11 +5789,6 @@ msgstr "Neu erstellen: {0}"
msgid "Create a {0} Account"
msgstr "Ein {0} Konto erstellen"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Erstellen und versenden Sie in regelmäßigen Abständen E-Mails an eine bestimmte Gruppe von Abonnenten."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Druckformat erstellen oder bearbeiten"
@@ -6169,6 +6137,10 @@ msgstr "Benutzerdefinierte Übersetzung"
msgid "Custom field renamed to {0} successfully."
msgstr "Benutzerdefiniertes Feld erfolgreich in {0} umbenannt."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Dashboard anpassen"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Formular anpassen"
@@ -6519,7 +6491,6 @@ msgstr "Datenbankversion"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Tag"
msgid "Day of Week"
msgstr "Wochentag"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Tage"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Verzögert"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Schreibtisch-Design"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7917,7 +7895,7 @@ msgid "Document Types and Permissions"
msgstr "Dokumenttypen und Berechtigungen"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument entsperrt"
@@ -8535,7 +8513,6 @@ msgstr "Element Selektor"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8629,11 +8606,9 @@ msgstr "Signatur in der E-Mail-Fußzeile"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "E-Mail-Gruppe"
@@ -8706,18 +8681,11 @@ msgstr "E-Mail-Wiederholungslimit"
msgid "Email Rule"
msgstr "E-Mail-Regel"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-Mail gesendet"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-Mail gesendet am"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8824,10 +8792,18 @@ msgstr "E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet"
msgid "Embed code copied"
msgstr "Einbettungscode kopiert"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Leere Spalte"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9292,6 +9268,14 @@ msgstr "Fehler in der Benachrichtigung"
msgid "Error in print format on line {0}: {1}"
msgstr "Fehler im Druckformat in Zeile {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}"
@@ -9488,6 +9472,10 @@ msgstr "Erweitern"
msgid "Expand All"
msgstr "Alle ausklappen"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Experimentell"
@@ -10019,7 +10007,7 @@ msgstr "Feldname '{0}' im Konflikt mit einem {1} mit dem Namen {2} in {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermöglichen"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Feldname ist auf 64 Zeichen ({0})"
@@ -10035,7 +10023,7 @@ msgstr "Feldname, der der DocType für dieses Verknüpfungsfeld sein wird."
msgid "Fieldname {0} appears multiple times"
msgstr "Feldname {0} erscheint mehrfach"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten"
@@ -10087,6 +10075,10 @@ msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Felder müssen eine Liste oder ein Tupel sein, wenn as_list aktiviert ist"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10252,6 +10244,14 @@ msgstr "Name des Filters"
msgid "Filter Values"
msgstr "Werte filtern"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filter..."
@@ -10495,10 +10495,6 @@ msgstr "Den folgende Feldern fehlen Werte"
msgid "Following fields have missing values:"
msgstr "Den folgende Feldern fehlen Werte:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Die folgenden Links in der E-Mail sind defekt: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10916,10 +10912,8 @@ msgid "Friday"
msgstr "Freitag"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Von"
@@ -11000,10 +10994,14 @@ msgstr "Funktion"
msgid "Function Based On"
msgstr "Funktion basiert auf"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} ist nicht freigegeben."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Weitere Knoten können nur unter Knoten vom Typ \"Gruppe\" erstellt werden"
@@ -11485,6 +11483,10 @@ msgstr "Nach Typ gruppieren"
msgid "Group By field is required to create a dashboard chart"
msgstr "Das Feld Gruppieren nach ist erforderlich, um ein Dashboard-Diagramm zu erstellen"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Gruppen-Knoten"
@@ -11533,7 +11535,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11547,7 +11548,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12056,6 +12056,11 @@ msgstr "Stündliche Wartung"
msgid "Hourly rate limit for generating password reset links"
msgstr "Stundensatzlimit zum Generieren von Links zum Zurücksetzen von Passwörtern"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Stunden"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12821,11 +12826,11 @@ msgstr "Falscher Benutzer oder Passwort"
msgid "Incorrect Verification code"
msgstr "Falscher Bestätigungscode"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Falscher Wert in Zeile {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Falscher Wert:"
@@ -12977,11 +12982,11 @@ msgstr "Anweisungen"
msgid "Instructions Emailed"
msgstr "Anweisungen per E-Mail gesendet"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Unzureichende Berechtigungsstufe für {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Unzureichende Berechtigung für {0}"
@@ -13131,7 +13136,7 @@ msgstr "Ungültige Bedingung: {}"
msgid "Invalid Credentials"
msgstr "Ungültige Anmeldeinformationen"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Ungültiges Datum"
@@ -13139,7 +13144,7 @@ msgstr "Ungültiges Datum"
msgid "Invalid DocType"
msgstr "Ungültiger DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Ungültiger DocType: {0}"
@@ -13151,6 +13156,11 @@ msgstr "Ungültiger Feldname"
msgid "Invalid File URL"
msgstr "Ungültige Datei-URL"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Ungültiges Filterformat für Feld {0} des Typs {1}. Versuchen Sie, das Filtersymbol im Feld zu verwenden, um es korrekt zu setzen"
@@ -13215,7 +13225,7 @@ msgstr "Ungültige Parameter."
msgid "Invalid Password"
msgstr "Ungültiges Passwort"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Ungültige Telefonnummer"
@@ -13259,10 +13269,38 @@ msgstr "Ungültiges Webhook Geheimnis"
msgid "Invalid aggregate function"
msgstr "Ungültige Aggregatfunktion"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Ungültige Spalte"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Ungültiger Status"
@@ -13275,10 +13313,26 @@ msgstr "Ungültiger Ausdruck in Filter {0} festgelegt"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ungültiger Ausdruck im Filter {0} ({1}) gesetzt"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Ungültiger Feldname {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Ungültige Feldname '{0}' in auton"
@@ -13287,11 +13341,26 @@ msgstr "Ungültige Feldname '{0}' in auton"
msgid "Invalid file path: {0}"
msgstr "Ungültiger Dateipfad: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Ungültiger Filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13313,10 +13382,22 @@ msgstr "Ungültiger oder beschädigter Inhalt für den Import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Ungültige Anfrageargumente"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Ungültige Vorlagendatei für den Import"
@@ -13758,11 +13839,11 @@ msgstr "Kanban-Tafel Spalte"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Kanban-Tafel Name"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban-Einstellungen"
@@ -14474,6 +14555,10 @@ msgstr "Likes"
msgid "Limit"
msgstr "Limit"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14737,6 +14822,7 @@ msgid "Load Balancing"
msgstr "Lastverteilung"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15255,11 +15341,9 @@ msgstr "Als Spam markieren"
msgid "Mark as Unread"
msgstr "Als ungelesen markieren"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15448,7 +15532,6 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15461,7 +15544,6 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15476,16 +15558,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Nachricht"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Nachricht (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Nachricht (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15609,7 +15681,7 @@ msgstr "Metatitel für SEO"
msgid "Method"
msgstr "Methode"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Methode nicht erlaubt"
@@ -15659,6 +15731,11 @@ msgstr "Mindest-Passwort-Score"
msgid "Minor"
msgstr "Minor"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minuten"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16054,7 +16131,7 @@ msgstr "Muss in '()' eingeschlossen sein und '{0}' enthalten, was ein Platzhalte
msgid "Must be of type \"Attach Image\""
msgstr "Muss vom Typ „Bild anhängen“ sein"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen."
@@ -16244,6 +16321,10 @@ msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeits
msgid "Negative Value"
msgstr "Negativer Wert"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Schachtelfehler. Bitte den Administrator kontaktieren."
@@ -16326,7 +16407,7 @@ msgstr "Neues Ereignis"
msgid "New Folder"
msgstr "Neuer Ordner"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Neue Kanban-Tafel"
@@ -16470,48 +16551,13 @@ msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar"
msgid "Newly created user {0} has no roles enabled."
msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Newsletter"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Newsletter-Anhang"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Rundbrief E-Mail-Gruppe"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Newsletter-Manager"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Newsletter wurde bereits gesendet"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Newsletter muss veröffentlicht werden, um Webview-Link in der E-Mail zu senden"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Der Newsletter sollte mindestens einen Empfänger haben"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Newsletter"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16773,7 +16819,7 @@ msgstr "Keine Ergebnisse gefunden"
msgid "No Roles Specified"
msgstr "Keine Rollen festgelegt"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Kein Auswahlfeld gefunden"
@@ -16801,10 +16847,6 @@ msgstr "Keine Warnungen für heute"
msgid "No automatic optimization suggestions available."
msgstr "Keine automatischen Optimierungsvorschläge verfügbar."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Keine kaputten Links im E-Mail-Inhalt gefunden"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Keine Änderungen im Dokument"
@@ -16841,7 +16883,7 @@ msgstr "Noch keine Kontakte hinzugefügt."
msgid "No contacts linked to document"
msgstr "Keine Kontakte mit dem Dokument verknüpft"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Keine zu exportierenden Daten"
@@ -16861,7 +16903,7 @@ msgstr "Dem Benutzer ist kein E-Mail-Konto zugeordnet. Bitte fügen Sie unter Be
msgid "No failed logs"
msgstr "Keine fehlgeschlagenen Protokolle"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Keine Felder gefunden, die als Kanban-Spalte verwendet werden können. Verwenden Sie „Formular anpassen“, um ein benutzerdefiniertes Feld vom Typ \"Auswählen\" hinzuzufügen."
@@ -16920,7 +16962,7 @@ msgstr "Keine der Zeilen (Max 500)"
msgid "No of Sent SMS"
msgstr "Anzahl der gesendeten SMS"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Keine Berechtigung für {0}"
@@ -17048,7 +17090,7 @@ msgstr "Nicht Nachkommen von"
msgid "Not Equals"
msgstr "Ungleich"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nicht gefunden"
@@ -17074,7 +17116,7 @@ msgstr "Nicht mit jedem Datensatz verknüpft"
msgid "Not Nullable"
msgstr "Nicht nullbar"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17083,7 +17125,7 @@ msgstr "Nicht nullbar"
msgid "Not Permitted"
msgstr "Nicht zulässig"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Keine Berechtigung zum Lesen von {0}"
@@ -17111,7 +17153,6 @@ msgstr "ungelesen"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Nicht versendet"
@@ -17144,7 +17185,7 @@ msgstr "Kein gültiger Benutzer"
msgid "Not active"
msgstr "Nicht aktiv"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Nicht zulässig für {0}: {1}"
@@ -17578,6 +17619,10 @@ msgstr "Versatz X"
msgid "Offset Y"
msgstr "Versatz Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Altes Passwort"
@@ -17751,7 +17796,7 @@ msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten"
msgid "Only allowed to export customizations in developer mode"
msgstr "Anpassungen können nur im Entwicklermodus exportiert werden"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Nur Dokumente im Entwurfsstatus können verworfen werden"
@@ -17923,7 +17968,7 @@ msgstr "Geöffnet"
msgid "Operation"
msgstr "Arbeitsgang"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Betreiber muss einer von {0}"
@@ -18022,6 +18067,10 @@ msgstr "Orange"
msgid "Order"
msgstr "Auftrag"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18417,7 +18466,7 @@ msgstr "Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden.
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Das übergeordnete Feld wurde in {0}: {1} nicht angegeben"
@@ -18539,10 +18588,6 @@ msgstr "Passwörter stimmen nicht überein"
msgid "Passwords do not match!"
msgstr "Passwörter stimmen nicht überein!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Termine in der Vergangenheit sind für die Planung nicht zulässig."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Einfügen"
@@ -18688,7 +18733,7 @@ msgstr "{0} endgültig übertragen?"
msgid "Permanently delete {0}?"
msgstr "{0} endgültig löschen?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Berechtigungsfehler"
@@ -18840,7 +18885,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefonnr."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonnummer {0} im Feld {1} ist ungültig."
@@ -19113,10 +19158,6 @@ msgstr "Bitte entfernen Sie die Druckerzuordnung in den Druckereinstellungen und
msgid "Please save before attaching."
msgstr "Bitte vor dem Anhängen speichern"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Bitte den Newsletter vor dem Senden speichern"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Bitte das Dokument vor der Zuweisung abspeichern"
@@ -19149,7 +19190,7 @@ msgstr "Bitte wählen Sie Minimum Password Score"
msgid "Please select X and Y fields"
msgstr "Bitte wählen Sie X- und Y-Felder aus"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Bitte wählen Sie einen Ländercode für das Feld {1} aus."
@@ -19165,7 +19206,7 @@ msgstr "Bitte eine Datei oder URL auswählen"
msgid "Please select a valid csv file with data"
msgstr "Bitte eine gültige CSV-Datei mit Daten auswählen"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Bitte wählen Sie einen gültigen Datumsfilter"
@@ -19243,7 +19284,7 @@ msgstr "Bitte richten Sie das Standardkonto für ausgehende E-Mails unter Extras
msgid "Please specify"
msgstr "Bitte angeben"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Bitte geben Sie einen gültigen übergeordneten DocType für {0} an"
@@ -19280,10 +19321,6 @@ msgstr "Bitte aktualisieren Sie {}, bevor Sie fortfahren."
msgid "Please use a valid LDAP search filter"
msgstr "Bitte verwenden Sie einen gültigen LDAP-Suchfilter"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Bitte bestätigen Sie Ihre E-Mail-Adresse"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Bitte besuchen Sie https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key für weitere Informationen."
@@ -19377,6 +19414,10 @@ msgstr "Beiträge von {0}"
msgid "Posts filed under {0}"
msgstr "Beiträge abgelegt unter {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19436,7 +19477,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Vorbereiteter Berichtsbenutzer"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen"
@@ -19465,8 +19506,6 @@ msgstr "Drücken Sie zum Speichern die Eingabetaste"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19854,7 +19893,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Fortschritt"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekt"
@@ -19949,14 +19988,7 @@ msgstr "Öffentliche Dateien (MB)"
msgid "Publish"
msgstr "Veröffentlichen"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Als Webseite veröffentlichen"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19964,7 +19996,6 @@ msgstr "Als Webseite veröffentlichen"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20139,7 +20170,7 @@ msgstr "Abfragebericht"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analyse der Abfrage abgeschlossen. Prüfen Sie die vorgeschlagenen Indizes."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Die Abfrage muss vom Typ SELECT oder Read-Only WITH sein."
@@ -20185,7 +20216,6 @@ msgstr "Warteschlange(n)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "In der Warteschlange"
@@ -20208,19 +20238,11 @@ msgstr "In der Warteschlange für die Buchung. Sie können den Fortschritt über
msgid "Queued for backup. You will receive an email with the download link"
msgstr "Warteschlange für Backup. Sie erhalten eine E-Mail mit dem Download-Link"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} E-Mails in der Warteschlange"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Warteschlangen"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-Mails in die Warteschlange stellen..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "Einreihen von {0} zur Buchung"
@@ -20421,7 +20443,7 @@ msgstr "Vom Empfänger gelesen am"
msgid "Read mode"
msgstr "Lesemodus"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Lesen Sie die Dokumentation, um mehr zu erfahren"
@@ -21288,7 +21310,7 @@ msgstr "Berichtsgrenze erreicht"
msgid "Report timed out."
msgstr "Zeitüberschreitung des Berichts."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Bericht erfolgreich aktualisiert"
@@ -21309,7 +21331,7 @@ msgstr "Bericht {0}"
msgid "Report {0} deleted"
msgstr "Bericht {0} gelöscht"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Bericht {0} ist deaktiviert"
@@ -21642,10 +21664,8 @@ msgstr "Widerrufen"
msgid "Revoked"
msgstr "Widerrufen"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21856,7 +21876,6 @@ msgstr "Rundungsmethode"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21870,7 +21889,6 @@ msgstr "Rundungsmethode"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21988,7 +22006,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regelbedingungen"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Die Regel für diese Kombination aus Doctype, Rolle, Permlevel und if-owner existiert bereits."
@@ -22177,11 +22195,11 @@ msgstr "Samstag"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22273,32 +22291,17 @@ msgstr "Scannen Sie den QR-Code und geben Sie den dargestellten Code ein."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Planen"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Newsletter planen"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Senden planen am"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Senden planen"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Senden zu einem späteren Zeitpunkt planen"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Geplant"
@@ -22332,17 +22335,6 @@ msgstr "Geplanter Auftragstyp"
msgid "Scheduled Jobs Logs"
msgstr "Protokolle geplanter Jobs"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Geplanter Versand"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "in Sendewarteschlange"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Die geplante Ausführung für Skript {0} wurde aktualisiert"
@@ -22554,6 +22546,11 @@ msgstr "Suche..."
msgid "Searching ..."
msgstr "Suchen ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "Sekunden"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22943,9 +22940,7 @@ msgstr "{0} auswählen"
msgid "Self approval is not allowed"
msgstr "Selbstgenehmigung ist nicht erlaubt"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Absenden"
@@ -22976,11 +22971,6 @@ msgstr "Benachrichtigung senden bei"
msgid "Send Email Alert"
msgstr "E-Mail-Benachrichtigung senden"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "E-Mail senden am"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23038,38 +23028,16 @@ msgstr "Lesebestätigung senden"
msgid "Send System Notification"
msgstr "Systembenachrichtigung senden"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Test-E-Mail senden"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "An alle Beauftragten senden"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Abmelde-Link senden"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Link zur Webansicht senden"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Willkommens-E-Mail senden"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Test-E-Mail senden"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Erneut senden"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23117,10 +23085,6 @@ msgstr "Anmelde-Link senden"
msgid "Send me a copy"
msgstr "Kopie an mich senden"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Jetzt senden"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23136,19 +23100,15 @@ msgstr "Abmelde-Link in E-Mails hinzufügen"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Absender"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Absender E-Mail"
@@ -23165,9 +23125,7 @@ msgid "Sender Field should have Email in options"
msgstr "Das Absenderfeld sollte E-Mail-Optionen enthalten"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Absendername"
@@ -23187,18 +23145,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Versand"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Sende E-Mails"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Senden..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23206,8 +23155,6 @@ msgstr "Senden..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Gesendet"
@@ -23277,7 +23224,7 @@ msgstr "Serie {0} bereits verwendet in {1}"
msgid "Server Action"
msgstr "Serveraktion"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfehler"
@@ -23296,7 +23243,7 @@ msgstr "Server-IP-Adresse"
msgid "Server Script"
msgstr "Serverskript"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Serverskripte sind deaktiviert. Bitte aktivieren Sie Server-Skripte in der Bankkonfiguration."
@@ -23335,15 +23282,15 @@ msgstr "Sitzungsstandardeinstellungen"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Sitzungsstandards"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Sitzungsstandards gespeichert"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sitzung abgelaufen"
@@ -23597,7 +23544,7 @@ msgstr "Einrichten Ihres Systems"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24680,7 +24627,6 @@ msgstr "Statistik Zeitintervall"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24705,7 +24651,6 @@ msgstr "Statistik Zeitintervall"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24846,8 +24791,6 @@ msgstr "Unterdomäne"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24856,7 +24799,6 @@ msgstr "Unterdomäne"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25227,7 +25169,7 @@ msgstr "Synchronisiert"
msgid "Syncing {0} of {1}"
msgstr "{0} von {1} synchronisieren"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Syntaxfehler"
@@ -25534,7 +25476,7 @@ msgstr "Tabelle gekürzt"
msgid "Table updated"
msgstr "Tabelle aktualisiert"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabelle {0} darf nicht leer sein"
@@ -25661,10 +25603,6 @@ msgstr "Test-Auftrags-ID"
msgid "Test Spanish"
msgstr "Test Spanisch"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Test-E-Mail an {0} gesendet"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Ordner"
@@ -25732,10 +25670,6 @@ msgstr "Vielen Dank für Ihre E-Mail"
msgid "Thank you for your feedback!"
msgstr "Vielen Dank für dein Feedback!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Vielen Dank für Ihr Interesse an einem Abonnement unserer Aktualisierungen"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Vielen Dank für Ihre Nachricht"
@@ -25930,7 +25864,7 @@ msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen"
msgid "The reset password link has either been used before or is invalid"
msgstr "Der Link zum Zurücksetzen des Passworts wurde bereits verwendet oder ist ungültig"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Die von Ihnen gesuchte Ressource ist nicht verfügbar"
@@ -25942,7 +25876,7 @@ msgstr "Die Rolle {0} sollte eine benutzerdefinierte Rolle sein."
msgid "The selected document {0} is not a {1}."
msgstr "Das ausgewählte Dokument {0} ist nicht vom Typ {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Das System wird gerade aktualisiert. Bitte probieren Sie es nach einigen Augenblicken erneut."
@@ -26095,7 +26029,7 @@ msgstr "Drittpartei-Authentifizierung"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Diese Währung ist deaktiviert. Aktivieren, um in Transaktionen zu verwenden"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Dieser Kanbantafel wird privat"
@@ -26119,7 +26053,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Diese Aktion ist unumkehrbar. Möchten Sie fortfahren?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Diese Aktion ist nur für {} zulässig"
@@ -26283,14 +26217,6 @@ msgstr "Dies kann auf mehreren Seiten ausgedruckt werden"
msgid "This month"
msgstr "Diesen Monat"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Dieser Newsletter wird voraussichtlich am {0} verschickt"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Der Versand dieses Newsletters war zu einem späteren Zeitpunkt geplant. Sind Sie sicher, dass Sie es jetzt senden möchten?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angezeigt zu werden. Sie können diesen Bericht stattdessen unter {1} aufrufen."
@@ -26403,7 +26329,6 @@ msgstr "Donnerstag"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Zeit"
@@ -26629,10 +26554,8 @@ msgid "Title of the page"
msgstr "Titel der Seite"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "An"
@@ -26915,7 +26838,7 @@ msgstr "Oben rechts"
msgid "Topic"
msgstr "Thema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26943,16 +26866,8 @@ msgstr "Anzahl Bilder"
msgid "Total Outgoing Emails"
msgstr "Anzahl ausgehender E-Mails"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Empfänger insgesamt"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Abonnenten insgesamt"
@@ -26961,11 +26876,6 @@ msgstr "Abonnenten insgesamt"
msgid "Total Users"
msgstr "Anzahl der Benutzer"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Ansichten insgesamt"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27365,23 +27275,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL, die beim Anklicken des Diashow-Bildes aufgerufen wird"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM-Kampagne"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM-Medium"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM-Quelle"
@@ -27431,7 +27335,7 @@ msgstr "Das Dateiformat für {0} kann nicht geschrieben werden."
msgid "Unassign Condition"
msgstr "Bedingung für das Aufheben der Zuweisung"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Nicht abgefangene Ausnahme"
@@ -27447,6 +27351,10 @@ msgstr "Rückgängig machen"
msgid "Undo last action"
msgstr "Letzte Aktion rückgängig machen"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27479,7 +27387,7 @@ msgstr "Unbekannt"
msgid "Unknown Column: {0}"
msgstr "Unbekannte Spalte: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Unbekannte Rundungsmethode: {}"
@@ -27512,7 +27420,7 @@ msgstr "Ungelesen"
msgid "Unread Notification Sent"
msgstr "Ungelesene Benachrichtigung gesendet"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Unsichere SQL-Abfrage"
@@ -27526,7 +27434,7 @@ msgstr "Auswahl aufheben"
msgid "Unshared"
msgstr "Nicht geteilt"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Abmelden"
@@ -27550,6 +27458,11 @@ msgstr "Abmeldeparameter"
msgid "Unsubscribed"
msgstr "Abgemeldet"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Unbenannte Spalte"
@@ -27672,7 +27585,7 @@ msgstr "Auf eine neue Version aktualisiert 🎉"
msgid "Updated successfully"
msgstr "Erfolgreich geupdated"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Aktualisierung läuft"
@@ -28407,7 +28320,7 @@ msgstr "Wert zu groß"
msgid "Value {0} missing for {1}"
msgstr "Wert {0} fehlt für {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Der Wert {0} muss das gültige Dauerformat haben: dhms"
@@ -28832,7 +28745,6 @@ msgstr "Webhook-URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28840,9 +28752,7 @@ msgid "Website"
msgstr "Webseite"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Website-Analysen"
@@ -29278,7 +29188,7 @@ msgstr "Workflow erfolgreich aktualisiert"
msgid "Workspace"
msgstr "Arbeitsbereich"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Arbeitsbereich {0} existiert nicht"
@@ -29501,11 +29411,11 @@ msgstr "Sie geben sich als ein anderer Benutzer aus."
msgid "You are not allowed to access this resource"
msgstr "Sie dürfen nicht auf diese Ressource zuzugreifen"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Sie haben keine Berechtigung, auf diesen Eintrag in {0} zuzugreifen, da dieser in Feld {3} mit {1} '{2}' verknüpft ist"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Sie können auf diesen Datensatz {0} nicht zugreifen, da er mit {1} '{2}' in Zeile {3}, Feld {4} verknüpft ist"
@@ -29528,7 +29438,7 @@ msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Sie dürfen keinen {} Doctype exportieren"
@@ -29556,7 +29466,7 @@ msgstr "Sie sind nicht berechtigt, ohne Anmeldung auf diese Seite zuzugreifen."
msgid "You are not permitted to access this page."
msgstr "Sie sind nicht berechtigt auf diese Seite zuzugreifen."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um darauf zuzugreifen"
@@ -29651,7 +29561,7 @@ msgstr "Sie können eine der folgenden Optionen auswählen,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Sie können hier einen hohen Wert einstellen, wenn sich mehrere Benutzer über dasselbe Netzwerk anmelden."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Sie können versuchen, die Filter Ihres Berichts zu ändern."
@@ -29728,11 +29638,15 @@ msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
@@ -29740,7 +29654,7 @@ msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}"
@@ -29748,11 +29662,11 @@ msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten"
@@ -29845,7 +29759,7 @@ msgstr "Sie müssen ein Systembenutzer sein, um auf diese Seite zugreifen zu kö
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Sie müssen sich im Entwicklermodus befinden, um ein Standard-Webformular zu bearbeiten"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen."
@@ -30011,7 +29925,7 @@ msgstr "Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren."
@@ -30023,7 +29937,7 @@ msgstr "Ihre Website wird gerade gewartet oder aktualisiert."
msgid "Your verification code is {0}"
msgstr "Ihr Bestätigungscode ist {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Null"
@@ -30070,7 +29984,7 @@ msgstr "nach_einfügen"
msgid "amend"
msgstr "berichtigen"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "und"
@@ -30127,7 +30041,7 @@ msgstr "erstellen"
msgid "cyan"
msgstr "türkis"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30242,7 +30156,7 @@ msgstr "E-Mail"
msgid "email inbox"
msgstr "E-Mail-Eingang"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "leeren"
@@ -30294,7 +30208,7 @@ msgstr "grau"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nicht in PATH gefunden! Dies ist erforderlich, um ein Backup zu erstellen."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30328,7 +30242,7 @@ msgstr "beate@beispiel.de"
msgid "just now"
msgstr "gerade eben"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "bezeichnung"
@@ -30368,7 +30282,7 @@ msgstr "login_required"
msgid "long"
msgstr "lang"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30558,7 +30472,7 @@ msgstr "Antwort"
msgid "restored {0} as {1}"
msgstr "restauriert {0} als {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30893,7 +30807,7 @@ msgstr "{0} bereits abgemeldet"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} bereits abgemeldet für {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} und {1}"
@@ -30999,6 +30913,10 @@ msgstr "{0} existiert nicht in Zeile {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "Das {0} Format konnte nicht von den Werten in dieser Spalte bestimmt werden. Standard ist {1}."
@@ -31019,10 +30937,6 @@ msgstr "{0} Std"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} hat bereits einen Standardwert für {1} zugewiesen."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} wurde zur E-Mail-Gruppe hinzugefügt."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} wurde von E-Mail-Benachrichtigungen zu {1} {2} abgemeldet"
@@ -31093,6 +31007,10 @@ msgstr "{0} ist wie {1}"
msgid "{0} is mandatory"
msgstr "{0} ist erforderlich"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} ist kein Feld in Doctype {1}"
@@ -31114,7 +31032,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ist kein gültiger DocType für Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} ist keine gültige E-Mail-Adresse"
@@ -31122,11 +31040,11 @@ msgstr "{0} ist keine gültige E-Mail-Adresse"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} ist kein gültiger ISO 3166 ALPHA-2-Code."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} ist kein gültiger Name"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} ist keine gültige Telefonnummer"
@@ -31134,11 +31052,11 @@ msgstr "{0} ist keine gültige Telefonnummer"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ist kein gültiger Workflow-Status. Bitte aktualisieren Sie Ihren Workflow und versuchen Sie es erneut."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} ist kein gültiger übergeordneter DocType für {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}"
@@ -31226,23 +31144,23 @@ msgstr "vor {0} Minuten"
msgid "{0} months ago"
msgstr "vor {0} Monaten"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} muss nach {1} liegen"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} muss mit '{1}' beginnen"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} muss gleich '{1}' sein"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} darf nichts von {1} sein"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} muss aus {1} sein"
@@ -31254,7 +31172,7 @@ msgstr "{0} muss als erstes gesetzt sein"
msgid "{0} must be unique"
msgstr "{0} muss einmalig sein"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} muss {1} {2} sein"
@@ -31283,16 +31201,12 @@ msgstr "{0} von {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} von {1} gesendet"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} oder {1}"
@@ -31329,11 +31243,11 @@ msgstr "{0} hat seine Zuordnung entfernt."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} Zeile #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} wurde erfolgreich gespeichert"
@@ -31445,7 +31359,7 @@ msgstr "{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wähle
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nicht gefunden"
@@ -31598,11 +31512,11 @@ msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field
msgid "{} Complete"
msgstr "{} Komplett"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Ungültiger Python-Code in Zeile {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Possibly invalid python code.
{}"
@@ -31624,7 +31538,7 @@ msgstr "{}-Feld darf nicht leer sein."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} wurde deaktiviert. Es kann nur aktiviert werden, wenn {} aktiviert ist."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} ist keine gültige Datumszeichenfolge."
diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po
index 1e68f69943..9b6e677942 100644
--- a/frappe/locale/eo.po
+++ b/frappe/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0"
msgid "'Recipients' not specified"
msgstr "crwdns90530:0crwdne90530:0"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "crwdns90532:0{0}crwdne90532:0"
@@ -852,7 +852,7 @@ msgstr "crwdns128016:0crwdne128016:0"
msgid "Action Complete"
msgstr "crwdns90762:0crwdne90762:0"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "crwdns90764:0crwdne90764:0"
@@ -1491,6 +1491,14 @@ msgstr "crwdns128094:0crwdne128094:0"
msgid "Alerts and Notifications"
msgstr "crwdns90990:0crwdne90990:0"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr "crwdns155510:0{0}crwdne155510:0"
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr "crwdns155512:0crwdne155512:0"
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1531,7 +1539,6 @@ msgstr "crwdns90998:0crwdne90998:0"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1976,7 +1983,7 @@ msgstr "crwdns151842:0crwdne151842:0"
msgid "Amendment naming rules updated."
msgstr "crwdns91190:0crwdne91190:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "crwdns91192:0crwdne91192:0"
@@ -2094,7 +2101,7 @@ msgstr "crwdns91230:0crwdne91230:0"
msgid "App not found for module: {0}"
msgstr "crwdns91240:0{0}crwdne91240:0"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "crwdns91242:0{0}crwdne91242:0"
@@ -2308,10 +2315,6 @@ msgstr "crwdns91328:0crwdne91328:0"
msgid "Are you sure you want to save this document?"
msgstr "crwdns110810:0crwdne110810:0"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "crwdns91330:0crwdne91330:0"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2565,9 +2568,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "crwdns91456:0crwdne91456:0"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "crwdns128308:0crwdne128308:0"
@@ -2594,10 +2595,7 @@ msgid "Attachment Removed"
msgstr "crwdns128314:0crwdne128314:0"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2615,11 +2613,6 @@ msgstr "crwdns91484:0crwdne91484:0"
msgid "Attribution"
msgstr "crwdns112680:0crwdne112680:0"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "crwdns128316:0crwdne128316:0"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3046,7 +3039,7 @@ msgstr "crwdns128396:0crwdne128396:0"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "crwdns91668:0crwdne91668:0"
@@ -3774,9 +3767,7 @@ msgstr "crwdns128580:0crwdne128580:0"
msgid "Camera"
msgstr "crwdns91992:0crwdne91992:0"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3862,10 +3853,6 @@ msgstr "crwdns92026:0crwdne92026:0"
msgid "Cancel All Documents"
msgstr "crwdns92028:0crwdne92028:0"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "crwdns92030:0crwdne92030:0"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4159,7 +4146,7 @@ msgstr "crwdns128592:0crwdne128592:0"
msgid "Category Name"
msgstr "crwdns128594:0crwdne128594:0"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "crwdns92178:0crwdne92178:0"
@@ -4327,10 +4314,6 @@ msgstr "crwdns128622:0crwdne128622:0"
msgid "Check Request URL"
msgstr "crwdns92246:0crwdne92246:0"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "crwdns92248:0crwdne92248:0"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "crwdns110834:0crwdne110834:0"
@@ -4354,10 +4337,6 @@ msgstr "crwdns128624:0crwdne128624:0"
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "crwdns155322:0crwdne155322:0"
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "crwdns92256:0crwdne92256:0"
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "crwdns92258:0crwdne92258:0"
@@ -4404,6 +4383,10 @@ msgstr "crwdns92274:0{0}crwdnd92274:0{1}crwdne92274:0"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "crwdns92276:0crwdne92276:0"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr "crwdns155514:0{0}crwdne155514:0"
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "crwdns92280:0crwdne92280:0"
@@ -4493,10 +4476,6 @@ msgstr "crwdns110838:0crwdne110838:0"
msgid "Click here"
msgstr "crwdns92312:0crwdne92312:0"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "crwdns92314:0crwdne92314:0"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "crwdns143008:0crwdne143008:0"
@@ -4838,7 +4817,7 @@ msgstr "crwdns128678:0crwdne128678:0"
msgid "Columns / Fields"
msgstr "crwdns128680:0crwdne128680:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "crwdns92484:0crwdne92484:0"
@@ -5158,17 +5137,12 @@ msgstr "crwdns92620:0crwdne92620:0"
msgid "Confirm Request"
msgstr "crwdns92622:0crwdne92622:0"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "crwdns92624:0crwdne92624:0"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "crwdns128724:0crwdne128724:0"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "crwdns92628:0crwdne92628:0"
@@ -5299,8 +5273,6 @@ msgstr "crwdns127604:0{0}crwdne127604:0"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5308,7 +5280,6 @@ msgstr "crwdns127604:0{0}crwdne127604:0"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5333,10 +5304,8 @@ msgstr "crwdns128740:0crwdne128740:0"
msgid "Content Hash"
msgstr "crwdns128742:0crwdne128742:0"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5442,6 +5411,10 @@ msgstr "crwdns92744:0{0}crwdne92744:0"
msgid "Could not map column {0} to field {1}"
msgstr "crwdns92746:0{0}crwdnd92746:0{1}crwdne92746:0"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr "crwdns155516:0{0}crwdne155516:0"
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "crwdns152054:0crwdne152054:0"
@@ -5497,7 +5470,7 @@ msgstr "crwdns128760:0crwdne128760:0"
msgid "Country"
msgstr "crwdns92764:0crwdne92764:0"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "crwdns92774:0crwdne92774:0"
@@ -5628,11 +5601,6 @@ msgstr "crwdns92824:0{0}crwdne92824:0"
msgid "Create a {0} Account"
msgstr "crwdns92826:0{0}crwdne92826:0"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "crwdns111496:0crwdne111496:0"
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "crwdns92828:0crwdne92828:0"
@@ -5981,6 +5949,10 @@ msgstr "crwdns143304:0crwdne143304:0"
msgid "Custom field renamed to {0} successfully."
msgstr "crwdns111394:0{0}crwdne111394:0"
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr "crwdns155518:0{0}crwdnd155518:0{1}crwdne155518:0"
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6038,7 +6010,7 @@ msgstr "crwdns93022:0crwdne93022:0"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "crwdns93024:0crwdne93024:0"
@@ -6331,7 +6303,6 @@ msgstr "crwdns128852:0crwdne128852:0"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6395,6 +6366,11 @@ msgstr "crwdns93220:0crwdne93220:0"
msgid "Day of Week"
msgstr "crwdns128860:0crwdne128860:0"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "crwdns155520:0crwdne155520:0"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6662,6 +6638,7 @@ msgstr "crwdns128908:0crwdne128908:0"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6974,6 +6951,7 @@ msgstr "crwdns128936:0crwdne128936:0"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7727,7 +7705,7 @@ msgid "Document Types and Permissions"
msgstr "crwdns129022:0crwdne129022:0"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "crwdns93812:0crwdne93812:0"
@@ -8345,7 +8323,6 @@ msgstr "crwdns129070:0crwdne129070:0"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8439,11 +8416,9 @@ msgstr "crwdns129076:0crwdne129076:0"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "crwdns94104:0crwdne94104:0"
@@ -8516,18 +8491,11 @@ msgstr "crwdns129088:0crwdne129088:0"
msgid "Email Rule"
msgstr "crwdns94138:0crwdne94138:0"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "crwdns129090:0crwdne129090:0"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "crwdns129092:0crwdne129092:0"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8634,10 +8602,18 @@ msgstr "crwdns129108:0crwdne129108:0"
msgid "Embed code copied"
msgstr "crwdns111510:0crwdne111510:0"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr "crwdns155522:0crwdne155522:0"
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "crwdns143066:0crwdne143066:0"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr "crwdns155524:0crwdne155524:0"
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9101,6 +9077,14 @@ msgstr "crwdns94424:0crwdne94424:0"
msgid "Error in print format on line {0}: {1}"
msgstr "crwdns94426:0{0}crwdnd94426:0{1}crwdne94426:0"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr "crwdns155526:0{0}crwdnd155526:0{1}crwdne155526:0"
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr "crwdns155528:0{0}crwdne155528:0"
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "crwdns94428:0{0}crwdne94428:0"
@@ -9297,6 +9281,10 @@ msgstr "crwdns94504:0crwdne94504:0"
msgid "Expand All"
msgstr "crwdns94506:0crwdne94506:0"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr "crwdns155530:0{0}crwdne155530:0"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "crwdns110928:0crwdne110928:0"
@@ -9828,7 +9816,7 @@ msgstr "crwdns94726:0{0}crwdnd94726:0{1}crwdnd94726:0{2}crwdnd94726:0{3}crwdne94
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "crwdns94728:0{0}crwdne94728:0"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "crwdns94730:0{0}crwdne94730:0"
@@ -9844,7 +9832,7 @@ msgstr "crwdns94734:0crwdne94734:0"
msgid "Fieldname {0} appears multiple times"
msgstr "crwdns94736:0{0}crwdne94736:0"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0"
@@ -9896,6 +9884,10 @@ msgstr "crwdns94760:0crwdne94760:0"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "crwdns112694:0crwdne112694:0"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr "crwdns155532:0crwdne155532:0"
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10061,6 +10053,14 @@ msgstr "crwdns94836:0crwdne94836:0"
msgid "Filter Values"
msgstr "crwdns129314:0crwdne129314:0"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr "crwdns155534:0{0}crwdne155534:0"
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr "crwdns155536:0crwdne155536:0"
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "crwdns110940:0crwdne110940:0"
@@ -10304,10 +10304,6 @@ msgstr "crwdns94958:0crwdne94958:0"
msgid "Following fields have missing values:"
msgstr "crwdns94960:0crwdne94960:0"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "crwdns94962:0{0}crwdne94962:0"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10724,10 +10720,8 @@ msgid "Friday"
msgstr "crwdns129428:0crwdne129428:0"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "crwdns95150:0crwdne95150:0"
@@ -10808,10 +10802,14 @@ msgstr "crwdns95188:0crwdne95188:0"
msgid "Function Based On"
msgstr "crwdns95192:0crwdne95192:0"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "crwdns95194:0{0}crwdne95194:0"
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr "crwdns155538:0{0}crwdne155538:0"
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "crwdns95196:0crwdne95196:0"
@@ -11293,6 +11291,10 @@ msgstr "crwdns129502:0crwdne129502:0"
msgid "Group By field is required to create a dashboard chart"
msgstr "crwdns95408:0crwdne95408:0"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr "crwdns155540:0crwdne155540:0"
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "crwdns95410:0crwdne95410:0"
@@ -11341,7 +11343,6 @@ msgstr "crwdns129510:0crwdne129510:0"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11355,7 +11356,6 @@ msgstr "crwdns129510:0crwdne129510:0"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11864,6 +11864,11 @@ msgstr "crwdns155022:0crwdne155022:0"
msgid "Hourly rate limit for generating password reset links"
msgstr "crwdns129600:0crwdne129600:0"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "crwdns155542:0crwdne155542:0"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12629,11 +12634,11 @@ msgstr "crwdns96004:0crwdne96004:0"
msgid "Incorrect Verification code"
msgstr "crwdns96006:0crwdne96006:0"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "crwdns148658:0{0}crwdne148658:0"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "crwdns148660:0crwdne148660:0"
@@ -12785,11 +12790,11 @@ msgstr "crwdns129764:0crwdne129764:0"
msgid "Instructions Emailed"
msgstr "crwdns110976:0crwdne110976:0"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "crwdns96072:0{0}crwdne96072:0"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "crwdns96074:0{0}crwdne96074:0"
@@ -12939,7 +12944,7 @@ msgstr "crwdns96140:0crwdne96140:0"
msgid "Invalid Credentials"
msgstr "crwdns96142:0crwdne96142:0"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "crwdns96144:0crwdne96144:0"
@@ -12947,7 +12952,7 @@ msgstr "crwdns96144:0crwdne96144:0"
msgid "Invalid DocType"
msgstr "crwdns96146:0crwdne96146:0"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "crwdns96148:0{0}crwdne96148:0"
@@ -12959,6 +12964,11 @@ msgstr "crwdns96150:0crwdne96150:0"
msgid "Invalid File URL"
msgstr "crwdns96152:0crwdne96152:0"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr "crwdns155544:0crwdne155544:0"
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "crwdns96154:0{0}crwdnd96154:0{1}crwdne96154:0"
@@ -13023,7 +13033,7 @@ msgstr "crwdns96176:0crwdne96176:0"
msgid "Invalid Password"
msgstr "crwdns96178:0crwdne96178:0"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "crwdns96180:0crwdne96180:0"
@@ -13067,10 +13077,38 @@ msgstr "crwdns96194:0crwdne96194:0"
msgid "Invalid aggregate function"
msgstr "crwdns96196:0crwdne96196:0"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr "crwdns155546:0{0}crwdne155546:0"
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr "crwdns155548:0{0}crwdne155548:0"
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr "crwdns155550:0{0}crwdne155550:0"
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr "crwdns155552:0{0}crwdne155552:0"
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr "crwdns155554:0{0}crwdne155554:0"
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "crwdns96198:0crwdne96198:0"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr "crwdns155556:0{0}crwdne155556:0"
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr "crwdns155558:0{0}crwdne155558:0"
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "crwdns96200:0crwdne96200:0"
@@ -13083,10 +13121,26 @@ msgstr "crwdns96202:0{0}crwdne96202:0"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "crwdns96204:0{0}crwdnd96204:0{1}crwdne96204:0"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr "crwdns155560:0{0}crwdne155560:0"
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0"
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr "crwdns155564:0{0}crwdne155564:0"
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "crwdns96206:0{0}crwdne96206:0"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr "crwdns155566:0{0}crwdne155566:0"
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "crwdns96208:0{0}crwdne96208:0"
@@ -13095,11 +13149,26 @@ msgstr "crwdns96208:0{0}crwdne96208:0"
msgid "Invalid file path: {0}"
msgstr "crwdns96210:0{0}crwdne96210:0"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr "crwdns155568:0{0}crwdne155568:0"
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr "crwdns155570:0{0}crwdne155570:0"
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "crwdns96212:0{0}crwdne96212:0"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr "crwdns155572:0{0}crwdne155572:0"
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr "crwdns155574:0crwdne155574:0"
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13121,10 +13190,22 @@ msgstr "crwdns96222:0crwdne96222:0"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "crwdns96224:0crwdne96224:0"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "crwdns96226:0crwdne96226:0"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr "crwdns155576:0{0}crwdne155576:0"
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr "crwdns155578:0{0}crwdne155578:0"
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr "crwdns155580:0{0}crwdne155580:0"
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "crwdns96230:0crwdne96230:0"
@@ -13566,11 +13647,11 @@ msgstr "crwdns96438:0crwdne96438:0"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "crwdns96440:0crwdne96440:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "crwdns96444:0crwdne96444:0"
@@ -14282,6 +14363,10 @@ msgstr "crwdns130010:0crwdne130010:0"
msgid "Limit"
msgstr "crwdns130012:0crwdne130012:0"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "crwdns155582:0crwdne155582:0"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14545,6 +14630,7 @@ msgid "Load Balancing"
msgstr "crwdns130066:0crwdne130066:0"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15063,11 +15149,9 @@ msgstr "crwdns97090:0crwdne97090:0"
msgid "Mark as Unread"
msgstr "crwdns97092:0crwdne97092:0"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15256,7 +15340,6 @@ msgstr "crwdns97172:0crwdne97172:0"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15269,7 +15352,6 @@ msgstr "crwdns97172:0crwdne97172:0"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15284,16 +15366,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "crwdns97184:0crwdne97184:0"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "crwdns130178:0crwdne130178:0"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "crwdns130180:0crwdne130180:0"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15417,7 +15489,7 @@ msgstr "crwdns97252:0crwdne97252:0"
msgid "Method"
msgstr "crwdns130200:0crwdne130200:0"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "crwdns142858:0crwdne142858:0"
@@ -15467,6 +15539,11 @@ msgstr "crwdns130208:0crwdne130208:0"
msgid "Minor"
msgstr "crwdns130210:0crwdne130210:0"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "crwdns155584:0crwdne155584:0"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15862,7 +15939,7 @@ msgstr "crwdns130242:0{0}crwdnd130242:0{0}crwdne130242:0"
msgid "Must be of type \"Attach Image\""
msgstr "crwdns130244:0crwdne130244:0"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "crwdns97490:0crwdne97490:0"
@@ -16050,6 +16127,10 @@ msgstr "crwdns97572:0crwdne97572:0"
msgid "Negative Value"
msgstr "crwdns97576:0crwdne97576:0"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr "crwdns155586:0crwdne155586:0"
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "crwdns97578:0crwdne97578:0"
@@ -16132,7 +16213,7 @@ msgstr "crwdns97604:0crwdne97604:0"
msgid "New Folder"
msgstr "crwdns97606:0crwdne97606:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "crwdns97608:0crwdne97608:0"
@@ -16276,48 +16357,13 @@ msgstr "crwdns97650:0crwdne97650:0"
msgid "Newly created user {0} has no roles enabled."
msgstr "crwdns97652:0{0}crwdne97652:0"
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "crwdns97654:0crwdne97654:0"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "crwdns97658:0crwdne97658:0"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "crwdns97660:0crwdne97660:0"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "crwdns97662:0crwdne97662:0"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "crwdns97664:0crwdne97664:0"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "crwdns97666:0crwdne97666:0"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "crwdns97668:0crwdne97668:0"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "crwdns97670:0crwdne97670:0"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16579,7 +16625,7 @@ msgstr "crwdns97752:0crwdne97752:0"
msgid "No Roles Specified"
msgstr "crwdns97754:0crwdne97754:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "crwdns97756:0crwdne97756:0"
@@ -16607,10 +16653,6 @@ msgstr "crwdns97760:0crwdne97760:0"
msgid "No automatic optimization suggestions available."
msgstr "crwdns127878:0crwdne127878:0"
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "crwdns97762:0crwdne97762:0"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "crwdns97764:0crwdne97764:0"
@@ -16647,7 +16689,7 @@ msgstr "crwdns111060:0crwdne111060:0"
msgid "No contacts linked to document"
msgstr "crwdns97778:0crwdne97778:0"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "crwdns97780:0crwdne97780:0"
@@ -16667,7 +16709,7 @@ msgstr "crwdns97786:0crwdne97786:0"
msgid "No failed logs"
msgstr "crwdns111062:0crwdne111062:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "crwdns111064:0crwdne111064:0"
@@ -16726,7 +16768,7 @@ msgstr "crwdns130300:0crwdne130300:0"
msgid "No of Sent SMS"
msgstr "crwdns130302:0crwdne130302:0"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "crwdns97808:0{0}crwdne97808:0"
@@ -16854,7 +16896,7 @@ msgstr "crwdns97850:0crwdne97850:0"
msgid "Not Equals"
msgstr "crwdns97852:0crwdne97852:0"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "crwdns97854:0crwdne97854:0"
@@ -16880,7 +16922,7 @@ msgstr "crwdns97862:0crwdne97862:0"
msgid "Not Nullable"
msgstr "crwdns130314:0crwdne130314:0"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16889,7 +16931,7 @@ msgstr "crwdns130314:0crwdne130314:0"
msgid "Not Permitted"
msgstr "crwdns97866:0crwdne97866:0"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "crwdns97868:0{0}crwdne97868:0"
@@ -16917,7 +16959,6 @@ msgstr "crwdns97874:0crwdne97874:0"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "crwdns97876:0crwdne97876:0"
@@ -16950,7 +16991,7 @@ msgstr "crwdns111082:0crwdne111082:0"
msgid "Not active"
msgstr "crwdns97892:0crwdne97892:0"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0"
@@ -17384,6 +17425,10 @@ msgstr "crwdns130378:0crwdne130378:0"
msgid "Offset Y"
msgstr "crwdns130380:0crwdne130380:0"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr "crwdns155588:0crwdne155588:0"
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "crwdns98074:0crwdne98074:0"
@@ -17557,7 +17602,7 @@ msgstr "crwdns98128:0crwdne98128:0"
msgid "Only allowed to export customizations in developer mode"
msgstr "crwdns98132:0crwdne98132:0"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "crwdns127690:0crwdne127690:0"
@@ -17729,7 +17774,7 @@ msgstr "crwdns130426:0crwdne130426:0"
msgid "Operation"
msgstr "crwdns130428:0crwdne130428:0"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "crwdns98200:0{0}crwdne98200:0"
@@ -17828,6 +17873,10 @@ msgstr "crwdns130436:0crwdne130436:0"
msgid "Order"
msgstr "crwdns130438:0crwdne130438:0"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr "crwdns155590:0crwdne155590:0"
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18223,7 +18272,7 @@ msgstr "crwdns98416:0crwdne98416:0"
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "crwdns154732:0crwdne154732:0"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "crwdns98418:0{0}crwdnd98418:0{1}crwdne98418:0"
@@ -18345,10 +18394,6 @@ msgstr "crwdns98474:0crwdne98474:0"
msgid "Passwords do not match!"
msgstr "crwdns98476:0crwdne98476:0"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "crwdns98478:0crwdne98478:0"
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "crwdns98480:0crwdne98480:0"
@@ -18494,7 +18539,7 @@ msgstr "crwdns98536:0{0}crwdne98536:0"
msgid "Permanently delete {0}?"
msgstr "crwdns98538:0{0}crwdne98538:0"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "crwdns98540:0crwdne98540:0"
@@ -18646,7 +18691,7 @@ msgstr "crwdns130562:0crwdne130562:0"
msgid "Phone No."
msgstr "crwdns130564:0crwdne130564:0"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "crwdns98606:0{0}crwdnd98606:0{1}crwdne98606:0"
@@ -18919,10 +18964,6 @@ msgstr "crwdns98724:0crwdne98724:0"
msgid "Please save before attaching."
msgstr "crwdns98726:0crwdne98726:0"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "crwdns98728:0crwdne98728:0"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "crwdns98730:0crwdne98730:0"
@@ -18955,7 +18996,7 @@ msgstr "crwdns98744:0crwdne98744:0"
msgid "Please select X and Y fields"
msgstr "crwdns111128:0crwdne111128:0"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "crwdns98746:0{1}crwdne98746:0"
@@ -18971,7 +19012,7 @@ msgstr "crwdns98748:0crwdne98748:0"
msgid "Please select a valid csv file with data"
msgstr "crwdns98750:0crwdne98750:0"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "crwdns98752:0crwdne98752:0"
@@ -19049,7 +19090,7 @@ msgstr "crwdns154306:0crwdne154306:0"
msgid "Please specify"
msgstr "crwdns98790:0crwdne98790:0"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "crwdns98792:0{0}crwdne98792:0"
@@ -19086,10 +19127,6 @@ msgstr "crwdns98800:0crwdne98800:0"
msgid "Please use a valid LDAP search filter"
msgstr "crwdns98802:0crwdne98802:0"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "crwdns98804:0crwdne98804:0"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "crwdns111462:0crwdne111462:0"
@@ -19183,6 +19220,10 @@ msgstr "crwdns98850:0{0}crwdne98850:0"
msgid "Posts filed under {0}"
msgstr "crwdns98852:0{0}crwdne98852:0"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr "crwdns155592:0{0}crwdne155592:0"
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19242,7 +19283,7 @@ msgstr "crwdns154308:0crwdne154308:0"
msgid "Prepared Report User"
msgstr "crwdns98878:0crwdne98878:0"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "crwdns98880:0crwdne98880:0"
@@ -19271,8 +19312,6 @@ msgstr "crwdns98886:0crwdne98886:0"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19660,7 +19699,7 @@ msgstr "crwdns130650:0crwdne130650:0"
msgid "Progress"
msgstr "crwdns99060:0crwdne99060:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "crwdns99062:0crwdne99062:0"
@@ -19755,14 +19794,7 @@ msgstr "crwdns130662:0crwdne130662:0"
msgid "Publish"
msgstr "crwdns99094:0crwdne99094:0"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "crwdns130664:0crwdne130664:0"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19770,7 +19802,6 @@ msgstr "crwdns130664:0crwdne130664:0"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19945,7 +19976,7 @@ msgstr "crwdns99178:0crwdne99178:0"
msgid "Query analysis complete. Check suggested indexes."
msgstr "crwdns127880:0crwdne127880:0"
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "crwdns99182:0crwdne99182:0"
@@ -19991,7 +20022,6 @@ msgstr "crwdns130700:0crwdne130700:0"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "crwdns99196:0crwdne99196:0"
@@ -20014,19 +20044,11 @@ msgstr "crwdns99208:0{0}crwdne99208:0"
msgid "Queued for backup. You will receive an email with the download link"
msgstr "crwdns99212:0crwdne99212:0"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "crwdns99214:0{0}crwdne99214:0"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "crwdns130706:0crwdne130706:0"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "crwdns99216:0crwdne99216:0"
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "crwdns99218:0{0}crwdne99218:0"
@@ -20227,7 +20249,7 @@ msgstr "crwdns130736:0crwdne130736:0"
msgid "Read mode"
msgstr "crwdns99316:0crwdne99316:0"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "crwdns99318:0crwdne99318:0"
@@ -21094,7 +21116,7 @@ msgstr "crwdns99726:0crwdne99726:0"
msgid "Report timed out."
msgstr "crwdns99728:0crwdne99728:0"
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "crwdns99730:0crwdne99730:0"
@@ -21115,7 +21137,7 @@ msgstr "crwdns99736:0{0}crwdne99736:0"
msgid "Report {0} deleted"
msgstr "crwdns99738:0{0}crwdne99738:0"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "crwdns99740:0{0}crwdne99740:0"
@@ -21448,10 +21470,8 @@ msgstr "crwdns99904:0crwdne99904:0"
msgid "Revoked"
msgstr "crwdns130900:0crwdne130900:0"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21662,7 +21682,6 @@ msgstr "crwdns130926:0crwdne130926:0"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21676,7 +21695,6 @@ msgstr "crwdns130926:0crwdne130926:0"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21794,7 +21812,7 @@ msgstr "crwdns130940:0crwdne130940:0"
msgid "Rule Conditions"
msgstr "crwdns130942:0crwdne130942:0"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "crwdns100084:0crwdne100084:0"
@@ -21983,11 +22001,11 @@ msgstr "crwdns130978:0crwdne130978:0"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22079,32 +22097,17 @@ msgstr "crwdns100204:0crwdne100204:0"
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "crwdns100206:0crwdne100206:0"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "crwdns100208:0crwdne100208:0"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "crwdns100210:0crwdne100210:0"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "crwdns100212:0crwdne100212:0"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "crwdns130982:0crwdne130982:0"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "crwdns100216:0crwdne100216:0"
@@ -22138,17 +22141,6 @@ msgstr "crwdns100228:0crwdne100228:0"
msgid "Scheduled Jobs Logs"
msgstr "crwdns143312:0crwdne143312:0"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "crwdns130986:0crwdne130986:0"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "crwdns130988:0crwdne130988:0"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "crwdns100240:0{0}crwdne100240:0"
@@ -22360,6 +22352,11 @@ msgstr "crwdns100316:0crwdne100316:0"
msgid "Searching ..."
msgstr "crwdns100318:0crwdne100318:0"
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "crwdns155594:0crwdne155594:0"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22749,9 +22746,7 @@ msgstr "crwdns100490:0{0}crwdne100490:0"
msgid "Self approval is not allowed"
msgstr "crwdns100492:0crwdne100492:0"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "crwdns100494:0crwdne100494:0"
@@ -22782,11 +22777,6 @@ msgstr "crwdns131050:0crwdne131050:0"
msgid "Send Email Alert"
msgstr "crwdns131052:0crwdne131052:0"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "crwdns131054:0crwdne131054:0"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22844,38 +22834,16 @@ msgstr "crwdns100532:0crwdne100532:0"
msgid "Send System Notification"
msgstr "crwdns131076:0crwdne131076:0"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "crwdns100536:0crwdne100536:0"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "crwdns131078:0crwdne131078:0"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "crwdns131080:0crwdne131080:0"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "crwdns131082:0crwdne131082:0"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "crwdns131084:0crwdne131084:0"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "crwdns100548:0crwdne100548:0"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "crwdns100550:0crwdne100550:0"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22923,10 +22891,6 @@ msgstr "crwdns100562:0crwdne100562:0"
msgid "Send me a copy"
msgstr "crwdns100564:0crwdne100564:0"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "crwdns100566:0crwdne100566:0"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22942,19 +22906,15 @@ msgstr "crwdns131098:0crwdne131098:0"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "crwdns131100:0crwdne131100:0"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "crwdns131102:0crwdne131102:0"
@@ -22971,9 +22931,7 @@ msgid "Sender Field should have Email in options"
msgstr "crwdns100592:0crwdne100592:0"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "crwdns131106:0crwdne131106:0"
@@ -22993,18 +22951,9 @@ msgstr "crwdns131110:0crwdne131110:0"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "crwdns100604:0crwdne100604:0"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "crwdns100610:0crwdne100610:0"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "crwdns100612:0crwdne100612:0"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23012,8 +22961,6 @@ msgstr "crwdns100612:0crwdne100612:0"
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "crwdns100614:0crwdne100614:0"
@@ -23083,7 +23030,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0"
msgid "Server Action"
msgstr "crwdns131128:0crwdne131128:0"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "crwdns100646:0crwdne100646:0"
@@ -23102,7 +23049,7 @@ msgstr "crwdns131130:0crwdne131130:0"
msgid "Server Script"
msgstr "crwdns100650:0crwdne100650:0"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "crwdns100660:0crwdne100660:0"
@@ -23141,15 +23088,15 @@ msgstr "crwdns100672:0crwdne100672:0"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "crwdns100674:0crwdne100674:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "crwdns100678:0crwdne100678:0"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "crwdns100680:0crwdne100680:0"
@@ -23379,7 +23326,7 @@ msgstr "crwdns100754:0crwdne100754:0"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24462,7 +24409,6 @@ msgstr "crwdns131324:0crwdne131324:0"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24487,7 +24433,6 @@ msgstr "crwdns131324:0crwdne131324:0"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24628,8 +24573,6 @@ msgstr "crwdns131356:0crwdne131356:0"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24638,7 +24581,6 @@ msgstr "crwdns131356:0crwdne131356:0"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25009,7 +24951,7 @@ msgstr "crwdns101474:0crwdne101474:0"
msgid "Syncing {0} of {1}"
msgstr "crwdns101476:0{0}crwdnd101476:0{1}crwdne101476:0"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "crwdns101478:0crwdne101478:0"
@@ -25316,7 +25258,7 @@ msgstr "crwdns112742:0crwdne112742:0"
msgid "Table updated"
msgstr "crwdns101536:0crwdne101536:0"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "crwdns101538:0{0}crwdne101538:0"
@@ -25443,10 +25385,6 @@ msgstr "crwdns131430:0crwdne131430:0"
msgid "Test Spanish"
msgstr "crwdns149016:0crwdne149016:0"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "crwdns101590:0{0}crwdne101590:0"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "crwdns101592:0crwdne101592:0"
@@ -25512,10 +25450,6 @@ msgstr "crwdns101622:0crwdne101622:0"
msgid "Thank you for your feedback!"
msgstr "crwdns101624:0crwdne101624:0"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "crwdns101626:0crwdne101626:0"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "crwdns148336:0crwdne148336:0"
@@ -25704,7 +25638,7 @@ msgstr "crwdns101696:0crwdne101696:0"
msgid "The reset password link has either been used before or is invalid"
msgstr "crwdns101698:0crwdne101698:0"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "crwdns101700:0crwdne101700:0"
@@ -25716,7 +25650,7 @@ msgstr "crwdns101702:0{0}crwdne101702:0"
msgid "The selected document {0} is not a {1}."
msgstr "crwdns101704:0{0}crwdnd101704:0{1}crwdne101704:0"
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "crwdns101706:0crwdne101706:0"
@@ -25869,7 +25803,7 @@ msgstr "crwdns131474:0crwdne131474:0"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "crwdns101768:0crwdne101768:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "crwdns101774:0crwdne101774:0"
@@ -25893,7 +25827,7 @@ msgstr "crwdns155058:0crwdne155058:0"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "crwdns112746:0crwdne112746:0"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "crwdns101776:0crwdne101776:0"
@@ -26053,14 +25987,6 @@ msgstr "crwdns101834:0crwdne101834:0"
msgid "This month"
msgstr "crwdns101836:0crwdne101836:0"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "crwdns101838:0{0}crwdne101838:0"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "crwdns101840:0crwdne101840:0"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0"
@@ -26173,7 +26099,6 @@ msgstr "crwdns131496:0crwdne131496:0"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "crwdns101884:0crwdne101884:0"
@@ -26399,10 +26324,8 @@ msgid "Title of the page"
msgstr "crwdns102014:0crwdne102014:0"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "crwdns102016:0crwdne102016:0"
@@ -26679,7 +26602,7 @@ msgstr "crwdns131572:0crwdne131572:0"
msgid "Topic"
msgstr "crwdns131574:0crwdne131574:0"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26707,16 +26630,8 @@ msgstr "crwdns111290:0crwdne111290:0"
msgid "Total Outgoing Emails"
msgstr "crwdns131580:0crwdne131580:0"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "crwdns131582:0crwdne131582:0"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "crwdns131584:0crwdne131584:0"
@@ -26725,11 +26640,6 @@ msgstr "crwdns131584:0crwdne131584:0"
msgid "Total Users"
msgstr "crwdns131586:0crwdne131586:0"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "crwdns131588:0crwdne131588:0"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27126,23 +27036,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "crwdns131658:0crwdne131658:0"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "crwdns148956:0crwdne148956:0"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "crwdns148958:0crwdne148958:0"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "crwdns148960:0crwdne148960:0"
@@ -27192,7 +27096,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0"
msgid "Unassign Condition"
msgstr "crwdns131662:0crwdne131662:0"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "crwdns151458:0crwdne151458:0"
@@ -27208,6 +27112,10 @@ msgstr "crwdns102350:0crwdne102350:0"
msgid "Undo last action"
msgstr "crwdns102352:0crwdne102352:0"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr "crwdns155596:0{0}crwdne155596:0"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27240,7 +27148,7 @@ msgstr "crwdns111298:0crwdne111298:0"
msgid "Unknown Column: {0}"
msgstr "crwdns102366:0{0}crwdne102366:0"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "crwdns102368:0crwdne102368:0"
@@ -27273,7 +27181,7 @@ msgstr "crwdns131668:0crwdne131668:0"
msgid "Unread Notification Sent"
msgstr "crwdns131670:0crwdne131670:0"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "crwdns102382:0crwdne102382:0"
@@ -27287,7 +27195,7 @@ msgstr "crwdns111300:0crwdne111300:0"
msgid "Unshared"
msgstr "crwdns131672:0crwdne131672:0"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "crwdns102388:0crwdne102388:0"
@@ -27311,6 +27219,11 @@ msgstr "crwdns154322:0crwdne154322:0"
msgid "Unsubscribed"
msgstr "crwdns102394:0crwdne102394:0"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr "crwdns155598:0{0}crwdne155598:0"
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "crwdns102402:0crwdne102402:0"
@@ -27433,7 +27346,7 @@ msgstr "crwdns102450:0crwdne102450:0"
msgid "Updated successfully"
msgstr "crwdns102452:0crwdne102452:0"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "crwdns102456:0crwdne102456:0"
@@ -28168,7 +28081,7 @@ msgstr "crwdns102770:0crwdne102770:0"
msgid "Value {0} missing for {1}"
msgstr "crwdns102772:0{0}crwdnd102772:0{1}crwdne102772:0"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "crwdns102774:0{0}crwdne102774:0"
@@ -28593,7 +28506,6 @@ msgstr "crwdns131842:0crwdne131842:0"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28601,9 +28513,7 @@ msgid "Website"
msgstr "crwdns102952:0crwdne102952:0"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "crwdns102956:0crwdne102956:0"
@@ -29039,7 +28949,7 @@ msgstr "crwdns112760:0crwdne112760:0"
msgid "Workspace"
msgstr "crwdns103156:0crwdne103156:0"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "crwdns103162:0{0}crwdne103162:0"
@@ -29262,11 +29172,11 @@ msgstr "crwdns111444:0crwdne111444:0"
msgid "You are not allowed to access this resource"
msgstr "crwdns151618:0crwdne151618:0"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "crwdns103258:0{0}crwdnd103258:0{1}crwdnd103258:0{2}crwdnd103258:0{3}crwdne103258:0"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "crwdns103260:0{0}crwdnd103260:0{1}crwdnd103260:0{2}crwdnd103260:0{3}crwdnd103260:0{4}crwdne103260:0"
@@ -29289,7 +29199,7 @@ msgstr "crwdns103268:0crwdne103268:0"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "crwdns103270:0crwdne103270:0"
@@ -29317,7 +29227,7 @@ msgstr "crwdns103280:0crwdne103280:0"
msgid "You are not permitted to access this page."
msgstr "crwdns103282:0crwdne103282:0"
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "crwdns155350:0crwdne155350:0"
@@ -29412,7 +29322,7 @@ msgstr "crwdns111340:0crwdne111340:0"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "crwdns148354:0crwdne148354:0"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "crwdns103318:0crwdne103318:0"
@@ -29489,11 +29399,15 @@ msgstr "crwdns103348:0crwdne103348:0"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "crwdns103350:0crwdne103350:0"
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "crwdns103352:0crwdne103352:0"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr "crwdns155600:0{0}crwdne155600:0"
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
@@ -29501,7 +29415,7 @@ msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
msgid "You do not have permissions to cancel all linked documents."
msgstr "crwdns103360:0crwdne103360:0"
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "crwdns103362:0{0}crwdne103362:0"
@@ -29509,11 +29423,11 @@ msgstr "crwdns103362:0{0}crwdne103362:0"
msgid "You don't have permission to access the {0} DocType."
msgstr "crwdns103364:0{0}crwdne103364:0"
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "crwdns103366:0crwdne103366:0"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "crwdns103368:0{0}crwdne103368:0"
@@ -29606,7 +29520,7 @@ msgstr "crwdns112716:0crwdne112716:0"
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "crwdns103406:0crwdne103406:0"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "crwdns103408:0crwdne103408:0"
@@ -29772,7 +29686,7 @@ msgstr "crwdns131910:0crwdne131910:0"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "crwdns103468:0crwdne103468:0"
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "crwdns103470:0crwdne103470:0"
@@ -29784,7 +29698,7 @@ msgstr "crwdns111354:0crwdne111354:0"
msgid "Your verification code is {0}"
msgstr "crwdns103472:0{0}crwdne103472:0"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "crwdns103476:0crwdne103476:0"
@@ -29831,7 +29745,7 @@ msgstr "crwdns131918:0crwdne131918:0"
msgid "amend"
msgstr "crwdns131920:0crwdne131920:0"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "crwdns103502:0crwdne103502:0"
@@ -29888,7 +29802,7 @@ msgstr "crwdns131930:0crwdne131930:0"
msgid "cyan"
msgstr "crwdns131932:0crwdne131932:0"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30003,7 +29917,7 @@ msgstr "crwdns131958:0crwdne131958:0"
msgid "email inbox"
msgstr "crwdns103630:0crwdne103630:0"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "crwdns103632:0crwdne103632:0"
@@ -30055,7 +29969,7 @@ msgstr "crwdns131974:0crwdne131974:0"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "crwdns103692:0crwdne103692:0"
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30089,7 +30003,7 @@ msgstr "crwdns103730:0crwdne103730:0"
msgid "just now"
msgstr "crwdns103732:0crwdne103732:0"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "crwdns103734:0crwdne103734:0"
@@ -30129,7 +30043,7 @@ msgstr "crwdns111362:0crwdne111362:0"
msgid "long"
msgstr "crwdns131990:0crwdne131990:0"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30319,7 +30233,7 @@ msgstr "crwdns132042:0crwdne132042:0"
msgid "restored {0} as {1}"
msgstr "crwdns103898:0{0}crwdnd103898:0{1}crwdne103898:0"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30654,7 +30568,7 @@ msgstr "crwdns104100:0{0}crwdne104100:0"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "crwdns104102:0{0}crwdnd104102:0{1}crwdnd104102:0{2}crwdne104102:0"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0"
@@ -30760,6 +30674,10 @@ msgstr "crwdns104166:0{0}crwdnd104166:0{1}crwdne104166:0"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "crwdns104168:0{0}crwdnd104168:0{1}crwdne104168:0"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr "crwdns155602:0{0}crwdnd155602:0{1}crwdne155602:0"
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "crwdns104170:0{0}crwdnd104170:0{1}crwdne104170:0"
@@ -30780,10 +30698,6 @@ msgstr "crwdns104184:0{0}crwdne104184:0"
msgid "{0} has already assigned default value for {1}."
msgstr "crwdns104186:0{0}crwdnd104186:0{1}crwdne104186:0"
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "crwdns104188:0{0}crwdne104188:0"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "crwdns104190:0{0}crwdnd104190:0{1}crwdnd104190:0{2}crwdne104190:0"
@@ -30854,6 +30768,10 @@ msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0"
msgid "{0} is mandatory"
msgstr "crwdns104224:0{0}crwdne104224:0"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr "crwdns155604:0{0}crwdnd155604:0{1}crwdne155604:0"
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "crwdns104226:0{0}crwdnd104226:0{1}crwdne104226:0"
@@ -30875,7 +30793,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "crwdns104232:0{0}crwdne104232:0"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "crwdns104234:0{0}crwdne104234:0"
@@ -30883,11 +30801,11 @@ msgstr "crwdns104234:0{0}crwdne104234:0"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "crwdns152102:0{0}crwdne152102:0"
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "crwdns104236:0{0}crwdne104236:0"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "crwdns104238:0{0}crwdne104238:0"
@@ -30895,11 +30813,11 @@ msgstr "crwdns104238:0{0}crwdne104238:0"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "crwdns104240:0{0}crwdne104240:0"
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "crwdns104242:0{0}crwdnd104242:0{1}crwdne104242:0"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0"
@@ -30987,23 +30905,23 @@ msgstr "crwdns104280:0{0}crwdne104280:0"
msgid "{0} months ago"
msgstr "crwdns104282:0{0}crwdne104282:0"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "crwdns148714:0{0}crwdnd148714:0{1}crwdne148714:0"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "crwdns148716:0{0}crwdnd148716:0{1}crwdne148716:0"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0"
@@ -31015,7 +30933,7 @@ msgstr "crwdns104288:0{0}crwdne104288:0"
msgid "{0} must be unique"
msgstr "crwdns104290:0{0}crwdne104290:0"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0"
@@ -31044,16 +30962,12 @@ msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0"
msgid "{0} of {1} ({2} rows with children)"
msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "crwdns104304:0{0}crwdnd104304:0{1}crwdne104304:0"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "crwdns104510:0{0}crwdne104510:0"
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "crwdns104306:0{0}crwdnd104306:0{1}crwdne104306:0"
@@ -31090,11 +31004,11 @@ msgstr "crwdns104320:0{0}crwdne104320:0"
msgid "{0} role does not have permission on any doctype"
msgstr "crwdns111370:0{0}crwdne111370:0"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0"
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "crwdns104328:0{0}crwdne104328:0"
@@ -31206,7 +31120,7 @@ msgstr "crwdns104378:0{0}crwdnd104378:0{1}crwdne104378:0"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
@@ -31359,11 +31273,11 @@ msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0"
msgid "{} Complete"
msgstr "crwdns104450:0crwdne104450:0"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "crwdns104452:0crwdne104452:0"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "crwdns104454:0crwdne104454:0"
@@ -31385,7 +31299,7 @@ msgstr "crwdns104458:0crwdne104458:0"
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "crwdns104460:0crwdne104460:0"
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "crwdns104462:0crwdne104462:0"
diff --git a/frappe/locale/es.po b/frappe/locale/es.po
index b44ca7bbac..aa2b29f469 100644
--- a/frappe/locale/es.po
+++ b/frappe/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:33\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'En vista de lista' no está permitido para el tipo {0} en el renglón {
msgid "'Recipients' not specified"
msgstr "'Destinatarios' no especificados"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' no es una URL válida"
@@ -986,7 +986,7 @@ msgstr "Acción / Ruta"
msgid "Action Complete"
msgstr "Acción completada"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Acción Fallida"
@@ -1625,6 +1625,14 @@ msgstr "Alerta"
msgid "Alerts and Notifications"
msgstr "Alertas y Notificaciones"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1665,7 +1673,6 @@ msgstr "Alinear Valor"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2111,7 +2118,7 @@ msgstr "Enmienda no permitida"
msgid "Amendment naming rules updated."
msgstr "Reglas de nomenclatura rectificada actualizadas."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Se produjo un error al configurar los valores predeterminados de la sesión"
@@ -2229,7 +2236,7 @@ msgstr "Nombre de la Aplicación"
msgid "App not found for module: {0}"
msgstr "App no encontrada para el módulo: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Aplicación {0} no está instalada"
@@ -2443,10 +2450,6 @@ msgstr "¿Está seguro de que desea restablecer todas las personalizaciones?"
msgid "Are you sure you want to save this document?"
msgstr "¿Está seguro de que desea guardar este documento?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "¿Está seguro de que desea enviar este boletín ahora?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2700,9 +2703,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "El nombre \"Adjuntado a\" debe ser una cadena o un entero"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Adjunto"
@@ -2729,10 +2730,7 @@ msgid "Attachment Removed"
msgstr "Adjunto Eliminado"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2750,11 +2748,6 @@ msgstr "Intentando iniciar QZ Tray..."
msgid "Attribution"
msgstr "Atribuciones"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Audiencia"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3181,7 +3174,7 @@ msgstr "Imagen de Fondo"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Trabajos en Segundo Plano"
@@ -3910,9 +3903,7 @@ msgstr "Título de devolución de llamada"
msgid "Camera"
msgstr "Cámara"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3998,10 +3989,6 @@ msgstr "Cancelar todo"
msgid "Cancel All Documents"
msgstr "Cancelar todos los documentos"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Cancelar Programación"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4295,7 +4282,7 @@ msgstr "Descripción de categoría"
msgid "Category Name"
msgstr "Nombre Categoría"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Centavo"
@@ -4464,10 +4451,6 @@ msgstr "Marcar"
msgid "Check Request URL"
msgstr "Verificar URL de Solicitud"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Comprobar enlaces rotos"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Marque las columnas para seleccionar, arrastrar para establecer el orden."
@@ -4491,10 +4474,6 @@ msgstr "Seleccione esta opción si desea obligar al usuario a seleccionar una se
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Comprobando enlaces rotos..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Comprobando un momento"
@@ -4541,6 +4520,10 @@ msgstr "Tabla secundaria {0} para el campo {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Las tablas secundarias se muestran como una cuadrícula en otros DocTypes"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Elija una tarjeta existente o cree una nueva tarjeta"
@@ -4630,10 +4613,6 @@ msgstr "Haga clic en Personalizar para agregar su primer widget"
msgid "Click here"
msgstr "Click aquí"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Haga clic aquí para verificar"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Haga clic en un archivo para seleccionarlo."
@@ -4975,7 +4954,7 @@ msgstr "Columnas"
msgid "Columns / Fields"
msgstr "Columnas / Campos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Columnas basadas en"
@@ -5297,17 +5276,12 @@ msgstr "Confirmar Contraseña"
msgid "Confirm Request"
msgstr "Confirmar petición"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Confirme su Email"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Plantilla de correo electrónico de confirmación"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Confirmado"
@@ -5438,8 +5412,6 @@ msgstr "Contiene {0} correcciones de seguridad"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5447,7 +5419,6 @@ msgstr "Contiene {0} correcciones de seguridad"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5472,10 +5443,8 @@ msgstr "Contenido (descuento)"
msgid "Content Hash"
msgstr "Contenido Hash"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5581,6 +5550,10 @@ msgstr "No se pudo encontrar {0}"
msgid "Could not map column {0} to field {1}"
msgstr "No se pudo asignar la columna {0} al campo {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "No se pudo iniciar: "
@@ -5636,7 +5609,7 @@ msgstr "Mostrador"
msgid "Country"
msgstr "País"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Código de País requerido"
@@ -5767,11 +5740,6 @@ msgstr "Crear: {0}"
msgid "Create a {0} Account"
msgstr "Cree una cuenta en {0}"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Cree y envíe periódicamente correos electrónicos a un grupo específico de suscriptores."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Crear o Editar Formato Impresión"
@@ -6120,6 +6088,10 @@ msgstr "Traducción personalizada"
msgid "Custom field renamed to {0} successfully."
msgstr "Campo personalizado renombrado a {0} exitosamente."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6177,7 +6149,7 @@ msgstr "Personalizar el Tablero"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Personalizar Formulario"
@@ -6470,7 +6442,6 @@ msgstr "Versión de la base de datos"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6534,6 +6505,11 @@ msgstr "Día"
msgid "Day of Week"
msgstr "Día de la semana"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dias"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6801,6 +6777,7 @@ msgstr "Retrasado"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7113,6 +7090,7 @@ msgstr "Tema de Escritorio"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7869,7 +7847,7 @@ msgid "Document Types and Permissions"
msgstr "Tipos de documentos y permisos"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Documento desbloqueado"
@@ -8487,7 +8465,6 @@ msgstr "Selector de elementos"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8581,11 +8558,9 @@ msgstr "Adjuntar dirección en pie de página"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Grupo de Correo Electrónico"
@@ -8658,18 +8633,11 @@ msgstr "Límite de reintentos de correo electrónico"
msgid "Email Rule"
msgstr "Regla de correo electrónico"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Correo Electrónico Enviado"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "Correo enviado el"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8776,10 +8744,18 @@ msgstr "Los Correos Electrónicos se enviarán con las próximas acciones de flu
msgid "Embed code copied"
msgstr "Código integrado copiado"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Columna vacía"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9244,6 +9220,14 @@ msgstr "Error en la Notificación"
msgid "Error in print format on line {0}: {1}"
msgstr "Error en formato de impresión en línea {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Error al conectarte a la cuenta de correo electrónico {0}"
@@ -9440,6 +9424,10 @@ msgstr "Expandir"
msgid "Expand All"
msgstr "Expandir todo"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Experimental"
@@ -9971,7 +9959,7 @@ msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre automático"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Nombre de campo está limitado a 64 caracteres ({0})"
@@ -9987,7 +9975,7 @@ msgstr "Nombre de campo por el cual el 'DocType' enlazará el campo."
msgid "Fieldname {0} appears multiple times"
msgstr "El nombre de campo {0} aparece varias veces"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}"
@@ -10039,6 +10027,10 @@ msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Los campos deben ser una lista o tupla cuando as_list está activado"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10204,6 +10196,14 @@ msgstr "Nombre del Filtro"
msgid "Filter Values"
msgstr "Valores del Filtro"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filtrar..."
@@ -10447,10 +10447,6 @@ msgstr "Siguientes campos tienen valores que faltan"
msgid "Following fields have missing values:"
msgstr "Siguientes campos tienen valores que faltan:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Los siguientes enlaces están rotos en el contenido del correo electrónico: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10868,10 +10864,8 @@ msgid "Friday"
msgstr "Viernes"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Desde"
@@ -10952,10 +10946,14 @@ msgstr "Función"
msgid "Function Based On"
msgstr "Función basada en"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "La función {0} no está en la lista blanca."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Sólo se pueden crear más nodos bajo nodos de tipo 'Grupo'"
@@ -11437,6 +11435,10 @@ msgstr "Agrupar por tipo"
msgid "Group By field is required to create a dashboard chart"
msgstr "El campo agrupar por, es obligatorio para crear un gráfico del tablero"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Agrupar por nota"
@@ -11485,7 +11487,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11499,7 +11500,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12008,6 +12008,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Límite de tarifa por hora para generar enlaces de restablecimiento de contraseña"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Horas"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12773,11 +12778,11 @@ msgstr "Usuario o Contraseña Incorrecta"
msgid "Incorrect Verification code"
msgstr "Código de Verificación incorrecto"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Valor incorrecto en la fila {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Valor incorrecto:"
@@ -12929,11 +12934,11 @@ msgstr "Instrucciones"
msgid "Instructions Emailed"
msgstr "Instrucciones enviadas por correo electrónico"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Nivel de permiso insuficiente para {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Permiso insuficiente para {0}"
@@ -13083,7 +13088,7 @@ msgstr "Condición inválida: {}"
msgid "Invalid Credentials"
msgstr "Credenciales no válidas"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Fecha invalida"
@@ -13091,7 +13096,7 @@ msgstr "Fecha invalida"
msgid "Invalid DocType"
msgstr "DocType inválido"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "DocType no válido: {0}"
@@ -13103,6 +13108,11 @@ msgstr "Nombre de campo no válido"
msgid "Invalid File URL"
msgstr "URL de archivo inválida"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Formato de filtro no válido para el campo {0} de tipo {1}. Pruebe a utilizar el icono de filtro en el campo para configurarlo correctamente"
@@ -13167,7 +13177,7 @@ msgstr "Parámetros Inválidos."
msgid "Invalid Password"
msgstr "Contraseña invalida"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Numero de telefono invalido"
@@ -13211,10 +13221,38 @@ msgstr "Secreto de Webhook inválido"
msgid "Invalid aggregate function"
msgstr "Función de agregación inválida"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Columna inválida"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Estado del documento no válido"
@@ -13227,10 +13265,26 @@ msgstr "Conjunto de expresión no válida en el filtro {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Conjunto de expresión no válida en el filtro {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nombre de campo inválido {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nombre de campo no válido '{0}' en nombre automático"
@@ -13239,11 +13293,26 @@ msgstr "Nombre de campo no válido '{0}' en nombre automático"
msgid "Invalid file path: {0}"
msgstr "Ruta no válida archivo: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Filtro no válido: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13265,10 +13334,22 @@ msgstr "Contenido no válido o dañado para importar"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex de redirección no válida en la fila #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Argumentos de solicitud inválidos"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Archivo de plantilla no válido para importar"
@@ -13710,11 +13791,11 @@ msgstr "Columna de Tablero Kanban"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Nombre del Tablero Kanban"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Configuración de Kanban"
@@ -14426,6 +14507,10 @@ msgstr "Me Gustas"
msgid "Limit"
msgstr "Límite"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14689,6 +14774,7 @@ msgid "Load Balancing"
msgstr "Balanceo de carga"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15207,11 +15293,9 @@ msgstr "Marcar como Correo No Deseado"
msgid "Mark as Unread"
msgstr "Marcar como no Leído"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15400,7 +15484,6 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15413,7 +15496,6 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15428,16 +15510,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Mensaje"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Mensaje (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Mensaje (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15561,7 +15633,7 @@ msgstr "Meta título para SEO"
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Método no permitido"
@@ -15611,6 +15683,11 @@ msgstr "Puntuación mínima de contraseña"
msgid "Minor"
msgstr "Menor"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minutos"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16006,7 +16083,7 @@ msgstr "Debe ir encerrado entre '()' e incluir '{0}', que es un marcador de posi
msgid "Must be of type \"Attach Image\""
msgstr "Debe ser del tipo \"Adjuntar Imagen\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Debe tener permisos de reporte para ver este documento."
@@ -16196,6 +16273,10 @@ msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el ár
msgid "Negative Value"
msgstr "Valor negativo"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Error de conjunto anidado. Contacta con el administrador."
@@ -16278,7 +16359,7 @@ msgstr "Nuevo Evento"
msgid "New Folder"
msgstr "Nueva carpeta"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nuevo Tablero Kanban"
@@ -16422,48 +16503,13 @@ msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponib
msgid "Newly created user {0} has no roles enabled."
msgstr "El usuario recién creado {0} no tiene ningún rol habilitado."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Boletín de noticias"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Adjuntar boletín de noticias"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Boletín Grupo de correo electrónico"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Administrador de boletínes"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "El boletín ya ha sido enviado"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Se debe publicar el boletín de noticias para enviar un enlace a la vista web en el correo electrónico"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "El boletín debe tener al menos un destinatario"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Boletines"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16725,7 +16771,7 @@ msgstr "No se encontraron resultados"
msgid "No Roles Specified"
msgstr "No hay Roles especificados"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "No se ha encontrado ningún campo de selección"
@@ -16753,10 +16799,6 @@ msgstr "No hay alertas para hoy"
msgid "No automatic optimization suggestions available."
msgstr "No hay sugerencias de optimización automática disponibles."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "No se han encontrado enlaces rotos en el contenido del correo electrónico"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Sin cambios en el documento"
@@ -16793,7 +16835,7 @@ msgstr "Ningún contacto agregado todavía."
msgid "No contacts linked to document"
msgstr "No hay contactos vinculados al documento"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "No hay datos para exportar"
@@ -16813,7 +16855,7 @@ msgstr "No hay una cuenta de correo electrónico asociada con el usuario. Por fa
msgid "No failed logs"
msgstr "No hay registros fallidos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "No se han encontrado campos que puedan utilizarse como Columna Kanban. Utilice el formulario de personalización para añadir un campo personalizado de tipo \"Seleccionar\"."
@@ -16872,7 +16914,7 @@ msgstr "No se de filas (máx 500)"
msgid "No of Sent SMS"
msgstr "Nº de SMS enviados"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Sin permiso para {0}"
@@ -17000,7 +17042,7 @@ msgstr "No son Descendientes de"
msgid "Not Equals"
msgstr "No es igual"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "No encontrado"
@@ -17026,7 +17068,7 @@ msgstr "No está vinculado a ningún registro"
msgid "Not Nullable"
msgstr "No nulo"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17035,7 +17077,7 @@ msgstr "No nulo"
msgid "Not Permitted"
msgstr "No permitido"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "No permitido leer {0}"
@@ -17063,7 +17105,6 @@ msgstr "No visto"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "No enviado"
@@ -17096,7 +17137,7 @@ msgstr "Usuario no válido"
msgid "Not active"
msgstr "No activo"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "No permitido para {0}: {1}"
@@ -17530,6 +17571,10 @@ msgstr "Desplazamiento X"
msgid "Offset Y"
msgstr "Desplazamiento Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Contraseña anterior"
@@ -17703,7 +17748,7 @@ msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabaj
msgid "Only allowed to export customizations in developer mode"
msgstr "Solo se permite exportar personalizaciones en modo desarrollador"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Solo pueden descartarse los borradores de documentos"
@@ -17875,7 +17920,7 @@ msgstr "Abierto"
msgid "Operation"
msgstr "Operación"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "El Operador debe ser uno de {0}"
@@ -17974,6 +18019,10 @@ msgstr "Naranja"
msgid "Order"
msgstr "Orden"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18369,7 +18418,7 @@ msgstr "Parent es el nombre del documento al que se agregarán los datos."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Campo padre no especificado en {0}: {1}"
@@ -18491,10 +18540,6 @@ msgstr "Las contraseñas no coinciden"
msgid "Passwords do not match!"
msgstr "¡Las contraseñas no coinciden!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Las fechas pasadas no están permitidas para Programación."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Pegar"
@@ -18640,7 +18685,7 @@ msgstr "¿Validar permanentemente {0}?"
msgid "Permanently delete {0}?"
msgstr "¿Eliminar permanentemente \"{0}\"?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Error de Permiso"
@@ -18792,7 +18837,7 @@ msgstr "Teléfono"
msgid "Phone No."
msgstr "No. de teléfono"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Número de teléfono {0} establecido en el campo {1} no es válido."
@@ -19065,10 +19110,6 @@ msgstr "Por favor, elimine la asignación de la impresora en Configuración de l
msgid "Please save before attaching."
msgstr "Por favor, guarde los cambios antes de adjuntar"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Por favor, guarde el boletín antes de enviarlo"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Por favor, guarde el documento antes de la asignación"
@@ -19101,7 +19142,7 @@ msgstr "Seleccione el valor mínimo de la contraseña"
msgid "Please select X and Y fields"
msgstr "Por favor, seleccione campos X e Y"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Por favor, seleccione un código de país para el campo {1}."
@@ -19117,7 +19158,7 @@ msgstr "Por favor, seleccione un archivo o url"
msgid "Please select a valid csv file with data"
msgstr "Por favor, seleccione un archivo csv con datos válidos"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Seleccione un filtro de fecha válido"
@@ -19195,7 +19236,7 @@ msgstr ""
msgid "Please specify"
msgstr "Por favor, especifique"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Por favor, especifique un DocType padre válido para {0}"
@@ -19232,10 +19273,6 @@ msgstr "Por favor, actualice {} antes de continuar."
msgid "Please use a valid LDAP search filter"
msgstr "Por favor, utilice un filtro de búsqueda LDAP válido"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Por favor verifica tu dirección de correo"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Por favor, visite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key para más información."
@@ -19329,6 +19366,10 @@ msgstr "Entradas por {0}"
msgid "Posts filed under {0}"
msgstr "Publicar bajo {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19388,7 +19429,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Usuario de informe preparado"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Error en la representación del informe preparado"
@@ -19417,8 +19458,6 @@ msgstr "Presione Enter para guardar"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19806,7 +19845,7 @@ msgstr "Perfil"
msgid "Progress"
msgstr "Progreso"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Proyecto"
@@ -19901,14 +19940,7 @@ msgstr "Archivos públicos (MB)"
msgid "Publish"
msgstr "Publicar"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Publicar como página web"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19916,7 +19948,6 @@ msgstr "Publicar como página web"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20091,7 +20122,7 @@ msgstr "Informe de Consultas"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Análisis de consultas finalizado. Compruebe los índices sugeridos."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "La consulta debe ser de tipo SELECT o WITH de sólo lectura."
@@ -20137,7 +20168,6 @@ msgstr "Cola(s)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "En cola"
@@ -20160,19 +20190,11 @@ msgstr "En cola para envío. Puedes seguir el progreso durante {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "En cola para la copia de seguridad. Recibirá un correo electrónico con el enlace de descarga"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "Correos electrónicos {0} en cola"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Colas"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "Poniendo correos electrónicos en cola..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "Poniendo en cola {0} para su envío"
@@ -20373,7 +20395,7 @@ msgstr "Leído por el Destinatario en"
msgid "Read mode"
msgstr "Modo de lectura"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Lea la documentación para saber más"
@@ -21240,7 +21262,7 @@ msgstr "Límite de reportes alcanzado"
msgid "Report timed out."
msgstr "Se agotó el tiempo de espera para reportar."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Informe actualizado con éxito"
@@ -21261,7 +21283,7 @@ msgstr "Informe {0}"
msgid "Report {0} deleted"
msgstr "Informe {0} eliminado"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "El reporte {0} está deshabilitado"
@@ -21594,10 +21616,8 @@ msgstr "Revocar"
msgid "Revoked"
msgstr "Revocado"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21808,7 +21828,6 @@ msgstr "Método de Redondeo"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21822,7 +21841,6 @@ msgstr "Método de Redondeo"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21940,7 +21958,7 @@ msgstr "Regla"
msgid "Rule Conditions"
msgstr "Condiciones de la regla"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Ya existe una regla para este DocType, Rol, Permlevel y la combinación if-owner."
@@ -22129,11 +22147,11 @@ msgstr "Sábado"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22225,32 +22243,17 @@ msgstr "Escanee el código QR e ingrese el código resultante que se muestra."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Calendario"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Calendario del Boletín de noticias"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Programar envío el"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Programar envío el"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Programar el envío para más tarde"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Programado."
@@ -22284,17 +22287,6 @@ msgstr "Tipo de trabajo programado"
msgid "Scheduled Jobs Logs"
msgstr "Registro de Trabajos Programados"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Enviando Programado"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Programado para enviar"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Se actualizó la ejecución programada de la secuencia de comandos {0}"
@@ -22506,6 +22498,11 @@ msgstr "Buscar..."
msgid "Searching ..."
msgstr "Buscando ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22895,9 +22892,7 @@ msgstr "Seleccionar {0}"
msgid "Self approval is not allowed"
msgstr "La auto aprobación no está permitida"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Enviar"
@@ -22928,11 +22923,6 @@ msgstr "Enviar alerta en"
msgid "Send Email Alert"
msgstr "Enviar Alerta de Correo Electrónico"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Enviar correo el"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22990,38 +22980,16 @@ msgstr "Enviar confirmación de lectura"
msgid "Send System Notification"
msgstr "Enviar notificación del sistema"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Enviar correo de prueba"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Enviar a todos los cesionarios"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Enviar Enlace de cancelar suscripción"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Enviar enlace de vista web"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Enviar Email de bienvenida"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Enviar un correo de prueba"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Volver a enviar"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23069,10 +23037,6 @@ msgstr "Enviar enlace de inicio de sesión"
msgid "Send me a copy"
msgstr "Enviarme una copia"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Enviar ahora"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23088,19 +23052,15 @@ msgstr "Enviar mensaje de correo electrónico para darse de baja"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Remitente"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Correo electrónico del Remitente"
@@ -23117,9 +23077,7 @@ msgid "Sender Field should have Email in options"
msgstr "El campo del remitente debe tener opciones de correo electrónico"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Nombre del Remitente"
@@ -23139,18 +23097,9 @@ msgstr "SendGrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Enviando"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Enviando Correos"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Enviando..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23158,8 +23107,6 @@ msgstr "Enviando..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Enviado"
@@ -23229,7 +23176,7 @@ msgstr "Secuencia {0} ya utilizada en {1}"
msgid "Server Action"
msgstr "Acción del servidor"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Error del Servidor"
@@ -23248,7 +23195,7 @@ msgstr "Servidor IP"
msgid "Server Script"
msgstr "Script del servidor"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Los scripts de servidor están desactivados. Por favor, habilite los scripts de servidor desde la configuración de bench."
@@ -23287,15 +23234,15 @@ msgstr "Configuración predeterminada de sesión"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Valores predeterminados de sesión"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Valores predeterminados de sesión guardados"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sesión expirada"
@@ -23549,7 +23496,7 @@ msgstr "Configurando su Sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24632,7 +24579,6 @@ msgstr "Intervalo de tiempo de estadísticas"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24657,7 +24603,6 @@ msgstr "Intervalo de tiempo de estadísticas"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24798,8 +24743,6 @@ msgstr "Sub-dominio"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24808,7 +24751,6 @@ msgstr "Sub-dominio"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25179,7 +25121,7 @@ msgstr "Sincronización"
msgid "Syncing {0} of {1}"
msgstr "Sincronizando {0} de {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Error de sintaxis"
@@ -25486,7 +25428,7 @@ msgstr "Tabla recortada"
msgid "Table updated"
msgstr "Tabla actualiza"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "La tabla {0} no puede estar vacía"
@@ -25613,10 +25555,6 @@ msgstr "ID del trabajo de prueba"
msgid "Test Spanish"
msgstr "Probar español"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Correo electrónico de prueba enviado a {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Carpeta_Prueba"
@@ -25684,10 +25622,6 @@ msgstr "Gracias por su Email"
msgid "Thank you for your feedback!"
msgstr "¡Gracias por tus comentarios!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Gracias por su interés en suscribirse a nuestras actualizaciones"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "¡Muchas gracias por tu mensaje!"
@@ -25882,7 +25816,7 @@ msgstr "El enlace para restablecer la contraseña ha caducado"
msgid "The reset password link has either been used before or is invalid"
msgstr "El enlace para restablecer la contraseña ya se ha utilizado antes o no es válido"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "El recurso que está buscando no está disponible"
@@ -25894,7 +25828,7 @@ msgstr "El Rol {0} debe ser un Rol personalizado."
msgid "The selected document {0} is not a {1}."
msgstr "El documento seleccionado {0} no es un {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "El sistema se está actualizando. Por favor, actualice de nuevo después de unos momentos."
@@ -26047,7 +25981,7 @@ msgstr "Autenticación por otros medios"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Esta divisa está deshabilitada. Debe habilitarla para utilizarla en las transacciones"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Este tablero Kanban será privado"
@@ -26071,7 +26005,7 @@ msgstr "Este año"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Esta acción es irreversible. ¿Desea continuar?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Esta acción solo está permitida para {}"
@@ -26235,14 +26169,6 @@ msgstr "Esto puede imprimirse en varias páginas."
msgid "This month"
msgstr "Este mes"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "El envío de este boletín está previsto en {0}."
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Este boletín estaba programado para enviarse en una fecha posterior. ¿Está seguro de que desea enviarlo ahora?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en el navegador, puede {1} este informe en su lugar."
@@ -26355,7 +26281,6 @@ msgstr "Jueves"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Hora"
@@ -26581,10 +26506,8 @@ msgid "Title of the page"
msgstr "Título de la página"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "A"
@@ -26867,7 +26790,7 @@ msgstr "Parte superior derecha"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26895,16 +26818,8 @@ msgstr "Imágenes totales"
msgid "Total Outgoing Emails"
msgstr "Total de correos salientes"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Total de destinatarios"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Suscriptores Totales"
@@ -26913,11 +26828,6 @@ msgstr "Suscriptores Totales"
msgid "Total Users"
msgstr "Total de usuarios"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Total de visualizaciones"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27317,23 +27227,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL para ir al hacer clic en la imagen de la presentación de diapositivas"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "Campaña UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "Medio UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "Fuente UTM"
@@ -27383,7 +27287,7 @@ msgstr "Incapaz de escribir el formato de archivo para {0}"
msgid "Unassign Condition"
msgstr "Desasignar condición"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Excepción no controlada"
@@ -27399,6 +27303,10 @@ msgstr "Deshacer"
msgid "Undo last action"
msgstr "Deshacer última acción"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27431,7 +27339,7 @@ msgstr "Desconocido"
msgid "Unknown Column: {0}"
msgstr "Columna desconocida: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Método de Redondeo desconocido: {}"
@@ -27464,7 +27372,7 @@ msgstr "No leído"
msgid "Unread Notification Sent"
msgstr "Envíar una notificación al no ser leído"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Consulta SQL insegura"
@@ -27478,7 +27386,7 @@ msgstr "Deseleccionar Todo"
msgid "Unshared"
msgstr "Incompartible"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Darse de baja"
@@ -27502,6 +27410,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "No suscrito"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Columna sin título"
@@ -27624,7 +27537,7 @@ msgstr "Actualizado a una nueva versión 🎉"
msgid "Updated successfully"
msgstr "Actualizado exitosamente"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Actualización"
@@ -28359,7 +28272,7 @@ msgstr "Valor demasiado grande"
msgid "Value {0} missing for {1}"
msgstr "Falta el valor {0} para {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "El valor {0} debe tener un formato de duración válido: dhms"
@@ -28784,7 +28697,6 @@ msgstr "URL de Webhook"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28792,9 +28704,7 @@ msgid "Website"
msgstr "Sitio Web"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Análisis de sitios web"
@@ -29230,7 +29140,7 @@ msgstr "Flujo de trabajo actualizado correctamente"
msgid "Workspace"
msgstr "Área de Trabajo"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "El Área de Trabajo {0} no existe"
@@ -29453,11 +29363,11 @@ msgstr "Estás accediendo a la cuenta de otro usuario."
msgid "You are not allowed to access this resource"
msgstr "No tiene permiso para acceder a este recurso"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}"
@@ -29480,7 +29390,7 @@ msgstr "No tiene permiso para editar el informe."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "No está permitido exportar {} doctype"
@@ -29508,7 +29418,7 @@ msgstr "No está autorizado a acceder a esta página sin iniciar sesión."
msgid "You are not permitted to access this page."
msgstr "Usted no está autorizado a acceder a esta página."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29603,7 +29513,7 @@ msgstr "Puede seleccionar uno de los siguientes:"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Puede establecer un valor alto aquí si varios usuarios iniciarán sesión desde la misma red."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Puede intentar cambiar los filtros de su informe."
@@ -29680,11 +29590,15 @@ msgstr "No tienes permisos de lectura o selección para {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Usted no tiene suficientes permisos para completar la acción"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "No tienes permiso para acceder a {0}: {1}."
@@ -29692,7 +29606,7 @@ msgstr "No tienes permiso para acceder a {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "No tiene permisos para cancelar todos los documentos vinculados."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Usted no tiene acceso al Reporte: {0}"
@@ -29700,11 +29614,11 @@ msgstr "Usted no tiene acceso al Reporte: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "No tienes permiso para acceder al DocType {0} ."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Usted no tiene permiso para acceder a este archivo"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Usted no tiene permiso para obtener un informe sobre: {0}"
@@ -29797,7 +29711,7 @@ msgstr "Tiene que estar registrado para acceder a esta página."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Usted necesita estar en el modo de programador para editar un formulario Web Estándar"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Debe haber iniciado sesión y tener la función de administrador del sistema, para poder tener acceso a las copias de seguridad."
@@ -29963,7 +29877,7 @@ msgstr "El nombre de la organización y dirección para el pie de página del co
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar."
@@ -29975,7 +29889,7 @@ msgstr "Su sitio está en mantenimiento o se está actualizando."
msgid "Your verification code is {0}"
msgstr "Su código de verificación es {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Cero"
@@ -30022,7 +29936,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "modificar"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "y"
@@ -30079,7 +29993,7 @@ msgstr "crear"
msgid "cyan"
msgstr "cian"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30194,7 +30108,7 @@ msgstr "correo electrónico"
msgid "email inbox"
msgstr "bandeja de entrada de email"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "vacío"
@@ -30246,7 +30160,7 @@ msgstr "gris"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "¡gzip no encontrado en RUTA! Esto es necesario para realizar una copia de seguridad."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30280,7 +30194,7 @@ msgstr "juan@example.com"
msgid "just now"
msgstr "justo ahora"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "etiqueta"
@@ -30320,7 +30234,7 @@ msgstr "login_required"
msgid "long"
msgstr "larga"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30510,7 +30424,7 @@ msgstr "respuesta"
msgid "restored {0} as {1}"
msgstr "restaurado {0} como {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30845,7 +30759,7 @@ msgstr "{0} ya ha sido dado de baja"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} ya ha sido dado de baja para {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} y {1}"
@@ -30951,6 +30865,10 @@ msgstr "{0} no existe en el renglón {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "No se pudo determinar el formato {0} a partir de los valores de esta columna. El valor predeterminado será {1}."
@@ -30971,10 +30889,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} ya ha asignado un valor por defecto para {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} ha sido añadido al grupo de correo electrónico."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} ha dejado la conversación en {1} {2}"
@@ -31045,6 +30959,10 @@ msgstr "{0} es como {1}"
msgid "{0} is mandatory"
msgstr "{0} es obligatorio"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} no es un campo del doctype {1}"
@@ -31066,7 +30984,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} no es un DocType válido para Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} no es una dirección de correo electrónico válida"
@@ -31074,11 +30992,11 @@ msgstr "{0} no es una dirección de correo electrónico válida"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} no es un código ISO 3166 ALFA-2 válido."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} no es un nombre válido"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} no es un número de teléfono válido"
@@ -31086,11 +31004,11 @@ msgstr "{0} no es un número de teléfono válido"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} no es un estado de flujo de trabajo válido. Actualice su flujo de trabajo y vuelva a intentarlo."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} no es un DocType padre válido para {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} no es un campo padre válido para {1}"
@@ -31178,23 +31096,23 @@ msgstr "Hace {0} minutos"
msgid "{0} months ago"
msgstr "Hace {0} meses"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} debe ser después de {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} debe comenzar con '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} debe ser igual a '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} debe ser uno de {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} debe ser uno de {1}"
@@ -31206,7 +31124,7 @@ msgstr "{0} debe establecerse primero"
msgid "{0} must be unique"
msgstr "{0} debe ser único"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} debe ser {1} {2}"
@@ -31235,16 +31153,12 @@ msgstr "{0} de {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} de {1} ({2} filas con hijos)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} de {1} enviado"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0} solamente."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} o {1}"
@@ -31281,11 +31195,11 @@ msgstr "{0} eliminado su asignación."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} el rol no tiene permiso sobre ningún doctype"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} fila #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} guardado exitosamente"
@@ -31397,7 +31311,7 @@ msgstr "{0} {1} no existe, seleccione un nuevo objetivo para fusionar"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} no encontrado"
@@ -31550,11 +31464,11 @@ msgstr "{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_na
msgid "{} Complete"
msgstr "{} Completo"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Código python inválido en la línea {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Código python posiblemente inválido.
{}"
@@ -31576,7 +31490,7 @@ msgstr "El campo {} no puede estar vacío."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} ha sido deshabilitado. Solo se puede habilitar si {} está marcado."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} no es una cadena de fecha válida."
diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po
index 263157b495..a37e49022d 100644
--- a/frappe/locale/fa.po
+++ b/frappe/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "در نمای فهرست برای نوع {0} در ردیف {1} مجاز
msgid "'Recipients' not specified"
msgstr "دریافت کنندگان مشخص نشده است"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "{0} یک URL معتبر نیست"
@@ -851,7 +851,7 @@ msgstr "اقدام / مسیر"
msgid "Action Complete"
msgstr "اقدام کامل شد"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "اقدام ناموفق بود"
@@ -1490,6 +1490,14 @@ msgstr "هشدار"
msgid "Alerts and Notifications"
msgstr "هشدارها و اعلان ها"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1530,7 +1538,6 @@ msgstr "تراز کردن مقدار"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1975,7 +1982,7 @@ msgstr "اصلاحیه مجاز نیست"
msgid "Amendment naming rules updated."
msgstr "قوانین نامگذاری اصلاحیه به روز شد."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "هنگام تنظیم پیشفرضهای نشست خطایی روی داد"
@@ -2093,7 +2100,7 @@ msgstr "نام برنامه"
msgid "App not found for module: {0}"
msgstr "برنامه برای ماژول یافت نشد: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "برنامه {0} نصب نشده است"
@@ -2307,10 +2314,6 @@ msgstr "آیا مطمئن هستید که میخواهید همه سفارش
msgid "Are you sure you want to save this document?"
msgstr "آیا مطمئن هستید که میخواهید این سند را ذخیره کنید؟"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "آیا مطمئن هستید که اکنون میخواهید این خبرنامه را ارسال کنید؟"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2564,9 +2567,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "پیوست به نام باید یک رشته یا یک عدد صحیح باشد"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "پیوست"
@@ -2593,10 +2594,7 @@ msgid "Attachment Removed"
msgstr "پیوست حذف شد"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2614,11 +2612,6 @@ msgstr "تلاش برای راهاندازی QZ Tray..."
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "حضار"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3045,7 +3038,7 @@ msgstr "تصویر پس زمینه"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "کارهای پس زمینه"
@@ -3774,9 +3767,7 @@ msgstr "عنوان پاسخ به تماس"
msgid "Camera"
msgstr "دوربین"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3862,10 +3853,6 @@ msgstr "لغو همه"
msgid "Cancel All Documents"
msgstr "لغو تمام اسناد"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "لغو زمانبندی"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4159,7 +4146,7 @@ msgstr "توضیحات دسته"
msgid "Category Name"
msgstr "نام دسته"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "سنت"
@@ -4327,10 +4314,6 @@ msgstr "بررسی"
msgid "Check Request URL"
msgstr "URL درخواست را بررسی کنید"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "لینک های خراب را بررسی کنید"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "برای انتخاب، ستونها را علامت بزنید، برای تنظیم ترتیب آن را بکشید."
@@ -4354,10 +4337,6 @@ msgstr "اگر میخواهید کاربر را مجبور به انتخاب
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "بررسی لینک های خراب..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "یک لحظه چک کردن"
@@ -4404,6 +4383,10 @@ msgstr "جدول فرزند {0} برای فیلد {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "جداول Child به صورت Grid در سایر DocType ها نشان داده میشوند"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "انتخاب کارت موجود یا ایجاد کارت جدید"
@@ -4493,10 +4476,6 @@ msgstr "روی Customize کلیک کنید تا اولین ویجت خود را
msgid "Click here"
msgstr "اینجا کلیک کنید"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "برای تایید اینجا را کلیک کنید"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4831,14 +4810,14 @@ msgstr "ستون {0}"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "ستون ها"
+msgstr "ستونها"
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
msgstr "ستون ها / فیلدها"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "ستون ها بر اساس"
@@ -5158,17 +5137,12 @@ msgstr "گذرواژه را تایید کنید"
msgid "Confirm Request"
msgstr "درخواست را تایید کنید"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "ایمیل خود را تایید کنید"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "الگوی ایمیل تایید"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "تایید شده"
@@ -5299,8 +5273,6 @@ msgstr "حاوی {0} اصلاحات امنیتی است"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5308,7 +5280,6 @@ msgstr "حاوی {0} اصلاحات امنیتی است"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5333,10 +5304,8 @@ msgstr "محتوا (Markdown)"
msgid "Content Hash"
msgstr "هش محتوا"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5442,6 +5411,10 @@ msgstr "{0} پیدا نشد"
msgid "Could not map column {0} to field {1}"
msgstr "ستون {0} به فیلد {1} نگاشت نشد"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "راه اندازی نشد: "
@@ -5482,7 +5455,7 @@ msgstr ""
#. Label of the counter (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
-msgstr "پیشخوان"
+msgstr "شمارنده"
#. Label of the country (Link) field in DocType 'Address'
#. Label of the country (Link) field in DocType 'Address Template'
@@ -5497,7 +5470,7 @@ msgstr "پیشخوان"
msgid "Country"
msgstr "کشور"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "کد کشور مورد نیاز است"
@@ -5628,11 +5601,6 @@ msgstr "ایجاد یک {0} جدید"
msgid "Create a {0} Account"
msgstr "یک حساب {0} ایجاد کنید"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "ایجاد و ارسال ایمیل برای گروه خاصی از مشترکین به صورت دوره ای."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "ایجاد یا ویرایش فرمت چاپ"
@@ -5981,6 +5949,10 @@ msgstr "ترجمه سفارشی"
msgid "Custom field renamed to {0} successfully."
msgstr "فیلد سفارشی با موفقیت به {0} تغییر نام داد."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6038,7 +6010,7 @@ msgstr "داشبورد را سفارشی کنید"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "سفارشیسازی فرم"
@@ -6065,14 +6037,14 @@ msgstr "برش"
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Cyan"
-msgstr "فیروزه ای"
+msgstr "فیروزهای"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
-msgstr "حذف"
+msgstr "DELETE"
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
@@ -6140,7 +6112,7 @@ msgstr "خطر"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Dark"
-msgstr "تاریک"
+msgstr "تیره"
#. Label of the dark_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
@@ -6331,7 +6303,6 @@ msgstr "نسخه پایگاه داده"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6395,6 +6366,11 @@ msgstr "روز"
msgid "Day of Week"
msgstr "روز هفته"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "روزها"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6662,6 +6638,7 @@ msgstr "با تاخیر"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6974,6 +6951,7 @@ msgstr "تم پیشخوان"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7727,7 +7705,7 @@ msgid "Document Types and Permissions"
msgstr "انواع اسناد و مجوزها"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "قفل سند باز شد"
@@ -8345,7 +8323,6 @@ msgstr "انتخابگر عنصر"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8439,11 +8416,9 @@ msgstr "آدرس پاورقی ایمیل"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "گروه ایمیل"
@@ -8516,18 +8491,11 @@ msgstr "محدودیت تلاش مجدد ایمیل"
msgid "Email Rule"
msgstr "قانون ایمیل"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "ایمیل ارسال شد"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "ایمیل ارسال شده در"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8634,10 +8602,18 @@ msgstr "ایمیلها با اقدامات بعدی ممکن در گردش ک
msgid "Embed code copied"
msgstr "کد جاسازی کپی شد"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9101,6 +9077,14 @@ msgstr "خطا در اعلان"
msgid "Error in print format on line {0}: {1}"
msgstr "خطا در قالب چاپ در خط {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "خطا هنگام اتصال به حساب ایمیل {0}"
@@ -9297,6 +9281,10 @@ msgstr "بسط دادن"
msgid "Expand All"
msgstr "گسترش همه"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "آزمایشی"
@@ -9828,7 +9816,7 @@ msgstr "نام فیلد \"{0}\" در تضاد با یک {1} از نام {2} در
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "برای فعال کردن نامگذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "نام فیلد به 64 کاراکتر محدود شده است ({0})"
@@ -9844,7 +9832,7 @@ msgstr "نام فیلد که DocType برای این فیلد پیوند خوا
msgid "Fieldname {0} appears multiple times"
msgstr "نام فیلد {0} چندین بار ظاهر میشود"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "نام فیلد {0} نمیتواند نویسه های خاصی مانند {1} داشته باشد"
@@ -9896,6 +9884,10 @@ msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File ت
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "وقتی as_list فعال است، فیلدها باید یک لیست یا تاپل باشند"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10061,6 +10053,14 @@ msgstr "نام فیلتر"
msgid "Filter Values"
msgstr "مقادیر فیلتر"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "فیلتر..."
@@ -10304,10 +10304,6 @@ msgstr "فیلدهای زیر دارای مقادیر جا افتاده هستن
msgid "Following fields have missing values:"
msgstr "فیلدهای زیر مقادیر گمشده دارند:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "پیوندهای زیر در محتوای ایمیل خراب هستند: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10724,10 +10720,8 @@ msgid "Friday"
msgstr "جمعه"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "از"
@@ -10808,10 +10802,14 @@ msgstr "تابع"
msgid "Function Based On"
msgstr "عملکرد بر اساس"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "تابع {0} در لیست سفید قرار ندارد."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "گره های بیشتر را فقط میتوان تحت گره های نوع «گروهی» ایجاد کرد"
@@ -10823,7 +10821,7 @@ msgstr "Fw: {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
-msgstr "گرفتن"
+msgstr "GET"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -11293,6 +11291,10 @@ msgstr "گروه بر اساس نوع"
msgid "Group By field is required to create a dashboard chart"
msgstr "برای ایجاد نمودار داشبورد فیلد Group By لازم است"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "گره گروه"
@@ -11341,7 +11343,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11355,7 +11356,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11864,6 +11864,11 @@ msgstr "تعمیر و نگهداری ساعتی"
msgid "Hourly rate limit for generating password reset links"
msgstr "محدودیت نرخ ساعتی برای ایجاد پیوندهای بازنشانی گذرواژه"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "ساعت ها"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12629,11 +12634,11 @@ msgstr "کاربر یا گذرواژه نادرست"
msgid "Incorrect Verification code"
msgstr "کد تأیید نادرست"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "مقدار نادرست در ردیف {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "مقدار نادرست:"
@@ -12785,11 +12790,11 @@ msgstr "دستورالعمل ها"
msgid "Instructions Emailed"
msgstr "دستورالعمل ها ایمیل شد"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "سطح مجوز ناکافی برای {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "مجوز ناکافی برای {0}"
@@ -12939,7 +12944,7 @@ msgstr "شرایط نامعتبر: {}"
msgid "Invalid Credentials"
msgstr "گواهی نامه نامعتبر"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "تاریخ نامعتبر است"
@@ -12947,7 +12952,7 @@ msgstr "تاریخ نامعتبر است"
msgid "Invalid DocType"
msgstr "DocType نامعتبر است"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "DocType نامعتبر: {0}"
@@ -12959,6 +12964,11 @@ msgstr "نام فیلد نامعتبر است"
msgid "Invalid File URL"
msgstr "URL فایل نامعتبر است"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13023,7 +13033,7 @@ msgstr "پارامترهای نامعتبر"
msgid "Invalid Password"
msgstr "گذرواژه نامعتبر"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "شماره تلفن نامعتبر"
@@ -13067,10 +13077,38 @@ msgstr "راز Webhook نامعتبر است"
msgid "Invalid aggregate function"
msgstr "تابع تجمیع نامعتبر است"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "ستون نامعتبر است"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "docstatus نامعتبر است"
@@ -13083,10 +13121,26 @@ msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "نام فیلد نامعتبر {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است"
@@ -13095,11 +13149,26 @@ msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است"
msgid "Invalid file path: {0}"
msgstr "مسیر فایل نامعتبر: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "فیلتر نامعتبر: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13121,10 +13190,22 @@ msgstr "محتوای نامعتبر یا خراب برای درونبُرد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "آرگومان های درخواست نامعتبر"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "فایل الگو برای درونبُرد نامعتبر است"
@@ -13566,11 +13647,11 @@ msgstr "ستون نمودار کانبان"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "نام نمودار کانبان"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "تنظیمات کانبان"
@@ -14282,6 +14363,10 @@ msgstr "دوست دارد"
msgid "Limit"
msgstr "حد"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14545,6 +14630,7 @@ msgid "Load Balancing"
msgstr "تعادل بار"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15063,11 +15149,9 @@ msgstr "علامت گذاری به عنوان هرزنامه"
msgid "Mark as Unread"
msgstr "به عنوان \"خوانده نشده\" علامت گذاری کن"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15256,7 +15340,6 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15269,7 +15352,6 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15284,16 +15366,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "پیام"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "پیام (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "پیام (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15417,7 +15489,7 @@ msgstr "عنوان متا برای سئو"
msgid "Method"
msgstr "روش"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15467,6 +15539,11 @@ msgstr "حداقل امتیاز گذرواژه"
msgid "Minor"
msgstr "جزئی"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "دقایق"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15862,7 +15939,7 @@ msgstr "باید در \"()\" محصور شود و شامل \"{0}\" باشد که
msgid "Must be of type \"Attach Image\""
msgstr "باید از نوع «پیوست تصویر» باشد"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "برای دسترسی به این گزارش باید مجوز گزارش را داشته باشد."
@@ -16050,6 +16127,10 @@ msgstr "برای ویرایش محیط کار خصوصی سایر کاربران
msgid "Negative Value"
msgstr "مقدار منفی"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "خطای مجموعه تو در تو. لطفا با ادمین تماس بگیرید."
@@ -16132,7 +16213,7 @@ msgstr "رویداد جدید"
msgid "New Folder"
msgstr "پوشه جدید"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "نمودار کانبان جدید"
@@ -16276,48 +16357,13 @@ msgstr "نسخههای جدید {} برای برنامههای زیر در
msgid "Newly created user {0} has no roles enabled."
msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "خبرنامه"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "پیوست خبرنامه"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "گروه ایمیل خبرنامه"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "مدیر خبرنامه"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "خبرنامه قبلا ارسال شده است"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "برای ارسال لینک مشاهده وب در ایمیل، خبرنامه باید منتشر شود"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "خبرنامه باید حداقل یک گیرنده داشته باشد"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "خبرنامه ها"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16579,7 +16625,7 @@ msgstr "نتیجه ای پیدا نشد"
msgid "No Roles Specified"
msgstr "هیچ نقشی مشخص نشده است"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "فیلد انتخابی یافت نشد"
@@ -16607,10 +16653,6 @@ msgstr "هیچ هشداری برای امروز وجود ندارد"
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "هیچ پیوند شکسته ای در محتوای ایمیل یافت نشد"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "بدون تغییر در سند"
@@ -16647,7 +16689,7 @@ msgstr "هنوز مخاطبی اضافه نشده است."
msgid "No contacts linked to document"
msgstr "هیچ مخاطبی به سند پیوند داده نشده است"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "داده ای برای برونبُرد نیست"
@@ -16667,7 +16709,7 @@ msgstr "هیچ حساب ایمیلی با کاربر مرتبط نیست. لطف
msgid "No failed logs"
msgstr "هیچ لاگ ناموفقی نیست"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "هیچ فیلدی یافت نشد که بتوان از آن به عنوان ستون Kanban استفاده کرد. از فرم سفارشی برای افزودن یک فیلد سفارشی از نوع \"انتخاب\" استفاده کنید."
@@ -16726,7 +16768,7 @@ msgstr "تعداد ردیف (حداکثر 500)"
msgid "No of Sent SMS"
msgstr "شماره پیامک ارسالی"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "بدون مجوز برای {0}"
@@ -16854,7 +16896,7 @@ msgstr "نه فرزندان"
msgid "Not Equals"
msgstr "برابر نیست"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "پیدا نشد"
@@ -16880,7 +16922,7 @@ msgstr "به هیچ رکوردی مرتبط نیست"
msgid "Not Nullable"
msgstr "غیرقابل تهی"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16889,7 +16931,7 @@ msgstr "غیرقابل تهی"
msgid "Not Permitted"
msgstr "غیر مجاز"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "خواندن {0} مجاز نیست"
@@ -16917,7 +16959,6 @@ msgstr "دیده نشد"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "فرستاده نشد"
@@ -16950,7 +16991,7 @@ msgstr "کاربر معتبری نیست"
msgid "Not active"
msgstr "غیر فعال"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "برای {0} مجاز نیست: {1}"
@@ -17384,6 +17425,10 @@ msgstr "افست X"
msgid "Offset Y"
msgstr "افست Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "گذرواژه قدیمی"
@@ -17557,7 +17602,7 @@ msgstr "فقط Workspace Manager میتواند فضاهای کاری عمو
msgid "Only allowed to export customizations in developer mode"
msgstr "فقط مجاز به صدور سفارشی سازی در حالت برنامه نویس است"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "فقط پیشنویس اسناد را میتوان دور انداخت"
@@ -17729,7 +17774,7 @@ msgstr "باز شد"
msgid "Operation"
msgstr "عملیات"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "اپراتور باید یکی از {0} باشد"
@@ -17828,6 +17873,10 @@ msgstr "نارنجی"
msgid "Order"
msgstr "سفارش"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -17983,7 +18032,7 @@ msgstr "PID"
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "POST"
-msgstr "پست"
+msgstr "POST"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
@@ -18223,7 +18272,7 @@ msgstr "والد نام سندی است که داده ها به آن اضافه
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "فیلد والد در {0} مشخص نشده است: {1}"
@@ -18345,10 +18394,6 @@ msgstr "گذرواژهها مطابقت ندارند"
msgid "Passwords do not match!"
msgstr "گذرواژهها مطابقت ندارند!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "تاریخهای گذشته برای زمانبندی مجاز نیستند."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "چسباندن"
@@ -18494,7 +18539,7 @@ msgstr "برای همیشه {0} ارسال شود؟"
msgid "Permanently delete {0}?"
msgstr "{0} برای همیشه حذف شود؟"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "خطای مجوز"
@@ -18646,7 +18691,7 @@ msgstr "تلفن"
msgid "Phone No."
msgstr "شماره تلفن"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست."
@@ -18919,10 +18964,6 @@ msgstr "لطفاً نگاشت چاپگر را در تنظیمات چاپگر ح
msgid "Please save before attaching."
msgstr "لطفا قبل از پیوست ذخیره کنید."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "لطفا قبل از ارسال خبرنامه را ذخیره کنید"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "لطفاً سند را قبل از تخصیص ذخیره کنید"
@@ -18955,7 +18996,7 @@ msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنی
msgid "Please select X and Y fields"
msgstr "لطفاً فیلدهای X و Y را انتخاب کنید"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "لطفاً یک کد کشور برای فیلد {1} انتخاب کنید."
@@ -18971,7 +19012,7 @@ msgstr "لطفاً یک فایل یا آدرس اینترنتی را انتخا
msgid "Please select a valid csv file with data"
msgstr "لطفاً یک فایل csv معتبر با داده انتخاب کنید"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید"
@@ -19049,7 +19090,7 @@ msgstr ""
msgid "Please specify"
msgstr "لطفا مشخص کنید"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "لطفاً یک DocType والد معتبر برای {0} مشخص کنید"
@@ -19086,10 +19127,6 @@ msgstr "لطفاً قبل از ادامه {} را به روز کنید."
msgid "Please use a valid LDAP search filter"
msgstr "لطفاً از یک فیلتر جستجوی معتبر LDAP استفاده کنید"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "لطفا آدرس ایمیل خود را تایید کنید"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "لطفاً برای اطلاعات بیشتر به https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key مراجعه کنید."
@@ -19120,7 +19157,7 @@ msgstr "Popover یا Modal Description"
#: frappe/email/doctype/email_domain/email_domain.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "بندر"
+msgstr "پورت"
#. Label of the menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
@@ -19183,6 +19220,10 @@ msgstr "پست های {0}"
msgid "Posts filed under {0}"
msgstr "پست های ثبت شده تحت {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19242,7 +19283,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "کاربر گزارش آماده شده"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "ارائه گزارش آماده انجام نشد"
@@ -19271,8 +19312,6 @@ msgstr "برای ذخیره Enter را فشار دهید"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19660,7 +19699,7 @@ msgstr "نمایه"
msgid "Progress"
msgstr "پیشرفت"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "پروژه"
@@ -19755,14 +19794,7 @@ msgstr "فایل های عمومی (MB)"
msgid "Publish"
msgstr "انتشار"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "به عنوان یک صفحه وب منتشر کنید"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19770,7 +19802,6 @@ msgstr "به عنوان یک صفحه وب منتشر کنید"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19945,7 +19976,7 @@ msgstr "گزارش پرسمان"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "پرسمان باید از نوع SELECT یا فقط خواندنی WITH باشد."
@@ -19991,7 +20022,6 @@ msgstr "صف(های)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "در صف"
@@ -20014,18 +20044,10 @@ msgstr "در صف ارسال میتوانید پیشرفت را در {0} دن
msgid "Queued for backup. You will receive an email with the download link"
msgstr "در صف پشتیبان گیری یک ایمیل با لینک دانلود دریافت خواهید کرد"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} ایمیل در صف"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "در صف ایمیل..."
+msgstr "صفها"
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
@@ -20227,7 +20249,7 @@ msgstr "خوانده شده توسط گیرنده روشن"
msgid "Read mode"
msgstr "حالت خواندن"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "برای دانستن بیشتر مستندات را بخوانید"
@@ -21094,7 +21116,7 @@ msgstr "به حد مجاز گزارش رسیده است"
msgid "Report timed out."
msgstr "زمان گزارش تمام شد."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "گزارش با موفقیت به روز شد"
@@ -21115,7 +21137,7 @@ msgstr "گزارش {0}"
msgid "Report {0} deleted"
msgstr "گزارش {0} حذف شد"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "گزارش {0} غیرفعال است"
@@ -21448,10 +21470,8 @@ msgstr "لغو"
msgid "Revoked"
msgstr "لغو شد"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21662,7 +21682,6 @@ msgstr "روش گرد کردن"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21676,7 +21695,6 @@ msgstr "روش گرد کردن"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21794,7 +21812,7 @@ msgstr "قانون"
msgid "Rule Conditions"
msgstr "شرایط قانون"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "قانون برای این ترکیب doctype، role، permlevel و if-owner از قبل وجود دارد."
@@ -21983,11 +22001,11 @@ msgstr "شنبه"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22079,32 +22097,17 @@ msgstr "کد QR را اسکن کرده و کد نمایش داده شده را
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "زمانبندی"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "زمانبندی خبرنامه"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "زمانبندی ارسال در"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "زمانبندی ارسال"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "برای ارسال در زمان دیگری زمانبندی کنید"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "زمانبندی شده است"
@@ -22138,17 +22141,6 @@ msgstr "نوع کار زمانبندی شده"
msgid "Scheduled Jobs Logs"
msgstr "لاگ کارهای زمانبندی شده"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "ارسال زمانبندی شده"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "زمانبندی شده برای ارسال"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "اجرای زمانبندی شده برای اسکریپت {0} به روز شده است"
@@ -22360,6 +22352,11 @@ msgstr "جستجو کردن..."
msgid "Searching ..."
msgstr "جستجوکردن ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22749,9 +22746,7 @@ msgstr "انتخاب {0}"
msgid "Self approval is not allowed"
msgstr "تایید خود مجاز نیست"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "ارسال"
@@ -22782,11 +22777,6 @@ msgstr "ارسال هشدار در"
msgid "Send Email Alert"
msgstr "ارسال هشدار ایمیل"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "ارسال ایمیل در"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22844,38 +22834,16 @@ msgstr "ارسال رسید خواندن"
msgid "Send System Notification"
msgstr "ارسال اعلان سیستم"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "ارسال ایمیل آزمایشی"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "ارسال برای تمامی افراد واگذار شده"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "ارسال لینک لغو اشتراک"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "ارسال لینک مشاهده وب"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "ارسال ایمیل خوش آمدگویی"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "یک ایمیل آزمایشی ارسال کنید"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "دوباره بفرست"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22923,10 +22891,6 @@ msgstr "ارسال لینک ورود"
msgid "Send me a copy"
msgstr "یک کپی برای من بفرست"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "در حال حاضر ارسال"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22942,19 +22906,15 @@ msgstr "ارسال پیام لغو اشتراک در ایمیل"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "فرستنده"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "ایمیل فرستنده"
@@ -22971,9 +22931,7 @@ msgid "Sender Field should have Email in options"
msgstr "فیلد فرستنده باید گزینههای ایمیل را داشته باشد"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "نام فرستنده"
@@ -22993,18 +22951,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "در حال ارسال"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "ارسال ایمیل"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "در حال ارسال..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23012,8 +22961,6 @@ msgstr "در حال ارسال..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "ارسال شد"
@@ -23083,7 +23030,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است"
msgid "Server Action"
msgstr "اقدام سرور"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطای سرور"
@@ -23102,7 +23049,7 @@ msgstr "IP سرور"
msgid "Server Script"
msgstr "اسکریپت سرور"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "اسکریپت های سرور غیرفعال هستند. لطفاً اسکریپت های سرور را از پیکربندی بنچ فعال کنید."
@@ -23141,15 +23088,15 @@ msgstr "تنظیمات پیشفرض نشست"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "پیشفرضهای نشست"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "پیشفرضهای نشست ذخیره شد"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "نشست منقضی شده"
@@ -23379,7 +23326,7 @@ msgstr "راهاندازی سیستم شما"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24462,7 +24409,6 @@ msgstr "فاصله زمانی آمار"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24487,7 +24433,6 @@ msgstr "فاصله زمانی آمار"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24628,8 +24573,6 @@ msgstr "زیر دامنه"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24638,7 +24581,6 @@ msgstr "زیر دامنه"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25009,7 +24951,7 @@ msgstr "در حال همگام سازی"
msgid "Syncing {0} of {1}"
msgstr "در حال همگام سازی {0} از {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "اشتباه نوشتاری"
@@ -25316,7 +25258,7 @@ msgstr "جدول بریده شده"
msgid "Table updated"
msgstr "جدول به روز شد"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "جدول {0} نمیتواند خالی باشد"
@@ -25443,10 +25385,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "ایمیل آزمایشی به {0} ارسال شد"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Folder"
@@ -25512,10 +25450,6 @@ msgstr "ممنون برای ایمیلت"
msgid "Thank you for your feedback!"
msgstr "با تشکر از شما برای بازخورد شما!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "از علاقه شما به اشتراک در به روز رسانی های ما سپاسگزاریم"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "ممنون از پیام شما"
@@ -25704,7 +25638,7 @@ msgstr "پیوند بازنشانی گذرواژه منقضی شده است"
msgid "The reset password link has either been used before or is invalid"
msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "منبع مورد نظر شما در دسترس نیست"
@@ -25716,7 +25650,7 @@ msgstr "نقش {0} باید یک نقش سفارشی باشد."
msgid "The selected document {0} is not a {1}."
msgstr "سند انتخاب شده {0} یک {1} نیست."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "سیستم در حال به روز رسانی است. لطفاً پس از چند لحظه دوباره بازخوانی کنید."
@@ -25748,7 +25682,7 @@ msgstr "{0} قبلاً روی تکرار خودکار است {1}"
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "موضوع"
+msgstr "پوسته"
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
@@ -25869,7 +25803,7 @@ msgstr "احراز هویت شخص ثالث"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "این ارز غیرفعال است. فعال کردن برای استفاده در معاملات"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "این نمودار کانبان خصوصی خواهد بود"
@@ -25893,7 +25827,7 @@ msgstr "امسال"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "این عمل برگشتناپذیر است. آیا مایل هستید ادامه دهید؟"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "این عمل فقط برای {} مجاز است"
@@ -26053,14 +25987,6 @@ msgstr "این ممکن است در چندین صفحه چاپ شود"
msgid "This month"
msgstr "این ماه"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "این خبرنامه قرار است در تاریخ {0} ارسال شود"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "این خبرنامه قرار بود در تاریخ بعدی ارسال شود. آیا مطمئن هستید که میخواهید آن را اکنون ارسال کنید؟"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26173,7 +26099,6 @@ msgstr "پنجشنبه"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "زمان"
@@ -26399,10 +26324,8 @@ msgid "Title of the page"
msgstr "عنوان صفحه"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "به"
@@ -26679,7 +26602,7 @@ msgstr "بالا سمت راست"
msgid "Topic"
msgstr "موضوع"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26707,16 +26630,8 @@ msgstr "مجموع تصاویر"
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "کل گیرندگان"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "کل مشترکین"
@@ -26725,11 +26640,6 @@ msgstr "کل مشترکین"
msgid "Total Users"
msgstr "مجموع کاربران"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "کل بازدیدها"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27128,23 +27038,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL برای رفتن با کلیک بر روی تصویر نمایش اسلاید"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27194,7 +27098,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد
msgid "Unassign Condition"
msgstr "شرط لغو اختصاص"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27210,6 +27114,10 @@ msgstr "واگرد"
msgid "Undo last action"
msgstr "واگرد آخرین اقدام"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27242,7 +27150,7 @@ msgstr "ناشناخته"
msgid "Unknown Column: {0}"
msgstr "ستون ناشناخته: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "روش گرد کردن نامشخص: {}"
@@ -27275,7 +27183,7 @@ msgstr "خوانده نشده"
msgid "Unread Notification Sent"
msgstr "اعلان خوانده نشده ارسال شد"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "پرسمان ناامن SQL"
@@ -27289,7 +27197,7 @@ msgstr "همه را لغو انتخاب کنید"
msgid "Unshared"
msgstr "اشتراک گذاری نشده است"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "لغو اشتراک"
@@ -27313,6 +27221,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "لغو اشتراک شده"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "ستون بدون عنوان"
@@ -27435,7 +27348,7 @@ msgstr "بهروزرسانی به نسخه جدید 🎉"
msgid "Updated successfully"
msgstr "با موفقیت به روز شد"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "در حال بروز رسانی"
@@ -28170,7 +28083,7 @@ msgstr "ارزش خیلی بزرگ است"
msgid "Value {0} missing for {1}"
msgstr "مقدار {0} برای {1} وجود ندارد"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "مقدار {0} باید در قالب مدت زمان معتبر باشد: dhms"
@@ -28595,7 +28508,6 @@ msgstr "آدرس وب هوک"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28603,9 +28515,7 @@ msgid "Website"
msgstr "سایت اینترنتی"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "تجزیه و تحلیل وب سایت"
@@ -29041,7 +28951,7 @@ msgstr "گردش کار با موفقیت به روز شد"
msgid "Workspace"
msgstr "فضای کار"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "محیط کار {0} وجود ندارد"
@@ -29264,11 +29174,11 @@ msgstr "شما در حال جعل هویت به عنوان کاربر دیگری
msgid "You are not allowed to access this resource"
msgstr "شما اجازه دسترسی به این منبع را ندارید"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} '{2}' در فیلد {3} پیوند داده شده است."
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} \"{2}\" در ردیف {3}، فیلد {4} پیوند داده شده است."
@@ -29291,7 +29201,7 @@ msgstr "شما مجاز به ویرایش گزارش نیستید."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "شما مجاز به برونبُرد {} doctype نیستید"
@@ -29319,7 +29229,7 @@ msgstr "بدون ورود به سیستم اجازه دسترسی به این ص
msgid "You are not permitted to access this page."
msgstr "شما اجازه دسترسی به این صفحه را ندارید."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29414,7 +29324,7 @@ msgstr "میتوانید یکی از موارد زیر را انتخاب کن
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "اگر چندین کاربر از یک شبکه وارد سیستم شوند، میتوانید مقدار بالایی را در اینجا تنظیم کنید."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "میتوانید فیلترهای گزارش خود را تغییر دهید."
@@ -29491,11 +29401,15 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "شما مجوز کافی برای تکمیل عمل را ندارید"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "شما اجازه دسترسی به {0}: {1} را ندارید."
@@ -29503,7 +29417,7 @@ msgstr "شما اجازه دسترسی به {0}: {1} را ندارید."
msgid "You do not have permissions to cancel all linked documents."
msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "شما به گزارش دسترسی ندارید: {0}"
@@ -29511,11 +29425,11 @@ msgstr "شما به گزارش دسترسی ندارید: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "شما اجازه دسترسی به {0} DocType را ندارید."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "شما اجازه دسترسی به این فایل را ندارید"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "شما مجوز دریافت گزارش در مورد: {0} را ندارید"
@@ -29608,7 +29522,7 @@ msgstr "برای دسترسی به این صفحه باید کاربر سیست
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "برای ویرایش یک فرم وب استاندارد، باید در حالت توسعه دهنده باشید"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "برای اینکه بتوانید به نسخههای پشتیبان دسترسی داشته باشید، باید وارد سیستم شوید و نقش مدیر سیستم را داشته باشید."
@@ -29774,7 +29688,7 @@ msgstr "نام و آدرس سازمان شما برای پاورقی ایمیل.
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خواهیم داد. اگر اطلاعات بیشتری دارید، لطفا به این ایمیل پاسخ دهید."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید."
@@ -29786,7 +29700,7 @@ msgstr "سایت شما در حال تعمیر یا به روز رسانی اس
msgid "Your verification code is {0}"
msgstr "کد تأیید شما {0} است"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "صفر"
@@ -29833,7 +29747,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "اصلاح"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "و"
@@ -29890,7 +29804,7 @@ msgstr "ایجاد كردن"
msgid "cyan"
msgstr "فیروزه ای"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30005,7 +29919,7 @@ msgstr "ایمیل"
msgid "email inbox"
msgstr "صندوق ورودی ایمیل"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "خالی"
@@ -30057,7 +29971,7 @@ msgstr "خاکستری"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip در PATH یافت نشد! این برای تهیه نسخه پشتیبان لازم است."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30091,7 +30005,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "همین الان"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "برچسب"
@@ -30131,7 +30045,7 @@ msgstr "login_required"
msgid "long"
msgstr "طولانی"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30321,7 +30235,7 @@ msgstr "واکنش"
msgid "restored {0} as {1}"
msgstr "{0} به عنوان {1} بازیابی شد"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30656,7 +30570,7 @@ msgstr "{0} قبلاً اشتراک خود را لغو کرده است"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} قبلاً اشتراک {1} {2} را لغو کرده است"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} و {1}"
@@ -30762,6 +30676,10 @@ msgstr "{0} در ردیف {1} وجود ندارد"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "فیلد {0} را نمیتوان در {1} منحصربهفرد تنظیم کرد، زیرا مقادیر موجود غیر منحصر به فردی وجود دارد"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "قالب {0} را نمیتوان از مقادیر این ستون تعیین کرد. پیشفرض {1}."
@@ -30782,10 +30700,6 @@ msgstr "{0} ساعت"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} قبلاً مقدار پیشفرض را برای {1} اختصاص داده است."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} با موفقیت به گروه ایمیل اضافه شد."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} مکالمه را در {1} {2} ترک کرده است"
@@ -30856,6 +30770,10 @@ msgstr "{0} مانند {1} است"
msgid "{0} is mandatory"
msgstr "{0} اجباری است"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} یک فیلد از نوع doctype نیست {1}"
@@ -30877,7 +30795,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} یک DocType معتبر برای پیوند پویا نیست"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} یک آدرس ایمیل معتبر نیست"
@@ -30885,11 +30803,11 @@ msgstr "{0} یک آدرس ایمیل معتبر نیست"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} یک کد ISO 3166 ALPHA-2 معتبر نیست."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} یک نام معتبر نیست"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} یک شماره تلفن معتبر نیست"
@@ -30897,11 +30815,11 @@ msgstr "{0} یک شماره تلفن معتبر نیست"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} یک وضعیت گردش کار معتبر نیست. لطفاً گردش کار خود را به روز کنید و دوباره امتحان کنید."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} یک DocType والد معتبر برای {1} نیست"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} یک فیلد والد معتبر برای {1} نیست"
@@ -30989,23 +30907,23 @@ msgstr "{0} دقیقه قبل"
msgid "{0} months ago"
msgstr "{0} ماه پیش"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} باید بعد از {1} باشد"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} باید با '{1}' شروع شود"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} باید برابر با '{1}' باشد"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} نباید هیچ یک از {1} باشد"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} باید یکی از {1} باشد"
@@ -31017,7 +30935,7 @@ msgstr "ابتدا باید {0} تنظیم شود"
msgid "{0} must be unique"
msgstr "{0} باید منحصر به فرد باشد"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} باید {1} {2} باشد"
@@ -31046,16 +30964,12 @@ msgstr "{0} از {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} از {1} ({2} ردیف با فرزندان)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} از {1} ارسال شد"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "فقط {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} یا {1}"
@@ -31092,11 +31006,11 @@ msgstr "{0} تخصیص خود را حذف کرد."
msgid "{0} role does not have permission on any doctype"
msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} ردیف #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} با موفقیت ذخیره شد"
@@ -31208,7 +31122,7 @@ msgstr "{0} {1} وجود ندارد، یک هدف جدید را برای ادغ
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده است: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} یافت نشد"
@@ -31361,11 +31275,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{
msgid "{} Complete"
msgstr "{} کامل"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} کد پایتون نامعتبر در خط {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}"
@@ -31387,7 +31301,7 @@ msgstr "فیلد {} نمیتواند خالی باشد."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} غیر فعال شده است. فقط در صورتی میتوان آن را فعال کرد که {} علامت زده شود."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} یک رشته تاریخ معتبر نیست."
diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po
index 4f16dfb066..4c608ce286 100644
--- a/frappe/locale/fr.po
+++ b/frappe/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:33\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {
msgid "'Recipients' not specified"
msgstr "«Destinataires» non spécifiés"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' n'est pas une URL valide"
@@ -953,7 +953,7 @@ msgstr "Action / Route"
msgid "Action Complete"
msgstr "Action terminée"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Échec de l'action"
@@ -1592,6 +1592,14 @@ msgstr "Alerte"
msgid "Alerts and Notifications"
msgstr "Alertes et notifications"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1632,7 +1640,6 @@ msgstr "Aligner la Valeur"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2078,7 +2085,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr "Règles de nommage mises à jour."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Une erreur s'est produite lors de la définition des paramètres de session par défaut."
@@ -2196,7 +2203,7 @@ msgstr "Nom de l'App"
msgid "App not found for module: {0}"
msgstr "Application introuvable pour le module : {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} n'est pas installée"
@@ -2410,10 +2417,6 @@ msgstr "Voulez-vous vraiment réinitialiser toutes les personnalisations?"
msgid "Are you sure you want to save this document?"
msgstr "Êtes-vous sûr de vouloir enregistrer ce document ?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Etes-vous sûr de vouloir envoyer cette newsletter maintenant ?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2667,9 +2670,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Le nom joint à un nom doit être une chaîne ou un entier"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Pièce jointe"
@@ -2696,10 +2697,7 @@ msgid "Attachment Removed"
msgstr "Pièce jointe retirée"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2717,11 +2715,6 @@ msgstr "Tenter de lancer QZ Tray ..."
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Audience"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3148,7 +3141,7 @@ msgstr "Image d'arrière-plan"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Travaux en Arrière-plan"
@@ -3876,9 +3869,7 @@ msgstr "Titre de rappel"
msgid "Camera"
msgstr "Caméra"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3964,10 +3955,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr "Annuler tous les documents"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4261,7 +4248,7 @@ msgstr "Description de la Catégorie"
msgid "Category Name"
msgstr "Nom de la Catégorie"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Centime"
@@ -4430,10 +4417,6 @@ msgstr "Vérifier"
msgid "Check Request URL"
msgstr "Vérifier l'URL de Demande"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4457,10 +4440,6 @@ msgstr "Cochez cette case si vous voulez forcer l'utilisateur à sélectionner u
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Vérification un moment"
@@ -4507,6 +4486,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Les tables enfants sont affichées sous forme de grille dans d'autres DocTypes"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Choisissez une carte existante ou créez une nouvelle carte"
@@ -4596,10 +4579,6 @@ msgstr ""
msgid "Click here"
msgstr "Cliquez ici"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Cliquez ici pour vérifier"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4941,7 +4920,7 @@ msgstr "Colonnes"
msgid "Columns / Fields"
msgstr "Colonnes / Champs"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Colonnes basées sur"
@@ -5263,17 +5242,12 @@ msgstr ""
msgid "Confirm Request"
msgstr "Confirmer la requête"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Confirmez Votre Email"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Modèle de courriel de confirmation"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Confirmé"
@@ -5404,8 +5378,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5413,7 +5385,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5438,10 +5409,8 @@ msgstr "Contenu (Markdown)"
msgid "Content Hash"
msgstr "Hash du Contenu"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5547,6 +5516,10 @@ msgstr "Impossible de trouver {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Impossible de mapper la colonne {0} au champ {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5602,7 +5575,7 @@ msgstr "Compteur"
msgid "Country"
msgstr "Pays"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5733,11 +5706,6 @@ msgstr "Créer un(e) nouveau(elle) {0}"
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -6086,6 +6054,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6143,7 +6115,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Personnaliser le formulaire"
@@ -6436,7 +6408,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6500,6 +6471,11 @@ msgstr "Jour"
msgid "Day of Week"
msgstr "Jour de la semaine"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Journées"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6767,6 +6743,7 @@ msgstr "Différé"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7079,6 +7056,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7832,7 +7810,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8450,7 +8428,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8544,11 +8521,9 @@ msgstr "Pied de Page Email"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Groupe Email"
@@ -8621,18 +8596,11 @@ msgstr ""
msgid "Email Rule"
msgstr "Règle Email"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Email Envoyé"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8739,10 +8707,18 @@ msgstr "Les e-mails seront envoyés lors des actions de workflow"
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9206,6 +9182,14 @@ msgstr "Erreur dans la notification"
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Erreur lors de la connexion au compte Email {0}"
@@ -9402,6 +9386,10 @@ msgstr "Développer"
msgid "Expand All"
msgstr "Développer Tout"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9933,7 +9921,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Le Nom du champ est limité à 64 caractères ({0})"
@@ -9949,7 +9937,7 @@ msgstr "Nom du champ qui sera le DocType pour ce champ lié"
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}"
@@ -10001,6 +9989,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10166,6 +10158,14 @@ msgstr "Nom du filtre"
msgid "Filter Values"
msgstr "Valeurs du filtre"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10409,10 +10409,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr "Les champs suivants ont des valeurs manquantes:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10829,10 +10825,8 @@ msgid "Friday"
msgstr "Vendredi"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "À partir de"
@@ -10913,10 +10907,14 @@ msgstr "Une fonction"
msgid "Function Based On"
msgstr "Fonction basée sur"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "D'autres nœuds peuvent être créés uniquement sous les nœuds de type 'Groupe'"
@@ -11398,6 +11396,10 @@ msgstr "Regrouper par type"
msgid "Group By field is required to create a dashboard chart"
msgstr "Le champ Grouper par est requis pour créer un tableau de bord"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Niveau parent"
@@ -11446,7 +11448,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11460,7 +11461,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11969,6 +11969,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Limite de taux horaire pour générer des liens de réinitialisation de mot de passe"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Heures"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12734,11 +12739,11 @@ msgstr "Utilisateur ou mot de passe incorrect"
msgid "Incorrect Verification code"
msgstr "Code de Vérification incorrect"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12890,11 +12895,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Autorisation Insuffisante Pour {0}"
@@ -13044,7 +13049,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr "Les informations d'identification invalides"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Date invalide"
@@ -13052,7 +13057,7 @@ msgstr "Date invalide"
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13064,6 +13069,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13128,7 +13138,7 @@ msgstr ""
msgid "Invalid Password"
msgstr "Mot de Passe Invalide"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13172,10 +13182,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Colonne incorrecte"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13188,10 +13226,26 @@ msgstr "Expression non valide définie dans le filtre {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Expression non valide définie dans le filtre {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nom de champ {0} invalide"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Champ invalide '{0}' dans nom automatique"
@@ -13200,11 +13254,26 @@ msgstr "Champ invalide '{0}' dans nom automatique"
msgid "Invalid file path: {0}"
msgstr "Chemin de fichier invalide : {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Filtre non valide: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13226,10 +13295,22 @@ msgstr "Contenu non valide ou corrompu pour l'importation"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Fichier de modèle non valide pour l'importation"
@@ -13671,11 +13752,11 @@ msgstr "Colonne Tableau Kanban"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Nom du Tableau Kanban"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14387,6 +14468,10 @@ msgstr "Aime"
msgid "Limit"
msgstr "Limite"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14650,6 +14735,7 @@ msgid "Load Balancing"
msgstr "L'équilibrage de charge"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15168,11 +15254,9 @@ msgstr "Marquer comme spam"
msgid "Mark as Unread"
msgstr "Marquer comme non Lu"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15361,7 +15445,6 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15374,7 +15457,6 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15389,16 +15471,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15522,7 +15594,7 @@ msgstr "Meta title pour le référencement"
msgid "Method"
msgstr "Méthode"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15572,6 +15644,11 @@ msgstr "Score Minimum de Mot de Passe"
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15967,7 +16044,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "Doit être de type \"Joindre l'Image\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Doit avoir l'autorisation d'accéder aux rapport dont celui-ci."
@@ -16155,6 +16232,10 @@ msgstr ""
msgid "Negative Value"
msgstr "Valeur négative"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Erreur d'ensemble imbriqué. Veuillez contacter l'Administrateur."
@@ -16237,7 +16318,7 @@ msgstr "Nouvel évènement"
msgid "New Folder"
msgstr "Nouveau Dossier"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nouveau Tableau Kanban"
@@ -16381,48 +16462,13 @@ msgstr "De nouvelles {} versions pour les applications suivantes sont disponible
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Groupe Email pour Newsletter"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Responsable de la Newsletter"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "La Newsletter a déjà été envoyée"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Le bulletin devrait avoir au moins un destinataire"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16684,7 +16730,7 @@ msgstr "Aucun résultat trouvs"
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16712,10 +16758,6 @@ msgstr "Aucune alerte pour aujourd'hui"
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Aucun changement dans le document"
@@ -16752,7 +16794,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr "Aucun contact lié au document"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Aucune donnée à exporter"
@@ -16772,7 +16814,7 @@ msgstr "Aucun compte de messagerie associé à l'utilisateur. Veuillez ajout
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16831,7 +16873,7 @@ msgstr "Nb de lignes (Max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Pas d'autorisation pour {0}"
@@ -16959,7 +17001,7 @@ msgstr "Pas des descendants de"
msgid "Not Equals"
msgstr "Non égaux"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Non Trouvé"
@@ -16985,7 +17027,7 @@ msgstr "Lié à aucun enregistrement"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16994,7 +17036,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "Non Autorisé"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17022,7 +17064,6 @@ msgstr "Non Vu"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Non Envoyé"
@@ -17055,7 +17096,7 @@ msgstr ""
msgid "Not active"
msgstr "Non actif"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Non autorisé pour {0}: {1}"
@@ -17489,6 +17530,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Ancien Mot De Passe"
@@ -17662,7 +17707,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17834,7 +17879,7 @@ msgstr "Ouvert"
msgid "Operation"
msgstr "Opération"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "L'Opérateur doit être parmi {0}"
@@ -17933,6 +17978,10 @@ msgstr ""
msgid "Order"
msgstr "Commande"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18328,7 +18377,7 @@ msgstr "Parent est le nom du document auquel les données seront ajoutées."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18450,10 +18499,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr "Les mots de passe ne correspondent pas!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Coller"
@@ -18599,7 +18644,7 @@ msgstr "Valider de Manière Permanente {0} ?"
msgid "Permanently delete {0}?"
msgstr "Supprimer de Manière Permanente {0} ?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Erreur d'autorisation"
@@ -18751,7 +18796,7 @@ msgstr "Téléphone"
msgid "Phone No."
msgstr "N° de Téléphone."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -19024,10 +19069,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr "Veuillez enregistrer avant de joindre une pièce."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Veuillez sauvegarder la Newsletter avant de l'envoyer"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Veuillez enregistrer le document avant l'affectation"
@@ -19060,7 +19101,7 @@ msgstr "Veuillez sélectionner le Score Minimum du Mot de Passe"
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19076,7 +19117,7 @@ msgstr "Veuillez sélectionner un fichier ou une URL"
msgid "Please select a valid csv file with data"
msgstr "Veuillez sélectionner un fichier CSV valide contenant des données"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Veuillez sélectionner un filtre de date valide"
@@ -19154,7 +19195,7 @@ msgstr ""
msgid "Please specify"
msgstr "Veuillez spécifier"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19191,10 +19232,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Veuillez vérifier votre adresse e-mail"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19288,6 +19325,10 @@ msgstr "Messages de {0}"
msgid "Posts filed under {0}"
msgstr "Messages déposés en vertu de {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19347,7 +19388,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Utilisateur du rapport préparé"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19376,8 +19417,6 @@ msgstr "Appuyez sur Entrée pour enregistrer"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19765,7 +19804,7 @@ msgstr ""
msgid "Progress"
msgstr "Progression"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projet"
@@ -19860,14 +19899,7 @@ msgstr ""
msgid "Publish"
msgstr "Publier"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19875,7 +19907,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20050,7 +20081,7 @@ msgstr "Rapport de Requête"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20096,7 +20127,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "Dans la file d'attente"
@@ -20119,19 +20149,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr "En file d'attente pour la sauvegarde. Vous recevrez un courriel avec le lien de téléchargement"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20332,7 +20354,7 @@ msgstr "Lu par le destinataire sur"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21199,7 +21221,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Rapport mis à jour avec succès"
@@ -21220,7 +21242,7 @@ msgstr "Rapport {0}"
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Rapport {0} est désactivé"
@@ -21553,10 +21575,8 @@ msgstr "Révoquer"
msgid "Revoked"
msgstr "Révoqué"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21767,7 +21787,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21781,7 +21800,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21899,7 +21917,7 @@ msgstr "Règle"
msgid "Rule Conditions"
msgstr "Conditions de règle"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22088,11 +22106,11 @@ msgstr "Samedi"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22184,32 +22202,17 @@ msgstr "Veuillez scanner le QR Code et entrer le code que vous recevez."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Prévu"
@@ -22243,17 +22246,6 @@ msgstr "Type de travail planifié"
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Prévu pour envoyer"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "L'exécution planifiée du script {0} a été mise à jour"
@@ -22465,6 +22457,11 @@ msgstr "Rechercher..."
msgid "Searching ..."
msgstr "Recherche ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22854,9 +22851,7 @@ msgstr "Sélectionner {0}"
msgid "Self approval is not allowed"
msgstr "L'auto-approbation n'est pas autorisée"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Envoyer"
@@ -22887,11 +22882,6 @@ msgstr "Envoyer une Alerte Sur"
msgid "Send Email Alert"
msgstr "Envoyer une alerte email"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22949,38 +22939,16 @@ msgstr "Envoyer Accusé de Réception"
msgid "Send System Notification"
msgstr "Envoyer une notification système"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Envoyer à tous les cessionnaires"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Envoyer le Lien de Désabonnement"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Envoyer un Email de Bienvenue"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23028,10 +22996,6 @@ msgstr ""
msgid "Send me a copy"
msgstr "M'Envoyer Une Copie"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23047,19 +23011,15 @@ msgstr "Envoyer un message de désabonnement dans l'email"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Expéditeur"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Email d'expéditeur"
@@ -23076,9 +23036,7 @@ msgid "Sender Field should have Email in options"
msgstr "Le champ de l'expéditeur doit avoir un e-mail dans les options"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23098,18 +23056,9 @@ msgstr "SendGrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Envoi"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23117,8 +23066,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Envoyé"
@@ -23188,7 +23135,7 @@ msgstr "Séries {0} déjà utilisé dans {1}"
msgid "Server Action"
msgstr "Action du serveur"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Erreur du Serveur"
@@ -23207,7 +23154,7 @@ msgstr "IP serveur"
msgid "Server Script"
msgstr "Script de serveur"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23246,15 +23193,15 @@ msgstr "Paramètres de session par défaut"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Session par défaut"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Session par défaut enregistrée"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "La Session a Expiré"
@@ -23484,7 +23431,7 @@ msgstr "Configuration de votre système"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24567,7 +24514,6 @@ msgstr "Intervalle de temps des statistiques"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24592,7 +24538,6 @@ msgstr "Intervalle de temps des statistiques"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24733,8 +24678,6 @@ msgstr "Sous-domaine"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24743,7 +24686,6 @@ msgstr "Sous-domaine"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25114,7 +25056,7 @@ msgstr "Synchronisation"
msgid "Syncing {0} of {1}"
msgstr "Synchroniser {0} sur {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25421,7 +25363,7 @@ msgstr ""
msgid "Table updated"
msgstr "Table Mise à Jour"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "La Table {0} ne peut pas être vide"
@@ -25548,10 +25490,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "E-mail de test envoyé à {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Dossier_Test"
@@ -25617,10 +25555,6 @@ msgstr "Merci pour votre Email"
msgid "Thank you for your feedback!"
msgstr "Merci pour votre avis!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Merci de l’intérêt que vous nous montrez en vous abonnant à notre actualité"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25809,7 +25743,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "La ressource que vous recherchez n'est pas disponible"
@@ -25821,7 +25755,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25974,7 +25908,7 @@ msgstr "Authentification Tierce"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Cette devise est désactivée. Activez la pour l'utiliser dans les transactions"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ce Tableau Kanban sera privé"
@@ -25998,7 +25932,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Cette action n'est autorisée que pour {}"
@@ -26158,14 +26092,6 @@ msgstr "Cela peut être imprimé sur plusieurs pages"
msgid "This month"
msgstr "Ce mois-ci"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26278,7 +26204,6 @@ msgstr "Jeudi"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Temps"
@@ -26504,10 +26429,8 @@ msgid "Title of the page"
msgstr "Titre de la page"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "À"
@@ -26786,7 +26709,7 @@ msgstr ""
msgid "Topic"
msgstr "Sujet"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26814,16 +26737,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Total d'Abonnés"
@@ -26832,11 +26747,6 @@ msgstr "Total d'Abonnés"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27233,23 +27143,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL à consulter en cliquant sur l'image du diaporama"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27299,7 +27203,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}"
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27315,6 +27219,10 @@ msgstr "Annuler l'action"
msgid "Undo last action"
msgstr "Annuler l'action précédente"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27347,7 +27255,7 @@ msgstr "Inconnu"
msgid "Unknown Column: {0}"
msgstr "Colonne Inconnue : {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27380,7 +27288,7 @@ msgstr "Non Lus"
msgid "Unread Notification Sent"
msgstr "Notification Non Lue Envoyée"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27394,7 +27302,7 @@ msgstr ""
msgid "Unshared"
msgstr "Non Partagé"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Se Désinscrire"
@@ -27418,6 +27326,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Désinscrit"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Colonne sans titre"
@@ -27540,7 +27453,7 @@ msgstr "Mise à jour vers une nouvelle version 🎉"
msgid "Updated successfully"
msgstr "Mis à jour avec succés"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Réactualisation"
@@ -28275,7 +28188,7 @@ msgstr "Valeur trop grande"
msgid "Value {0} missing for {1}"
msgstr "Valeur {0} manquante pour {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "La valeur {0} doit être au format de durée valide: dhms"
@@ -28700,7 +28613,6 @@ msgstr "URL du webhook"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28708,9 +28620,7 @@ msgid "Website"
msgstr "Site Web"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Analyse de site Web"
@@ -29146,7 +29056,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29369,11 +29279,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Vous n'êtes pas autorisé à accéder à cet enregistrement {0} car il est lié à {1} '{2}' dans le champ {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29396,7 +29306,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Vous n'êtes pas autorisé à exporter {} doctype"
@@ -29424,7 +29334,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "Vous n'êtes pas autorisé à accéder à cette page."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29519,7 +29429,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Vous pouvez essayer de modifier les filtres de votre rapport."
@@ -29596,11 +29506,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'action"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29608,7 +29522,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr "Vous n'êtes pas autorisé à annuler tous les documents liés."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Vous n'avez pas accès au Rapport : {0}"
@@ -29616,11 +29530,11 @@ msgstr "Vous n'avez pas accès au Rapport : {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Vous n'avez pas l'autorisation d'obtenir un rapport sur : {0}"
@@ -29713,7 +29627,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Vous devez être en Mode Développeur pour modifier un Formulaire Web Standard"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Vous devez être connecté et avoir le Role Responsable Système pour pouvoir accéder aux sauvegardes."
@@ -29879,7 +29793,7 @@ msgstr "Le nom de votre société et l'adresse pour le pied de l'email."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer."
@@ -29891,7 +29805,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Zéro"
@@ -29938,7 +29852,7 @@ msgstr ""
msgid "amend"
msgstr "Nouv. version"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "et"
@@ -29995,7 +29909,7 @@ msgstr "créer"
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30110,7 +30024,7 @@ msgstr ""
msgid "email inbox"
msgstr "Boîte de réception e-mail"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "vide"
@@ -30162,7 +30076,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30196,7 +30110,7 @@ msgstr ""
msgid "just now"
msgstr "juste maintenant"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30236,7 +30150,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30426,7 +30340,7 @@ msgstr "réponse"
msgid "restored {0} as {1}"
msgstr "restauré(e) {0} comme {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30761,7 +30675,7 @@ msgstr "{0} déjà désinscrit"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} déjà désabonné pour {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} et {1}"
@@ -30867,6 +30781,10 @@ msgstr "{0} n'existe pas dans la ligne {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30887,10 +30805,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr "{0} a déjà attribué la valeur par défaut à {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} a été ajouté avec succès au Groupe d’Email."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} a quitté la conversation dans {1} {2}"
@@ -30961,6 +30875,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} est obligatoire"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30982,7 +30900,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} n'est pas un DocType valide pour Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} n’est pas une Adresse Email valide"
@@ -30990,11 +30908,11 @@ msgstr "{0} n’est pas une Adresse Email valide"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} n'est pas un nom valide"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} n'est pas un numéro de téléphone valide"
@@ -31002,11 +30920,11 @@ msgstr "{0} n'est pas un numéro de téléphone valide"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} n'est pas un état de Workflow valide. Veuillez mettre à jour votre Workflow et réessayer."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31094,23 +31012,23 @@ msgstr "Il y a {0} minutes"
msgid "{0} months ago"
msgstr "Il y a {0} mois"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} doit être après {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} doit être l'un des {1}"
@@ -31122,7 +31040,7 @@ msgstr "{0} doit être défini en premier"
msgid "{0} must be unique"
msgstr "{0} doit être unique"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31151,16 +31069,12 @@ msgstr "{0} sur {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} sur {1} ({2} lignes avec des enfants)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ou {1}"
@@ -31197,11 +31111,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} enregistré avec succès"
@@ -31313,7 +31227,7 @@ msgstr "{0} {1} n'existe pas, veuillez sélectionner une nouvelle cible à fusio
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} est lié aux documents validés suivants: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} introuvable"
@@ -31466,11 +31380,11 @@ msgstr "{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{fi
msgid "{} Complete"
msgstr "{} Achevée"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31492,7 +31406,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} n'est pas une chaîne de date valide."
diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po
index b3911f912b..fb70eb1f90 100644
--- a/frappe/locale/hr.po
+++ b/frappe/locale/hr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'U Prikazu Liste' nije dopušteno za tip {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primatelji' nisu navedeni"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -1034,7 +1034,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1673,6 +1673,14 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1713,7 +1721,6 @@ msgstr "Poravnaj Vrijednost"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2158,7 +2165,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2276,7 +2283,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2490,10 +2497,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2747,9 +2750,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2776,10 +2777,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2797,11 +2795,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3228,7 +3221,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3956,9 +3949,7 @@ msgstr ""
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4044,10 +4035,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4341,7 +4328,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4509,10 +4496,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4536,10 +4519,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4586,6 +4565,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4675,10 +4658,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -5020,7 +4999,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5340,17 +5319,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5481,8 +5455,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5490,7 +5462,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5515,10 +5486,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5624,6 +5593,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5679,7 +5652,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5810,11 +5783,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -6163,6 +6131,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6220,7 +6192,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6513,7 +6485,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6577,6 +6548,11 @@ msgstr ""
msgid "Day of Week"
msgstr "Dan u Tjednu"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6844,6 +6820,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7156,6 +7133,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7909,7 +7887,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8527,7 +8505,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8621,11 +8598,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8698,18 +8673,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8816,10 +8784,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9283,6 +9259,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9479,6 +9463,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -10010,7 +9998,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -10026,7 +10014,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10078,6 +10066,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10243,6 +10235,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10486,10 +10486,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10906,10 +10902,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10990,10 +10984,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11475,6 +11473,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11523,7 +11525,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11537,7 +11538,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12046,6 +12046,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12811,11 +12816,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12967,11 +12972,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13121,7 +13126,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -13129,7 +13134,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13141,6 +13146,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13205,7 +13215,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13249,10 +13259,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13265,10 +13303,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13277,11 +13331,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13303,10 +13372,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13748,11 +13829,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14464,6 +14545,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "Granica mora biti cijeli broj koji nije negativan"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14727,6 +14812,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15245,11 +15331,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15438,7 +15522,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15451,7 +15534,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15466,16 +15548,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15599,7 +15671,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15649,6 +15721,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16044,7 +16121,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16232,6 +16309,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16314,7 +16395,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16458,48 +16539,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16761,7 +16807,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16789,10 +16835,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16829,7 +16871,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16849,7 +16891,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16908,7 +16950,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -17036,7 +17078,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17062,7 +17104,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17071,7 +17113,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17099,7 +17141,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -17132,7 +17173,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17566,6 +17607,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17739,7 +17784,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17911,7 +17956,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -18010,6 +18055,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18405,7 +18454,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18527,10 +18576,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18676,7 +18721,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18828,7 +18873,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -19101,10 +19146,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -19137,7 +19178,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19153,7 +19194,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19231,7 +19272,7 @@ msgstr "Postavi zadani račun odlazne e-pošte iz Alati > Račun e-pošte"
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19268,10 +19309,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19365,6 +19402,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19424,7 +19465,7 @@ msgstr "Analitika Pripremljenog Izvješća"
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19453,8 +19494,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19842,7 +19881,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19937,14 +19976,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19952,7 +19984,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20127,7 +20158,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20173,7 +20204,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20196,19 +20226,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20409,7 +20431,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21276,7 +21298,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21297,7 +21319,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21630,10 +21652,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21844,7 +21864,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21858,7 +21877,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21976,7 +21994,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22165,11 +22183,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22261,32 +22279,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22320,17 +22323,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22542,6 +22534,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22931,9 +22928,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22964,11 +22959,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23026,38 +23016,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23105,10 +23073,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23124,19 +23088,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -23153,9 +23113,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23175,18 +23133,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23194,8 +23143,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23265,7 +23212,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23284,7 +23231,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23323,15 +23270,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23561,7 +23508,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24644,7 +24591,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24669,7 +24615,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24810,8 +24755,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24820,7 +24763,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25191,7 +25133,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25498,7 +25440,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25625,10 +25567,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25694,10 +25632,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25886,7 +25820,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25898,7 +25832,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26051,7 +25985,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -26075,7 +26009,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26235,14 +26169,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26355,7 +26281,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26581,10 +26506,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26861,7 +26784,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26889,16 +26812,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26907,11 +26822,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27308,23 +27218,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27374,7 +27278,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27390,6 +27294,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27422,7 +27330,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27455,7 +27363,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27469,7 +27377,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27493,6 +27401,11 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27615,7 +27528,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28350,7 +28263,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28775,7 +28688,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28783,9 +28695,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29221,7 +29131,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29444,11 +29354,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29471,7 +29381,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29499,7 +29409,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29594,7 +29504,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29671,11 +29581,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29683,7 +29597,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29691,11 +29605,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29788,7 +29702,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29954,7 +29868,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29966,7 +29880,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -30013,7 +29927,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30070,7 +29984,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30185,7 +30099,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30237,7 +30151,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30271,7 +30185,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30311,7 +30225,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30501,7 +30415,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30836,7 +30750,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30942,6 +30856,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30962,10 +30880,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31036,6 +30950,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31057,7 +30975,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31065,11 +30983,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31077,11 +30995,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31169,23 +31087,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31197,7 +31115,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31226,16 +31144,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31272,11 +31186,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31388,7 +31302,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31541,11 +31455,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31567,7 +31481,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index 5a063ebaf7..0f53e90069 100644
--- a/frappe/locale/hu.po
+++ b/frappe/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr "Módosítás nem engedélyezett"
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Nem sikerült elindulni: "
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/it.po b/frappe/locale/it.po
index 0628d32a08..b0240b6879 100644
--- a/frappe/locale/it.po
+++ b/frappe/locale/it.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po
index 51c022ecde..78b718fe4b 100644
--- a/frappe/locale/nl.po
+++ b/frappe/locale/nl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}"
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Actie is mislukt"
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr "App Naam"
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} is niet geïnstalleerd"
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index 13e21b81da..6b742a48dd 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -863,7 +863,7 @@ msgstr "Akcja / Trasa"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1502,6 +1502,14 @@ msgstr "Alarm"
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1542,7 +1550,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1987,7 +1994,7 @@ msgstr "Zmiana niedozwolona"
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2105,7 +2112,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2319,10 +2326,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2576,9 +2579,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Załącznik"
@@ -2605,10 +2606,7 @@ msgid "Attachment Removed"
msgstr "Usunięto Attachment"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2626,11 +2624,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3057,7 +3050,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3785,9 +3778,7 @@ msgstr "Tytuł oddzwonienia"
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3873,10 +3864,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4170,7 +4157,7 @@ msgstr "Kategoria Opis"
msgid "Category Name"
msgstr "Nazwa kategorii"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4338,10 +4325,6 @@ msgstr "Czek"
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4365,10 +4348,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4415,6 +4394,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4504,10 +4487,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4849,7 +4828,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr "Kolumny / Pola"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5169,17 +5148,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Szablon e-maila z potwierdzeniem"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5310,8 +5284,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5319,7 +5291,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5344,10 +5315,8 @@ msgstr "Treść (Markdown)"
msgid "Content Hash"
msgstr "Hash zawartości"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5453,6 +5422,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5508,7 +5481,7 @@ msgstr "Licznik"
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5639,11 +5612,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5992,6 +5960,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6049,7 +6021,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6342,7 +6314,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6406,6 +6377,11 @@ msgstr ""
msgid "Day of Week"
msgstr "Dzień tygodnia"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6673,6 +6649,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6985,6 +6962,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7738,7 +7716,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8356,7 +8334,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8450,11 +8427,9 @@ msgstr "Stopka dla e-maila"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8527,18 +8502,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Wiadomość wysłana"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8645,10 +8613,18 @@ msgstr "Wiadomości e-mail będą wysyłane z następnymi możliwymi działaniam
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9112,6 +9088,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9308,6 +9292,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9839,7 +9827,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9855,7 +9843,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9907,6 +9895,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10072,6 +10064,14 @@ msgstr ""
msgid "Filter Values"
msgstr "Filtruj wartości"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10315,10 +10315,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10735,10 +10731,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10819,10 +10813,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11304,6 +11302,10 @@ msgstr "Grupuj według typu"
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11352,7 +11354,6 @@ msgstr "GG: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11366,7 +11367,6 @@ msgstr "GG: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11875,6 +11875,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Limit stawki godzinowej za generowanie linków do resetowania hasła"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12640,11 +12645,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12796,11 +12801,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12950,7 +12955,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12958,7 +12963,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12970,6 +12975,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13034,7 +13044,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13078,10 +13088,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13094,10 +13132,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13106,11 +13160,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13132,10 +13201,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13577,11 +13658,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14293,6 +14374,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14556,6 +14641,7 @@ msgid "Load Balancing"
msgstr "Równoważenie obciążenia"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15074,11 +15160,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15267,7 +15351,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15280,7 +15363,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15295,16 +15377,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Wiadomość (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Wiadomość (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15428,7 +15500,7 @@ msgstr ""
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15478,6 +15550,11 @@ msgstr "Minimalny Wynik Hasła"
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15873,7 +15950,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16061,6 +16138,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16143,7 +16224,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16287,48 +16368,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16590,7 +16636,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16618,10 +16664,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16658,7 +16700,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16678,7 +16720,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16737,7 +16779,7 @@ msgstr "Nie rzędów (max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16865,7 +16907,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16891,7 +16933,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16900,7 +16942,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16928,7 +16970,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16961,7 +17002,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17395,6 +17436,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17568,7 +17613,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17740,7 +17785,7 @@ msgstr "Otwarty"
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17839,6 +17884,10 @@ msgstr ""
msgid "Order"
msgstr "Zamówienie"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18234,7 +18283,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18356,10 +18405,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18505,7 +18550,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18657,7 +18702,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18930,10 +18975,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18966,7 +19007,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18982,7 +19023,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19060,7 +19101,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19097,10 +19138,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19194,6 +19231,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19253,7 +19294,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19282,8 +19323,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19671,7 +19710,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19766,14 +19805,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19781,7 +19813,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19956,7 +19987,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20002,7 +20033,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20025,19 +20055,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20238,7 +20260,7 @@ msgstr "Odczytany przez odbiorcę"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21105,7 +21127,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21126,7 +21148,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21459,10 +21481,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21673,7 +21693,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21687,7 +21706,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21805,7 +21823,7 @@ msgstr "Reguła"
msgid "Rule Conditions"
msgstr "Warunki reguł"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21994,11 +22012,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22090,32 +22108,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22149,17 +22152,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Zaplanowane do wysłania"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22371,6 +22363,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22760,9 +22757,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22793,11 +22788,6 @@ msgstr "Wyślij alarm na"
msgid "Send Email Alert"
msgstr "Wyślij powiadomienie e-mailem"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22855,38 +22845,16 @@ msgstr ""
msgid "Send System Notification"
msgstr "Wyślij powiadomienie systemowe"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Wyślij do wszystkich przypisanych"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Wyślij link Wyrejestrowanie"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Wyślij e-mail powitalny"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22934,10 +22902,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22953,19 +22917,15 @@ msgstr "Wyślij wiadomość do maila wypisz"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22982,9 +22942,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23004,18 +22962,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23023,8 +22972,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23094,7 +23041,7 @@ msgstr ""
msgid "Server Action"
msgstr "Działanie serwera"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23113,7 +23060,7 @@ msgstr "IP serwera"
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23152,15 +23099,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23390,7 +23337,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24473,7 +24420,6 @@ msgstr "Statystyki Interwał czasowy"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24498,7 +24444,6 @@ msgstr "Statystyki Interwał czasowy"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24639,8 +24584,6 @@ msgstr "Subdomena"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24649,7 +24592,6 @@ msgstr "Subdomena"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25020,7 +24962,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25327,7 +25269,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25454,10 +25396,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25523,10 +25461,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25715,7 +25649,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25727,7 +25661,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25880,7 +25814,7 @@ msgstr "Uwierzytelnianie przy pomocy trzeciej strony"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25904,7 +25838,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26064,14 +25998,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26184,7 +26110,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26410,10 +26335,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26690,7 +26613,7 @@ msgstr ""
msgid "Topic"
msgstr "Temat"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26718,16 +26641,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Wszystkich zapisani"
@@ -26736,11 +26651,6 @@ msgstr "Wszystkich zapisani"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27137,23 +27047,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "Adres URL, do którego należy przejść po kliknięciu obrazu pokazu slajdów"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27203,7 +27107,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Stan niepodpisania"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27219,6 +27123,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27251,7 +27159,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27284,7 +27192,7 @@ msgstr "Niewykształcony"
msgid "Unread Notification Sent"
msgstr "Nieprzeczytane Powiadomienie Wysłano"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27298,7 +27206,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27322,6 +27230,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27444,7 +27357,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28179,7 +28092,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28604,7 +28517,6 @@ msgstr "Adres URL webhooka"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28612,9 +28524,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29050,7 +28960,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29273,11 +29183,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29300,7 +29210,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29328,7 +29238,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29423,7 +29333,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29500,11 +29410,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29512,7 +29426,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29520,11 +29434,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29617,7 +29531,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29783,7 +29697,7 @@ msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29795,7 +29709,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29842,7 +29756,7 @@ msgstr "po"
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29899,7 +29813,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30014,7 +29928,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30066,7 +29980,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30100,7 +30014,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30140,7 +30054,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30330,7 +30244,7 @@ msgstr "odpowiedź"
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30665,7 +30579,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30771,6 +30685,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30791,10 +30709,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30865,6 +30779,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30886,7 +30804,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30894,11 +30812,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30906,11 +30824,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30998,23 +30916,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31026,7 +30944,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31055,16 +30973,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31101,11 +31015,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31217,7 +31131,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31370,11 +31284,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31396,7 +31310,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po
index f4904c1329..67022ecf23 100644
--- a/frappe/locale/pt.po
+++ b/frappe/locale/pt.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} e {1}"
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} é obrigatório"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} não é um número de telefone válido"
@@ -30893,11 +30811,11 @@ msgstr "{0} não é um número de telefone válido"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} não é um estado válido do fluxo de trabalho. Atualize o seu fluxo de trabalho e tente novamente."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr "há {0} minutos"
msgid "{0} months ago"
msgstr "há {0} meses"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} deve ser posterior a {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} deve ser um dos {1}"
@@ -31013,7 +30931,7 @@ msgstr "{0} deve ser definido primeiro"
msgid "{0} must be unique"
msgstr "{0} deve ser único"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr "{0} de {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ou {1}"
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} guardado com sucesso"
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} não foi encontrado"
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr "{} Concluído"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index b94411f493..ed3059a376 100644
--- a/frappe/locale/pt_BR.po
+++ b/frappe/locale/pt_BR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr "Ação / Rota"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr "Alerta"
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Anexo"
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr "Anexo Removido"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr "Título de retorno"
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr "Descrição da Categoria"
msgid "Category Name"
msgstr "Nome da Categoria"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr "Verifica"
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr "Marque esta opção se você deseja forçar o usuário a selecionar uma
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr "Colunas"
msgid "Columns / Fields"
msgstr "Colunas / Campos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr "Conteúdo (Markdown)"
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr "Contador"
msgid "Country"
msgstr "País"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr "Dia da Semana"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr "Expandir Todos"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr "Valores de filtro"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "De"
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr "Agrupar por tipo"
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grupo de Nós"
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Limite de taxa por hora para gerar links de redefinição de senha"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Horas"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr "Credenciais Inválidas"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr "Gostos"
msgid "Limit"
msgstr "Limite"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr "Balanceamento de carga"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Mensagem (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Mensagem (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Nenhum dado para exportar"
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "Não Permitido"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr "Inativo"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr "Inaugurado"
msgid "Operation"
msgstr "Operação"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr "Pedido"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr "Telefone"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projeto"
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr "Lido por destinatário ativado"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr "Revogado"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr "Regra"
msgid "Rule Conditions"
msgstr "Condições da regra"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Programado para enviar"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Enviar"
@@ -22780,11 +22775,6 @@ msgstr "Enviar Alerta"
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr "Enviar Notificação do Sistema"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Enviar para todos os cessionários"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Enviar link para cancelar inscrição"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Enviando"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr "Ação do Servidor"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr "IP do servidor"
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr "Intervalo de tempo das estatísticas"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr "Intervalo de tempo das estatísticas"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr "Subdomínio"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr "Subdomínio"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr "Autenticação de Terceiros"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Para"
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr "Tópico"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Total de Assinantes"
@@ -26723,11 +26638,6 @@ msgstr "Total de Assinantes"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Desatribuir condição"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr "Desconhecido"
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr "Não lida"
msgid "Unread Notification Sent"
msgstr "Notificação de mensagem não lida enviada"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr "Não Compartilhado"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr "Site"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "e"
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr "resposta"
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} é obrigatório"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index dbf864041b..78d3c55d04 100644
--- a/frappe/locale/ru.po
+++ b/frappe/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr "Настройте учетную запись исходящей эле
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr "Подготовленный отчет Аналитика"
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr "Вы не имеете права доступа к этому ресурсу"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
index b40aa9fd2e..79a5d923cf 100644
--- a/frappe/locale/sr.po
+++ b/frappe/locale/sr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-23 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'У приказу листе' није дозвољено за врст
msgid "'Recipients' not specified"
msgstr "'Примаоци' нису наведени"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' није важећи URL"
@@ -1035,7 +1035,7 @@ msgstr "Радња / Путања"
msgid "Action Complete"
msgstr "Радња завршена"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Радња неуспешна"
@@ -1674,6 +1674,14 @@ msgstr "Упозорење"
msgid "Alerts and Notifications"
msgstr "Упозорења и обавештења"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Поравнај вредности"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Измена није дозвољена"
msgid "Amendment naming rules updated."
msgstr "Правила именовања измена ажурирана."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије"
@@ -2278,7 +2285,7 @@ msgstr "Назив апликације"
msgid "App not found for module: {0}"
msgstr "Апликација није пронађена за модул: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Апликација {0} није инсталирана"
@@ -2492,10 +2499,6 @@ msgstr "Да ли сте сигурни да желите да поништит
msgid "Are you sure you want to save this document?"
msgstr "Да ли сте сигурни да желите да сачувате овај документ?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Да ли сте сигурни да желите да пошаљете овај билтен сада?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Приложено уз назив мора бити текст или број"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Прилог"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Прилог уклоњен"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "Покушава се покретање QZ Tray..."
msgid "Attribution"
msgstr "Приписивање"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Публика"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Слика позадине"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Позадински задаци"
@@ -3959,9 +3952,7 @@ msgstr "Callback наслов"
msgid "Camera"
msgstr "Камера"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Откажи све"
msgid "Cancel All Documents"
msgstr "Откажи све документе"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Откажи заказивање"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Опис категорије"
msgid "Category Name"
msgstr "Назив категорије"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Цент"
@@ -4513,10 +4500,6 @@ msgstr "Означи"
msgid "Check Request URL"
msgstr "Провери URL захтева"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Провери прекинуте линкове"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Провери колоне за означавање, превуци да поставиш редослед."
@@ -4540,10 +4523,6 @@ msgstr "Означи ово уколико желиш да натераш кор
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Означите за приказ пуне нумеричке вредности (нпр. 1.234.567 уместо 1.2М)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Проверавање прекинутих линкова..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Проверава се, тренутак"
@@ -4590,6 +4569,10 @@ msgstr "Зависна табела {0} за поље {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Зависне табеле се приказују као табеле у другим DocType-овима"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Изабери постојећу картицу или креирај нову картицу"
@@ -4679,10 +4662,6 @@ msgstr "Кликните на прилагоди да додате свој пр
msgid "Click here"
msgstr "Кликните овде"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Кликните овде да верификујете"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Кликните на фајл да га одаберете."
@@ -5024,7 +5003,7 @@ msgstr "Колоне"
msgid "Columns / Fields"
msgstr "Колоне / Поља"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Колоне засноване на"
@@ -5346,17 +5325,12 @@ msgstr "Потврди лозинку"
msgid "Confirm Request"
msgstr "Потврди захтев"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Потврдите Ваш имејл"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Шаблон имејла за потврду"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Потврђено"
@@ -5487,8 +5461,6 @@ msgstr "Садржи {0} исправки безбедности"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "Садржи {0} исправки безбедности"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "Садржај (Markdown)"
msgid "Content Hash"
msgstr "Хеш садржај"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "Није било могуће пронаћи {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Није било могуће мапирати колону {0} на поље {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Није било могуће покренути: "
@@ -5685,7 +5658,7 @@ msgstr "Бројач"
msgid "Country"
msgstr "Држава"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Шифра државе је неопходна"
@@ -5816,11 +5789,6 @@ msgstr "Креирај нови {0}"
msgid "Create a {0} Account"
msgstr "Креирај {0} налог"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Креирај и пошаљи имејлове специфичној групи претплатника периодично."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Креирај или уреди формат штампе"
@@ -6169,6 +6137,10 @@ msgstr "Прилагођени превод"
msgid "Custom field renamed to {0} successfully."
msgstr "Прилагођено поље је успешно преименовано у {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Прилагоди контролну таблу"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Прилагоди образац"
@@ -6519,7 +6491,6 @@ msgstr "Верзија базе података"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Дан"
msgid "Day of Week"
msgstr "Дан у недељи"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Кашњење"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Тема радне површине"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7918,7 +7896,7 @@ msgid "Document Types and Permissions"
msgstr "Врсте и дозволе документа"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Документ је откључан"
@@ -8536,7 +8514,6 @@ msgstr "Избор елемента"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8630,11 +8607,9 @@ msgstr "Адреса у подножју имејла"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Имејл група"
@@ -8707,18 +8682,11 @@ msgstr "Ограничење поновних покушаја за имејл"
msgid "Email Rule"
msgstr "Имејл правило"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Имејл послат"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "Имејл послат у"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8825,10 +8793,18 @@ msgstr "Имејлови ће бити послати са следећим мо
msgid "Embed code copied"
msgstr "Код за уградњу је копиран"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Празна колона"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9293,6 +9269,14 @@ msgstr "Грешка у обавештењу"
msgid "Error in print format on line {0}: {1}"
msgstr "Грешка у формату штампе на линији {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Грешка при повезивању са имејл налогом {0}"
@@ -9489,6 +9473,10 @@ msgstr "Прошири"
msgid "Expand All"
msgstr "Прошири све"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Експериментално"
@@ -10020,7 +10008,7 @@ msgstr "Назив поља '{0}' је у конфликту са {1} назив
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Назив поља је ограничен на 64 карактера ({0})"
@@ -10036,7 +10024,7 @@ msgstr "Назив поља које ће бити DocType за ово линк
msgid "Fieldname {0} appears multiple times"
msgstr "Назив поља {0} се појављује више пута"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}"
@@ -10088,6 +10076,10 @@ msgstr "Поља `file_name` или `file_url` морају бити поста
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Поља морају бити листа или тупле када је опција аслист омогућена"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10253,6 +10245,14 @@ msgstr "Филтер назива"
msgid "Filter Values"
msgstr "Филтер вредности"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Филтери..."
@@ -10496,10 +10496,6 @@ msgstr "Следећа поља имају недостајуће вреднос
msgid "Following fields have missing values:"
msgstr "Следећа поља имају недостајуће вредности:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Следећи линкови су покидани у садржају имејла: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10917,10 +10913,8 @@ msgid "Friday"
msgstr "Петак"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Од"
@@ -11001,10 +10995,14 @@ msgstr "Функција"
msgid "Function Based On"
msgstr "Функција заснована на"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Функција {0} није на листи дозвољених."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Даље чворове је могуће креирати само у оквиру чворова врсте 'Група'"
@@ -11486,6 +11484,10 @@ msgstr "Врста Груписано по"
msgid "Group By field is required to create a dashboard chart"
msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Чвор групе"
@@ -11534,7 +11536,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11548,7 +11549,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12057,6 +12057,11 @@ msgstr "Одржавање на сваких сат времена"
msgid "Hourly rate limit for generating password reset links"
msgstr "Ограничење по часу за генерисање линкова за ресетовање лозинке"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Сата"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12822,11 +12827,11 @@ msgstr "Погрешно корисничко име или лозинка"
msgid "Incorrect Verification code"
msgstr "Погрешан верификациони код"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Погрешна вредност у реду {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Погрешна вредност:"
@@ -12978,11 +12983,11 @@ msgstr "Упутства"
msgid "Instructions Emailed"
msgstr "Упутства послата имејлом"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Недовољан ниво овлашћена за {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Недовољна овлашћена за {0}"
@@ -13132,7 +13137,7 @@ msgstr "Неважећи услов: {}"
msgid "Invalid Credentials"
msgstr "Неважећи креденцијали"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Неважећи датум"
@@ -13140,7 +13145,7 @@ msgstr "Неважећи датум"
msgid "Invalid DocType"
msgstr "Неважећи DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Неважећи DocType: {0}"
@@ -13152,6 +13157,11 @@ msgstr "Неважећи назив поља"
msgid "Invalid File URL"
msgstr "Неважећи URL фајла"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Неважећи формат филтера за поље {0} врсте {1}. Покушајте да користите иконицу филтера на пољу како бисте га исправно подесили"
@@ -13216,7 +13226,7 @@ msgstr "Неважећи параметри."
msgid "Invalid Password"
msgstr "Неважећа лозинка"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Неважећи број телефона"
@@ -13260,10 +13270,38 @@ msgstr "Неважећа тајна за Webhook"
msgid "Invalid aggregate function"
msgstr "Неважећа агрегатна функција"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Неважећа колона"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Неважећи статус документа"
@@ -13276,10 +13314,26 @@ msgstr "Неважећи израз постављен у филтеру {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Неважећи израз постављен у филтеру {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Неважећи назив поља {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Неважећи назив поља '{0}' у аутоматском именовању"
@@ -13288,11 +13342,26 @@ msgstr "Неважећи назив поља '{0}' у аутоматском и
msgid "Invalid file path: {0}"
msgstr "Неважећа путања фајла: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Неважећи филтер: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13314,10 +13383,22 @@ msgstr "Неважећи или оштећен садржај за увоз"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Неважеће преусмерење регеx функције у реду #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Неважећи аргументи захтева"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Неважећи фајл шаблона за увоз"
@@ -13759,11 +13840,11 @@ msgstr "Колона Канбан табле"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Назив Канбан табле"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Канбан подешавање"
@@ -14475,6 +14556,10 @@ msgstr "Лајковања"
msgid "Limit"
msgstr "Лимит"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14738,6 +14823,7 @@ msgid "Load Balancing"
msgstr "Балансирање оптерећења"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15256,11 +15342,9 @@ msgstr "Означи као нежељено"
msgid "Mark as Unread"
msgstr "Означи као непрочитано"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15449,7 +15533,6 @@ msgstr "Спајање је могуће само између групе и г
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15462,7 +15545,6 @@ msgstr "Спајање је могуће само између групе и г
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15477,16 +15559,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Порука"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Порука (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Порука (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15610,7 +15682,7 @@ msgstr "Мета наслов за SEO"
msgid "Method"
msgstr "Метода"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Метода није дозвољена"
@@ -15660,6 +15732,11 @@ msgstr "Минимална оцена јачине лозинке"
msgid "Minor"
msgstr "Мањи"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16055,7 +16132,7 @@ msgstr "Мора бити затворен у '()' и укључивати '{0}'
msgid "Must be of type \"Attach Image\""
msgstr "Мора бити врсте \"Приложи слику\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Мора имати дозволу за извештај да би приступио овом извештају."
@@ -16245,6 +16322,10 @@ msgstr "Неопходна је улога менаџера радног про
msgid "Negative Value"
msgstr "Негативна вредност"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Грешка у угњежденом сету. Молимо Вас да контактирате администратора."
@@ -16327,7 +16408,7 @@ msgstr "Нови догађај"
msgid "New Folder"
msgstr "Нова датотека"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Нова Канбан табла"
@@ -16471,48 +16552,13 @@ msgstr "Нови {} верзије за следеће апликација су
msgid "Newly created user {0} has no roles enabled."
msgstr "Новокреирани корисник {0} нема омогућене улоге."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Билтен"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Прилог билтена"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Имејл група за билтен"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Менаџер билтена"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Билтен је већ послат"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Билтен мора бити објављен да би се послао линк за преглед у имејлу"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Билтен треба да има барем једног примаоца"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Билтени"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16774,7 +16820,7 @@ msgstr "Ниједан резултат није пронађен"
msgid "No Roles Specified"
msgstr "Улоге нису наведене"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Није пронађено поље за избор"
@@ -16802,10 +16848,6 @@ msgstr "Нема упозорења за данас"
msgid "No automatic optimization suggestions available."
msgstr "Нема доступних аутоматских предлога за оптимизацију."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Нису пронађени неисправни линкови у садржају имејла"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Нема промена у документу"
@@ -16842,7 +16884,7 @@ msgstr "Ниједан контакт није још увек додат."
msgid "No contacts linked to document"
msgstr "Ниједан контакт није повезан са документом"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Нема података за извоз"
@@ -16862,7 +16904,7 @@ msgstr "Ниједан имејл налог није повезан са кор
msgid "No failed logs"
msgstr "Нема неуспешних евиденција"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Није пронађено поље које може бити коришћено као Канбан колона. Користите прилагоди образац да бисте додали прилагођено поље врсте \"Избор\"."
@@ -16921,7 +16963,7 @@ msgstr "Број редова (максимално 500)"
msgid "No of Sent SMS"
msgstr "Број послатих SMS порука"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Не постоји дозвола за {0}"
@@ -17049,7 +17091,7 @@ msgstr "Нису потомци од"
msgid "Not Equals"
msgstr "Није једнако"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Није пронађено"
@@ -17075,7 +17117,7 @@ msgstr "Није повезани ни са једним записом"
msgid "Not Nullable"
msgstr "Не може бити празно"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17084,7 +17126,7 @@ msgstr "Не може бити празно"
msgid "Not Permitted"
msgstr "Није дозвољено"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Није дозвољено за читање {0}"
@@ -17112,7 +17154,6 @@ msgstr "Није виђено"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Није послато"
@@ -17145,7 +17186,7 @@ msgstr "Неважећи корисник"
msgid "Not active"
msgstr "Није активно"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Није дозвољено за {0}: {1}"
@@ -17579,6 +17620,10 @@ msgstr "Помак X"
msgid "Offset Y"
msgstr "Помак Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Стара лозинка"
@@ -17752,7 +17797,7 @@ msgstr "Искључиво менаџер радног простора може
msgid "Only allowed to export customizations in developer mode"
msgstr "Извоз прилагођавања је дозвољен само у развојном режиму"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Искључиво нацрти докумената могу бити одбачени"
@@ -17924,7 +17969,7 @@ msgstr "Отворено"
msgid "Operation"
msgstr "Операција"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Оператор мора бити један од следећих {0}"
@@ -18023,6 +18068,10 @@ msgstr "Наранџаста"
msgid "Order"
msgstr "Редослед"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18418,7 +18467,7 @@ msgstr "Матични означава назив документа у кој
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Груписање матично-ка-зависном или зависно-ка-матичном није дозвољено."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Матично поље није наведено у {0}: {1}"
@@ -18540,10 +18589,6 @@ msgstr "Лозинке се не подударају"
msgid "Passwords do not match!"
msgstr "Лозинке се не подударају!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Прошли датуми нису дозвољени за заказивање."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Налепи"
@@ -18689,7 +18734,7 @@ msgstr "Трајно поднети {0}?"
msgid "Permanently delete {0}?"
msgstr "Трајно обрисати {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Грешка у дозволама"
@@ -18841,7 +18886,7 @@ msgstr "Телефон"
msgid "Phone No."
msgstr "Телефон бр."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Број телефона {0} постављен у пољу {1} није валидан."
@@ -19114,10 +19159,6 @@ msgstr "Молимо Вас да уклоните мапирање штампа
msgid "Please save before attaching."
msgstr "Молимо Вас да сачувате пре него што приложите."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Молимо Вас да сачувате билтен пре слања"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Молимо Вас да сачувате документ пре додељивања"
@@ -19150,7 +19191,7 @@ msgstr "Молимо Вас да одаберете минималну оцен
msgid "Please select X and Y fields"
msgstr "Молимо Вас да изаберете X и Y поља"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Молимо Вас да изаберете шифру државе за поље {1}."
@@ -19166,7 +19207,7 @@ msgstr "Молим Вас да изаберете фајл или URL"
msgid "Please select a valid csv file with data"
msgstr "Молимо Вас да изаберете важећи цсв фајл са подацима"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Молимо Вас да изаберете важећи филтер да датум"
@@ -19244,7 +19285,7 @@ msgstr "Молимо Вас да поставите подразумевани
msgid "Please specify"
msgstr "Молимо Вас да наведете"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Молимо Вас да наведете важећи матични DocType за {0}"
@@ -19281,10 +19322,6 @@ msgstr "Молимо Вас да ажурирате {} пре него што н
msgid "Please use a valid LDAP search filter"
msgstr "Молимо Вас да користите важећи LDAP филтер за претрагу"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Молимо Вас да верификујете своју имејл адресу"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Молимо Вас да посетите https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key за више информација."
@@ -19378,6 +19415,10 @@ msgstr "Објаве корисника {0}"
msgid "Posts filed under {0}"
msgstr "Објаве у категорији {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19437,7 +19478,7 @@ msgstr "Аналитика припремљених извештаја"
msgid "Prepared Report User"
msgstr "Корисник припремљеног извештаја"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Приказ припремљеног извештаја није успео"
@@ -19466,8 +19507,6 @@ msgstr "Притисните Enter да сачувате"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19855,7 +19894,7 @@ msgstr "Профил"
msgid "Progress"
msgstr "Напредак"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Пројекат"
@@ -19950,14 +19989,7 @@ msgstr "Јавни фајлови (МБ)"
msgid "Publish"
msgstr "Објави"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Објави као веб-страницу"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19965,7 +19997,6 @@ msgstr "Објави као веб-страницу"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20140,7 +20171,7 @@ msgstr "Извештај по упиту"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Анализа упита завршена. Погледајте предложене индексе."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Упит мора бити врсте SELECT или read-only WITH type."
@@ -20186,7 +20217,6 @@ msgstr "Ред(ови)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "У реду"
@@ -20209,19 +20239,11 @@ msgstr "У реду за подношење. Можете пратити нап
msgid "Queued for backup. You will receive an email with the download link"
msgstr "У реду за резервну копију. Добићете имејл са линком за преузимање"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} имејлова у реду"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Редови"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "Имејлови се стављају у ред..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "{0} се ставља у ред за подношење"
@@ -20422,7 +20444,7 @@ msgstr "Прочитао прималац на"
msgid "Read mode"
msgstr "Режим читања"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Прочитајте документацију за више информација"
@@ -21289,7 +21311,7 @@ msgstr "Достигнуто је ограничење извештаја"
msgid "Report timed out."
msgstr "Извештај је истекао."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Извештај је успешно ажуриран"
@@ -21310,7 +21332,7 @@ msgstr "Извештај {0}"
msgid "Report {0} deleted"
msgstr "Извештај {0} је обрисан"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Извештај {0} је онемогућен"
@@ -21643,10 +21665,8 @@ msgstr "Опозови"
msgid "Revoked"
msgstr "Опозвано"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21857,7 +21877,6 @@ msgstr "Метод заокруживања"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21871,7 +21890,6 @@ msgstr "Метод заокруживања"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21989,7 +22007,7 @@ msgstr "Правило"
msgid "Rule Conditions"
msgstr "Услови правила"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Правило за ову врсту доцтyпе, улога, ниво дозволе и уколико власник већ постоји."
@@ -22178,11 +22196,11 @@ msgstr "Субота"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22274,32 +22292,17 @@ msgstr "Скенирај QR код и унеси приказани код."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Распоред"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Заказати слање билтена"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Заказати слање у"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Заказати слање"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Заказати слање за касније"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Заказано"
@@ -22333,17 +22336,6 @@ msgstr "Врста заказаног задатка"
msgid "Scheduled Jobs Logs"
msgstr "Евиденције заказаних задатака"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Заказано слање"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Заказано за слање"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Заказано извршавање за скрипту {0} је ажурирано"
@@ -22555,6 +22547,11 @@ msgstr "Претрага..."
msgid "Searching ..."
msgstr "Претраживање ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22944,9 +22941,7 @@ msgstr "Изаберите {0}"
msgid "Self approval is not allowed"
msgstr "Самопотврда није дозвољена"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Пошаљи"
@@ -22977,11 +22972,6 @@ msgstr "Пошаљи обавештење на"
msgid "Send Email Alert"
msgstr "Пошаљи имејл упозорење"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Пошаљи имејл у"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23039,38 +23029,16 @@ msgstr "Пошаљи потврду о читању"
msgid "Send System Notification"
msgstr "Пошаљи системско обавештење"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Пошаљи тестни имејл"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Пошаљи свим задуженима"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Пошаљи линк за отказивање претплате"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Пошаљи линк за приказ на вебу"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Пошаљи имејл добродошлице"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Пошаљи тестни имејл"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Пошаљи поново"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23118,10 +23086,6 @@ msgstr "Пошаљи линк за пријаву"
msgid "Send me a copy"
msgstr "Пошаљи ми копију"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Пошаљи сада"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23137,19 +23101,15 @@ msgstr "Пошаљи поруку за отказивање претплате
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Пошиљалац"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Имејл пошиљаоца"
@@ -23166,9 +23126,7 @@ msgid "Sender Field should have Email in options"
msgstr "Поље пошиљаоца треба да има имејл међу опцијама"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Назив пошиљаоца"
@@ -23188,18 +23146,9 @@ msgstr "Сендгрид"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Слање"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Слање имејлова"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Слање у току..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23207,8 +23156,6 @@ msgstr "Слање у току..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Послато"
@@ -23278,7 +23225,7 @@ msgstr "Серија {0} је већ искоришћена у {1}"
msgid "Server Action"
msgstr "Серверска радња"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Серверска грешка"
@@ -23297,7 +23244,7 @@ msgstr "ИП адреса сервера"
msgid "Server Script"
msgstr "Серверска скрипта"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Серверска скрипта је онемогућена. Молимо Вас да је омогућите у конфигурацији командне линије."
@@ -23336,15 +23283,15 @@ msgstr "Подешавање подразумеване сесије"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Подразумеване вредности сесије"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Подразумеване вредности сесије су сачуване"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Сесија је истекла"
@@ -23598,7 +23545,7 @@ msgstr "Постављање система"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24681,7 +24628,6 @@ msgstr "Временски интервал статистике"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24706,7 +24652,6 @@ msgstr "Временски интервал статистике"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24847,8 +24792,6 @@ msgstr "Поддомен"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24857,7 +24800,6 @@ msgstr "Поддомен"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25228,7 +25170,7 @@ msgstr "Синхронизовање"
msgid "Syncing {0} of {1}"
msgstr "Синхронизовање {0} од {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Грешка у синтакси"
@@ -25535,7 +25477,7 @@ msgstr "Скраћена табела"
msgid "Table updated"
msgstr "Табела ажурирана"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Табела {0} не може бити празна"
@@ -25662,10 +25604,6 @@ msgstr "ИД тестног задатка"
msgid "Test Spanish"
msgstr "Тестирај шпански"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Тестни имејл послат на {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "ТестДатотека"
@@ -25733,10 +25671,6 @@ msgstr "Хвала Вам на имејлу"
msgid "Thank you for your feedback!"
msgstr "Хвала Вам на повратним информацијама!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Хвала Вам на интересовању за пријаву на наша обавештења"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Хвала Вам на поруци"
@@ -25931,7 +25865,7 @@ msgstr "Линк за ресетовање лозинке је истекао"
msgid "The reset password link has either been used before or is invalid"
msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Ресурс који тражите није доступан"
@@ -25943,7 +25877,7 @@ msgstr "Улога {0} треба да буде прилагођена улог
msgid "The selected document {0} is not a {1}."
msgstr "Изабрани документ {0} није {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Систем се ажурира. Молимо Вас да освежите страницу за неколико тренутака."
@@ -26096,7 +26030,7 @@ msgstr "Аутентификација путем екстерних аплик
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ова валута је онемогућена. Омогућите је да бисте је користили у трансакцијама"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ова Канбан табла ће бити приватна"
@@ -26120,7 +26054,7 @@ msgstr "Ове године"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ова радња је неповратна. Да ли желите да наставите?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Ова радња је дозвољена само за {}"
@@ -26284,14 +26218,6 @@ msgstr "Ово може бити одштампано на више страни
msgid "This month"
msgstr "Овај месец"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Овај билтен је заказан за слање на {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Овај билтен је заказан за слање за каснији датум. Да ли сте сигурни да желите да га пошаљете сада?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}."
@@ -26404,7 +26330,6 @@ msgstr "Четвртак"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Време"
@@ -26630,10 +26555,8 @@ msgid "Title of the page"
msgstr "Наслов странице"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "За"
@@ -26916,7 +26839,7 @@ msgstr "Горе десно"
msgid "Topic"
msgstr "Тема"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26944,16 +26867,8 @@ msgstr "Укупно слика"
msgid "Total Outgoing Emails"
msgstr "Укупно излазних имејлова"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Укупно примаоца"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Укупно претплатника"
@@ -26962,11 +26877,6 @@ msgstr "Укупно претплатника"
msgid "Total Users"
msgstr "Укупно корисника"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Укупно прегледа"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27366,23 +27276,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL ка којем води клик на презентацију слика"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM кампања"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM медијум"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM извор"
@@ -27432,7 +27336,7 @@ msgstr "Није могуће уписати формат фајла за {0}"
msgid "Unassign Condition"
msgstr "Уклони додељивање услова"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Неухваћени изузетак"
@@ -27448,6 +27352,10 @@ msgstr "Поништи"
msgid "Undo last action"
msgstr "Поништи последњу радњу"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27480,7 +27388,7 @@ msgstr "Непознат"
msgid "Unknown Column: {0}"
msgstr "Непозната колона: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Непознат метод заокруживања: {}"
@@ -27513,7 +27421,7 @@ msgstr "Непрочитано"
msgid "Unread Notification Sent"
msgstr "Послата обавештења о непрочитаним"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Несигуран SQL упит"
@@ -27527,7 +27435,7 @@ msgstr "Поништи одабир свега"
msgid "Unshared"
msgstr "Није подељено"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Отказивање претплате"
@@ -27551,6 +27459,11 @@ msgstr "Параметри отказивања претплате"
msgid "Unsubscribed"
msgstr "Отказана претплата"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Колона без назива"
@@ -27673,7 +27586,7 @@ msgstr "Ажурирано на нову верзију 🎉"
msgid "Updated successfully"
msgstr "Успешно ажурирано"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Ажурирање"
@@ -28408,7 +28321,7 @@ msgstr "Вредност је превелика"
msgid "Value {0} missing for {1}"
msgstr "Вредност {0} недостаје за {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Вредност {0} мора бити у важећем формату трајања: д х м с"
@@ -28833,7 +28746,6 @@ msgstr "URL Webhook-а"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28841,9 +28753,7 @@ msgid "Website"
msgstr "Веб-сајт"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Аналитика веб-сајта"
@@ -29279,7 +29189,7 @@ msgstr "Радни ток је успешно ажуриран"
msgid "Workspace"
msgstr "Радни простор"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Радни простор {0} не постоји"
@@ -29502,11 +29412,11 @@ msgstr "Пријављени сте као други корисник."
msgid "You are not allowed to access this resource"
msgstr "Немате дозволу да приступите овом ресурсу"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Немате дозволу да приступите овом запису {0} јер је повезан са {1} '{2}' у пољу {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Немате дозволу да приступите овом запису {0} јер је повезан са {1} '{2}' у реду {3}, поље {4}"
@@ -29529,7 +29439,7 @@ msgstr "Немате дозволу да уређујете извештај."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Немате дозволу да извезете DocType {}"
@@ -29557,7 +29467,7 @@ msgstr "Није Вам дозвољено да приступите овој с
msgid "You are not permitted to access this page."
msgstr "Немате дозволу да приступите овој страници."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Немате дозволу за приступ овом ресурсу. Пријавите се за приступ"
@@ -29652,7 +29562,7 @@ msgstr "Можете изабрати једну од следећих,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Можете поставити вишу вредност овде уколико се више корисника пријављује са исте мреже."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Можете покушати да промените филтере Вашег извештаја."
@@ -29729,11 +29639,15 @@ msgstr "Немате дозволу за читање или избор за {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Немате довољно дозвола да довршите ову радњу"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Немате дозволу за приступ {0}: {1}."
@@ -29741,7 +29655,7 @@ msgstr "Немате дозволу за приступ {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Немате дозволу да откажете све повезане документе."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Немате приступ извештају: {0}"
@@ -29749,11 +29663,11 @@ msgstr "Немате приступ извештају: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Немате дозволе за приступ DocType-у {0}."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Немате дозволу за приступ овом фајлу"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Немате дозволу да добијате извештај за: {0}"
@@ -29846,7 +29760,7 @@ msgstr "Морате бити системски корисник да бист
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Морате бити у развојном режиму да бисте уредили стандардни веб-образац"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Морате бити пријављени и имати улогу систем менаџера да бисте приступили резервним копијама."
@@ -30012,7 +29926,7 @@ msgstr "Назив и адреса Ваше организације за под
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ваш упит је примљен. Одговорићемо Вам ускоро, уколико имате додатне информације молимо Вас да одговорите на ову поруку."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили."
@@ -30024,7 +29938,7 @@ msgstr "Ваш сајт је тренутно на одржавању или с
msgid "Your verification code is {0}"
msgstr "Ваш верификациони код је {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Нула"
@@ -30071,7 +29985,7 @@ msgstr "афтеринсерт"
msgid "amend"
msgstr "измени"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "и"
@@ -30128,7 +30042,7 @@ msgstr "креирај"
msgid "cyan"
msgstr "цијан"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30243,7 +30157,7 @@ msgstr "имејл"
msgid "email inbox"
msgstr "пријемна пошта имејла"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "празно"
@@ -30295,7 +30209,7 @@ msgstr "сива"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip није пронађен у PATH! Ово је неопходно за прављење резервне копије."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30329,7 +30243,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "управо сада"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "ознака"
@@ -30369,7 +30283,7 @@ msgstr "login_required"
msgid "long"
msgstr "дуго"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30559,7 +30473,7 @@ msgstr "одговор"
msgid "restored {0} as {1}"
msgstr "враћено {0} као {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30894,7 +30808,7 @@ msgstr "{0} је већ отказао претплату"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} је већ отказао претплату за {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} и {1}"
@@ -31000,6 +30914,10 @@ msgstr "{0} не постоји у реду {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} поље не може бити постављено као јединствено у {1}, јер постоје нејединствене постојеће вредности"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} формат није могао бити одређен из вредности у овој колони. Подразумевано на {1}."
@@ -31020,10 +30938,6 @@ msgstr "{0} х"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} је већ доделио подразумевану вредност за {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} је успешно додат у Имејл групу."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} је напустио разговор у {1} {2}"
@@ -31094,6 +31008,10 @@ msgstr "{0} је као {1}"
msgid "{0} is mandatory"
msgstr "{0} је обавезно"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} није поље за доцтyпе {1}"
@@ -31115,7 +31033,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} није важећи DocType или динамички линк"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} није важећа имејл адреса"
@@ -31123,11 +31041,11 @@ msgstr "{0} није важећа имејл адреса"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} није важећа ISO 3166 ALPHA-2 шифра."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} није важећи назив"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} није важећи број телефона"
@@ -31135,11 +31053,11 @@ msgstr "{0} није важећи број телефона"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} није важеће стање радног тока. Молимо Вас да ажурирате свој радни ток и покушате поново."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} није важећи матични DocType за {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} није важеће матично поље за {1}"
@@ -31227,23 +31145,23 @@ msgstr "пре {0} минута"
msgid "{0} months ago"
msgstr "пре {0} месеци"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} мора бити након {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} мора почињати са '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} мора бити једнако '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} не сме бити ниједно од {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} мора бити један од {1}"
@@ -31255,7 +31173,7 @@ msgstr "{0} мора прво бити постављено"
msgid "{0} must be unique"
msgstr "{0} мора бити јединствено"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} мора бити {1} {2}"
@@ -31284,16 +31202,12 @@ msgstr "{0} од {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} од {1} ({2} редова са зависним подацима)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} од {1} послато"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "само {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} или {1}"
@@ -31330,11 +31244,11 @@ msgstr "{0} је уклонио свој задатак."
msgid "{0} role does not have permission on any doctype"
msgstr "Улога {0} нема дозволе ни за једну врсту документа"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} ред#{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} је успешно сачувано"
@@ -31446,7 +31360,7 @@ msgstr "{0} {1} не постоји, изаберите ново тачку за
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} је повезан са следећим поднетим документима: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} није пронађен"
@@ -31599,11 +31513,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т
msgid "{} Complete"
msgstr "{} завршено"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Неважећи пyтхон код на линији {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Потенцијално неважећи пyтхон код.
{}"
@@ -31625,7 +31539,7 @@ msgstr "{} поље не може бити празно."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} је онемогућено. Може се омогућити само уколико је {} означено."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} није исправан датум у текстуалном формату."
diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po
index 93d0b0a5e5..707b7f77bd 100644
--- a/frappe/locale/sr_CS.po
+++ b/frappe/locale/sr_CS.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-23 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primaoci' nisu navedeni"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -1035,7 +1035,7 @@ msgstr "Radnja / Putanja"
msgid "Action Complete"
msgstr "Radnja završena"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Radnja neuspešna"
@@ -1674,6 +1674,14 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr "Upozorenja i obaveštenja"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Poravnaj vrednosti"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Izmena nije dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila imenovanja izmena ažurirana."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja podrazumevanih podešavanja sesije"
@@ -2278,7 +2285,7 @@ msgstr "Naziv aplikacije"
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2492,10 +2499,6 @@ msgstr "Da li ste sigurni da želite da poništite sva prilagođavanja?"
msgid "Are you sure you want to save this document?"
msgstr "Da li ste sigurni da želite da sačuvate ovaj dokument?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Da li ste sigurni da želite da pošaljete ovaj bilten sada?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Priloženo uz naziv mora biti tekst ili broj"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Prilog"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Prilog uklonjen"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "Pokušava se pokretanje QZ Tray..."
msgid "Attribution"
msgstr "Pripisivanje"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Publika"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Slika pozadine"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Pozadinski zadaci"
@@ -3959,9 +3952,7 @@ msgstr "Callback naslov"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Otkaži sve"
msgid "Cancel All Documents"
msgstr "Otkaži sve dokumente"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Otkaži zakazivanje"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Opis kategorije"
msgid "Category Name"
msgstr "Naziv kategorije"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4513,10 +4500,6 @@ msgstr "Označi"
msgid "Check Request URL"
msgstr "Proveri URL zahteva"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Proveri prekinute linkove"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Proveri kolone za označavanje, prevuci da postaviš redosled."
@@ -4540,10 +4523,6 @@ msgstr "Označi ovo ukoliko želiš da nateraš korisnika da odabere seriju pre
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Označite za prikaz pune numeričke vrednosti (npr. 1.234.567 umesto 1.2M)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Proveravanje prekinutih linkova..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Proverava se, trenutak"
@@ -4590,6 +4569,10 @@ msgstr "Zavisna tabela {0} za polje {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Zavisne tabele se prikazuju kao tabele u drugim DocType-ovima"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Izaberi postojeću karticu ili kreiraj novu karticu"
@@ -4679,10 +4662,6 @@ msgstr "Kliknite na prilagodi da dodate svoj prvi vidžet"
msgid "Click here"
msgstr "Kliknite ovde"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Kliknite ovde da verifikujete"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Kliknite na fajl da ga odaberete."
@@ -5024,7 +5003,7 @@ msgstr "Kolone"
msgid "Columns / Fields"
msgstr "Kolone / Polja"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Kolone zasnovane na"
@@ -5346,17 +5325,12 @@ msgstr "Potvrdi lozinku"
msgid "Confirm Request"
msgstr "Potvrdi zahtev"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Potvrdite Vaš imejl"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Šablon imejla za potvrdu"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Potvrđeno"
@@ -5487,8 +5461,6 @@ msgstr "Sadrži {0} ispravki bezbednosti"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "Sadrži {0} ispravki bezbednosti"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "Sadržaj (Markdown)"
msgid "Content Hash"
msgstr "Heš sadržaj"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "Nije bilo moguće pronaći {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nije bilo moguće mapirati kolonu {0} na polje {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Nije bilo moguće pokrenuti: "
@@ -5685,7 +5658,7 @@ msgstr "Brojač"
msgid "Country"
msgstr "Država"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Šifra države je neophodna"
@@ -5816,11 +5789,6 @@ msgstr "Kreiraj novi {0}"
msgid "Create a {0} Account"
msgstr "Kreiraj {0} nalog"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Kreiraj i pošalji imejlove specifičnoj grupi pretplatnika periodično."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Kreiraj ili uredi format štampe"
@@ -6169,6 +6137,10 @@ msgstr "Prilagođeni prevod"
msgid "Custom field renamed to {0} successfully."
msgstr "Prilagođeno polje je uspešno preimenovano u {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Prilagodi kontrolnu tablu"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Prilagodi obrazac"
@@ -6519,7 +6491,6 @@ msgstr "Verzija baze podataka"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Dan"
msgid "Day of Week"
msgstr "Dan u nedelji"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dani"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Kašnjenje"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Tema radne površine"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7918,7 +7896,7 @@ msgid "Document Types and Permissions"
msgstr "Vrste i dozvole dokumenta"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument je otključan"
@@ -8536,7 +8514,6 @@ msgstr "Izbor elementa"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8630,11 +8607,9 @@ msgstr "Adresa u podnožju imejla"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Imejl grupa"
@@ -8707,18 +8682,11 @@ msgstr "Ograničenje ponovnih pokušaja za imejl"
msgid "Email Rule"
msgstr "Imejl pravilo"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Imejl poslat"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "Imejl poslat u"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8825,10 +8793,18 @@ msgstr "Imejlovi će biti poslati sa sledećim mogućim radnjama u radnom toku"
msgid "Embed code copied"
msgstr "Kod za ugradnju je kopiran"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Prazna kolona"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9293,6 +9269,14 @@ msgstr "Greška u obaveštenju"
msgid "Error in print format on line {0}: {1}"
msgstr "Greška u formatu štampe na liniji {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Greška pri povezivanju sa imejl nalogom {0}"
@@ -9489,6 +9473,10 @@ msgstr "Proširi"
msgid "Expand All"
msgstr "Proširi sve"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Eksperimentalno"
@@ -10020,7 +10008,7 @@ msgstr "Naziv polja '{0}' je u konfliktu sa {1} nazivom {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Naziv polja je ograničen na 64 karaktera ({0})"
@@ -10036,7 +10024,7 @@ msgstr "Naziv polja koje će biti DocType za ovo link polje."
msgid "Fieldname {0} appears multiple times"
msgstr "Naziv polja {0} se pojavljuje više puta"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Naziv polja {0} ne može sadržati specijalne karaktere poput {1}"
@@ -10088,6 +10076,10 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je opcija as_list omogućena"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10253,6 +10245,14 @@ msgstr "Filter naziva"
msgid "Filter Values"
msgstr "Filter vrednosti"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filteri..."
@@ -10496,10 +10496,6 @@ msgstr "Sledeća polja imaju nedostajuće vrednosti"
msgid "Following fields have missing values:"
msgstr "Sledeća polja imaju nedostajuće vrednosti:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Sledeći linkovi su pokidani u sadržaju imejla: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10917,10 +10913,8 @@ msgid "Friday"
msgstr "Petak"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Od"
@@ -11001,10 +10995,14 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na listi dozvoljenih."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Dalje čvorove je moguće kreirati samo u okviru čvorova vrste 'Grupa'"
@@ -11486,6 +11484,10 @@ msgstr "Vrsta Grupisano po"
msgid "Group By field is required to create a dashboard chart"
msgstr "Polje Grupisano po je neophodno za kreiranje grafikona na kontrolnoj tabli"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Čvor grupe"
@@ -11534,7 +11536,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11548,7 +11549,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12057,6 +12057,11 @@ msgstr "Održavanje na svakih sat vremena"
msgid "Hourly rate limit for generating password reset links"
msgstr "Ograničenje po času za generisanje linkova za resetovanje lozinke"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Časovi"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12822,11 +12827,11 @@ msgstr "Pogrešno korisničko ime ili lozinka"
msgid "Incorrect Verification code"
msgstr "Pogrešan verifikacioni kod"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Pogrešna vrednost u redu {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Pogrešna vrednost:"
@@ -12978,11 +12983,11 @@ msgstr "Uputstva"
msgid "Instructions Emailed"
msgstr "Uputstva poslata imejlom"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan nivo ovlašćena za {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljna ovlašćena za {0}"
@@ -13132,7 +13137,7 @@ msgstr "Nevažeći uslov: {}"
msgid "Invalid Credentials"
msgstr "Nevažeći kredencijali"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Nevažeći datum"
@@ -13140,7 +13145,7 @@ msgstr "Nevažeći datum"
msgid "Invalid DocType"
msgstr "Nevažeći DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Nevažeći DocType: {0}"
@@ -13152,6 +13157,11 @@ msgstr "Nevažeći naziv polja"
msgid "Invalid File URL"
msgstr "Nevažeći URL fajla"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Nevažeći format filtera za polje {0} vrste {1}. Pokušajte da koristite ikonicu filtera na polju kako biste ga ispravno podesili"
@@ -13216,7 +13226,7 @@ msgstr "Nevažeći parametri."
msgid "Invalid Password"
msgstr "Nevažeća lozinka"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Nevažeći broj telefona"
@@ -13260,10 +13270,38 @@ msgstr "Nevažeća tajna za Webhook"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Nevažeća kolona"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13276,10 +13314,26 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju"
@@ -13288,11 +13342,26 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju"
msgid "Invalid file path: {0}"
msgstr "Nevažeća putanja fajla: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13314,10 +13383,22 @@ msgstr "Nevažeći ili oštećen sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahteva"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Nevažeći fajl šablona za uvoz"
@@ -13759,11 +13840,11 @@ msgstr "Kolona Kanban table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Naziv Kanban table"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban podešavanje"
@@ -14475,6 +14556,10 @@ msgstr "Lajkovanja"
msgid "Limit"
msgstr "Limit"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14738,6 +14823,7 @@ msgid "Load Balancing"
msgstr "Balansiranje opterećenja"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15256,11 +15342,9 @@ msgstr "Označi kao neželjeno"
msgid "Mark as Unread"
msgstr "Označi kao nepročitano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15449,7 +15533,6 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15462,7 +15545,6 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15477,16 +15559,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Poruka"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Poruka (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Poruka (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15610,7 +15682,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Metoda nije dozvoljena"
@@ -15660,6 +15732,11 @@ msgstr "Minimalna ocena jačine lozinke"
msgid "Minor"
msgstr "Manji"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minute"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16055,7 +16132,7 @@ msgstr "Mora biti zatvoren u '()' i uključivati '{0}', koji je rezervisani teks
msgid "Must be of type \"Attach Image\""
msgstr "Mora biti vrste \"Priloži sliku\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Mora imati dozvolu za izveštaj da bi pristupio ovom izveštaju."
@@ -16245,6 +16322,10 @@ msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privat
msgid "Negative Value"
msgstr "Negativna vrednost"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Greška u ugnježdenom setu. Molimo Vas da kontaktirate administratora."
@@ -16327,7 +16408,7 @@ msgstr "Novi događaj"
msgid "New Folder"
msgstr "Nova datoteka"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nova Kanban tabla"
@@ -16471,48 +16552,13 @@ msgstr "Novi {} verzije za sledeće aplikacija su dostupne"
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Bilten"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Prilog biltena"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Imejl grupa za bilten"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Menadžer biltena"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Bilten je već poslat"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Bilten mora biti objavljen da bi se poslao link za pregled u imejlu"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Bilten treba da ima barem jednog primaoca"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Bilteni"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16774,7 +16820,7 @@ msgstr "Nijedan rezultat nije pronađen"
msgid "No Roles Specified"
msgstr "Uloge nisu navedene"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Nije pronađeno polje za izbor"
@@ -16802,10 +16848,6 @@ msgstr "Nema upozorenja za danas"
msgid "No automatic optimization suggestions available."
msgstr "Nema dostupnih automatskih predloga za optimizaciju."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Nisu pronađeni neispravni linkovi u sadržaju imejla"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Nema promena u dokumentu"
@@ -16842,7 +16884,7 @@ msgstr "Nijedan kontakt nije još uvek dodat."
msgid "No contacts linked to document"
msgstr "Nijedan kontakt nije povezan sa dokumentom"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Nema podataka za izvoz"
@@ -16862,7 +16904,7 @@ msgstr "Nijedan imejl nalog nije povezan sa korisnikom. Molimo Vas da dodate nal
msgid "No failed logs"
msgstr "Nema neuspešnih evidencija"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nije pronađeno polje koje može biti korišćeno kao Kanban kolona. Koristite prilagodi obrazac da biste dodali prilagođeno polje vrste \"Izbor\"."
@@ -16921,7 +16963,7 @@ msgstr "Broj redova (maksimalno 500)"
msgid "No of Sent SMS"
msgstr "Broj poslatih SMS poruka"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Ne postoji dozvola za {0}"
@@ -17049,7 +17091,7 @@ msgstr "Nisu potomci od"
msgid "Not Equals"
msgstr "Nije jednako"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije pronađeno"
@@ -17075,7 +17117,7 @@ msgstr "Nije povezani ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Ne može biti prazno"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17084,7 +17126,7 @@ msgstr "Ne može biti prazno"
msgid "Not Permitted"
msgstr "Nije dozvoljeno"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Nije dozvoljeno za čitanje {0}"
@@ -17112,7 +17154,6 @@ msgstr "Nije viđeno"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Nije poslato"
@@ -17145,7 +17186,7 @@ msgstr "Nevažeći korisnik"
msgid "Not active"
msgstr "Nije aktivno"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
@@ -17579,6 +17620,10 @@ msgstr "Pomak X"
msgid "Offset Y"
msgstr "Pomak Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Stara lozinka"
@@ -17752,7 +17797,7 @@ msgstr "Isključivo menadžer radnog prostora može da uređuje javne radne pros
msgid "Only allowed to export customizations in developer mode"
msgstr "Izvoz prilagođavanja je dozvoljen samo u razvojnom režimu"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Isključivo nacrti dokumenata mogu biti odbačeni"
@@ -17924,7 +17969,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od sledećih {0}"
@@ -18023,6 +18068,10 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Redosled"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18418,7 +18467,7 @@ msgstr "Matični označava naziv dokumenta u koji će se podaci dodati."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Grupisanje matično-ka-zavisnom ili zavisno-ka-matičnom nije dozvoljeno."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Matično polje nije navedeno u {0}: {1}"
@@ -18540,10 +18589,6 @@ msgstr "Lozinke se ne podudaraju"
msgid "Passwords do not match!"
msgstr "Lozinke se ne podudaraju!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Prošli datumi nisu dozvoljeni za zakazivanje."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Nalepi"
@@ -18689,7 +18734,7 @@ msgstr "Trajno podneti {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno obrisati {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Greška u dozvolama"
@@ -18841,7 +18886,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon br."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Broj telefona {0} postavljen u polju {1} nije validan."
@@ -19114,10 +19159,6 @@ msgstr "Molimo Vas da uklonite mapiranje štampača u podešavanjima štampe i p
msgid "Please save before attaching."
msgstr "Molimo Vas da sačuvate pre nego što priložite."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Molimo Vas da sačuvate bilten pre slanja"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Molimo Vas da sačuvate dokument pre dodeljivanja"
@@ -19150,7 +19191,7 @@ msgstr "Molimo Vas da odaberete minimalnu ocenu jačine lozinke"
msgid "Please select X and Y fields"
msgstr "Molimo Vas da izaberete X i Y polja"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Molimo Vas da izaberete šifru države za polje {1}."
@@ -19166,7 +19207,7 @@ msgstr "Molim Vas da izaberete fajl ili URL"
msgid "Please select a valid csv file with data"
msgstr "Molimo Vas da izaberete važeći csv fajl sa podacima"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Molimo Vas da izaberete važeći filter da datum"
@@ -19244,7 +19285,7 @@ msgstr "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Alati > Ime
msgid "Please specify"
msgstr "Molimo Vas da navedete"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Molimo Vas da navedete važeći matični DocType za {0}"
@@ -19281,10 +19322,6 @@ msgstr "Molimo Vas da ažurirate {} pre nego što nastavite."
msgid "Please use a valid LDAP search filter"
msgstr "Molimo Vas da koristite važeći LDAP filter za pretragu"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Molimo Vas da verifikujete svoju imejl adresu"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Molimo Vas da posetite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key za više informacija."
@@ -19378,6 +19415,10 @@ msgstr "Objave korisnika {0}"
msgid "Posts filed under {0}"
msgstr "Objave u kategoriji {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19437,7 +19478,7 @@ msgstr "Analitika pripremljenih izveštaja"
msgid "Prepared Report User"
msgstr "Korisnik pripremljenog izveštaja"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Prikaz pripremljenog izveštaja nije uspeo"
@@ -19466,8 +19507,6 @@ msgstr "Pritisnite Enter da sačuvate"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19855,7 +19894,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Napredak"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekat"
@@ -19950,14 +19989,7 @@ msgstr "Javni fajlovi (MB)"
msgid "Publish"
msgstr "Objavi"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Objavi kao veb-stranicu"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19965,7 +19997,6 @@ msgstr "Objavi kao veb-stranicu"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20140,7 +20171,7 @@ msgstr "Izveštaj po upitu"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analiza upita završena. Pogledajte predložene indekse."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Upit mora biti vrste SELECT ili read-only."
@@ -20186,7 +20217,6 @@ msgstr "Red(ovi)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "U redu"
@@ -20209,19 +20239,11 @@ msgstr "U redu za podnošenje. Možete pratiti napredak preko {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "U redu za rezervnu kopiju. Dobićete imejl sa linkom za preuzimanje"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} imejlova u redu"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Redovi"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "Imejlovi se stavljaju u red..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "{0} se stavlja u red za podnošenje"
@@ -20422,7 +20444,7 @@ msgstr "Pročitao primalac na"
msgid "Read mode"
msgstr "Režim čitanja"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Pročitajte dokumentaciju za više informacija"
@@ -21289,7 +21311,7 @@ msgstr "Dostignuto je ograničenje izveštaja"
msgid "Report timed out."
msgstr "Izveštaj je istekao."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Izveštaj je uspešno ažuriran"
@@ -21310,7 +21332,7 @@ msgstr "Izveštaj {0}"
msgid "Report {0} deleted"
msgstr "Izveštaj {0} je obrisan"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Izveštaj {0} je onemogućen"
@@ -21643,10 +21665,8 @@ msgstr "Opozovi"
msgid "Revoked"
msgstr "Opozvano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21857,7 +21877,6 @@ msgstr "Metod zaokruživanja"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21871,7 +21890,6 @@ msgstr "Metod zaokruživanja"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21989,7 +22007,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi pravila"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Pravilo za ovu vrstu doctype, uloga, nivo dozvole i ukoliko vlasnik već postoji."
@@ -22178,11 +22196,11 @@ msgstr "Subota"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22274,32 +22292,17 @@ msgstr "Skeniraj QR kod i unesi prikazani kod."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Raspored"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Zakazati slanje biltena"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Zakazati slanje u"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Zakazati slanje"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Zakazati slanje za kasnije"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Zakazano"
@@ -22333,17 +22336,6 @@ msgstr "Vrsta zakazanog zadatka"
msgid "Scheduled Jobs Logs"
msgstr "Evidencije zakazanih zadataka"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Zakazano slanje"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Zakazano za slanje"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Zakazano izvršavanje za skriptu {0} je ažurirano"
@@ -22555,6 +22547,11 @@ msgstr "Pretraga..."
msgid "Searching ..."
msgstr "Pretraživanje ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22944,9 +22941,7 @@ msgstr "Izaberite {0}"
msgid "Self approval is not allowed"
msgstr "Samopotvrda nije dozvoljena"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Pošalji"
@@ -22977,11 +22972,6 @@ msgstr "Pošalji obaveštenje na"
msgid "Send Email Alert"
msgstr "Pošalji imejl upozorenje"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Pošalji imejl u"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23039,38 +23029,16 @@ msgstr "Pošalji potvrdu o čitanju"
msgid "Send System Notification"
msgstr "Pošalji sistemsko obaveštenje"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Pošalji testni imejl"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Pošalji svim zaduženima"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Pošalji link za otkazivanje pretplate"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Pošalji link za prikaz na vebu"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Pošalji imejl dobrodošlice"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Pošalji testni imejl"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Pošalji ponovo"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23118,10 +23086,6 @@ msgstr "Pošalji link za prijavu"
msgid "Send me a copy"
msgstr "Pošalji mi kopiju"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Pošalji sada"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23137,19 +23101,15 @@ msgstr "Pošalji poruku za otkazivanje pretplate u imejlu"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Pošiljalac"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Imejl pošiljaoca"
@@ -23166,9 +23126,7 @@ msgid "Sender Field should have Email in options"
msgstr "Polje pošiljaoca treba da ima imejl među opcijama"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Naziv pošiljaoca"
@@ -23188,18 +23146,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Slanje"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Slanje imejlova"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Slanje u toku..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23207,8 +23156,6 @@ msgstr "Slanje u toku..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Poslato"
@@ -23278,7 +23225,7 @@ msgstr "Serija {0} je već iskorišćena u {1}"
msgid "Server Action"
msgstr "Serverska radnja"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverska greška"
@@ -23297,7 +23244,7 @@ msgstr "IP adresa servera"
msgid "Server Script"
msgstr "Serverska skripta"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Serverska skripta je onemogućena. Molimo Vas da je omogućite u konfiguraciji komandne linije."
@@ -23336,15 +23283,15 @@ msgstr "Podešavanje podrazumevane sesije"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Podrazumevane vrednosti sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Podrazumevane vrednosti sesije su sačuvane"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sesija je istekla"
@@ -23598,7 +23545,7 @@ msgstr "Postavljanje sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24681,7 +24628,6 @@ msgstr "Vremenski interval statistike"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24706,7 +24652,6 @@ msgstr "Vremenski interval statistike"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24847,8 +24792,6 @@ msgstr "Poddomen"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24857,7 +24800,6 @@ msgstr "Poddomen"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25228,7 +25170,7 @@ msgstr "Sinhronizovanje"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizovanje {0} od {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Greška u sintaksi"
@@ -25535,7 +25477,7 @@ msgstr "Skraćena tabela"
msgid "Table updated"
msgstr "Tabela ažurirana"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25662,10 +25604,6 @@ msgstr "ID testnog zadatka"
msgid "Test Spanish"
msgstr "Testiraj španski"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Testni imejl poslat na {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Datoteka"
@@ -25733,10 +25671,6 @@ msgstr "Hvala Vam na imejlu"
msgid "Thank you for your feedback!"
msgstr "Hvala Vam na povratnim informacijama!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Hvala Vam na interesovanju za prijavu na naša obaveštenja"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Hvala Vam na poruci"
@@ -25931,7 +25865,7 @@ msgstr "Link za resetovanje lozinke je istekao"
msgid "The reset password link has either been used before or is invalid"
msgstr "Link za resetovanje lozinke je već korišćen ili je nevažeći"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -25943,7 +25877,7 @@ msgstr "Uloga {0} treba da bude prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Izabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Molimo Vas da osvežite stranicu za nekoliko trenutaka."
@@ -26096,7 +26030,7 @@ msgstr "Autentifikacija putem eksternih aplikacija"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ova valuta je onemogućena. Omogućite je da biste je koristili u transakcijama"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ova Kanban tabla će biti privatna"
@@ -26120,7 +26054,7 @@ msgstr "Ove godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
@@ -26284,14 +26218,6 @@ msgstr "Ovo može biti odštampano na više stranica"
msgid "This month"
msgstr "Ovaj mesec"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Ovaj bilten je zakazan za slanje na {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Ovaj bilten je zakazan za slanje za kasniji datum. Da li ste sigurni da želite da ga pošaljete sada?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pretraživaču, umesto toga možete ga {1}."
@@ -26404,7 +26330,6 @@ msgstr "Četvrtak"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Vreme"
@@ -26630,10 +26555,8 @@ msgid "Title of the page"
msgstr "Naslov stranice"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Za"
@@ -26916,7 +26839,7 @@ msgstr "Gore desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26944,16 +26867,8 @@ msgstr "Ukupno slika"
msgid "Total Outgoing Emails"
msgstr "Ukupno izlaznih imejlova"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Ukupno primaoca"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Ukupno pretplatnika"
@@ -26962,11 +26877,6 @@ msgstr "Ukupno pretplatnika"
msgid "Total Users"
msgstr "Ukupno korisnika"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Ukupno pregleda"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27366,23 +27276,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL ka kojem vodi klik na prezentaciju slika"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM kampanja"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM medijum"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM izvor"
@@ -27432,7 +27336,7 @@ msgstr "Nije moguće upisati format fajla za {0}"
msgid "Unassign Condition"
msgstr "Ukloni dodeljivanje uslova"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Neuhvaćeni izuzetak"
@@ -27448,6 +27352,10 @@ msgstr "Poništi"
msgid "Undo last action"
msgstr "Poništi poslednju radnju"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27480,7 +27388,7 @@ msgstr "Nepoznat"
msgid "Unknown Column: {0}"
msgstr "Nepoznata kolona: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Nepoznat metod zaokruživanja: {}"
@@ -27513,7 +27421,7 @@ msgstr "Nepročitano"
msgid "Unread Notification Sent"
msgstr "Poslata obaveštenja o nepročitanim"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
@@ -27527,7 +27435,7 @@ msgstr "Poništi odabir svega"
msgid "Unshared"
msgstr "Nije podeljeno"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Otkazivanje pretplate"
@@ -27551,6 +27459,11 @@ msgstr "Parametri otkazivanja pretplate"
msgid "Unsubscribed"
msgstr "Otkazana pretplata"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Kolona bez naziva"
@@ -27673,7 +27586,7 @@ msgstr "Ažurirano na novu verziju 🎉"
msgid "Updated successfully"
msgstr "Uspešno ažurirano"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Ažuriranje"
@@ -28408,7 +28321,7 @@ msgstr "Vrednost je prevelika"
msgid "Value {0} missing for {1}"
msgstr "Vrednost {0} nedostaje za {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Vrednost {0} mora biti u važećem formatu trajanja: d h m s"
@@ -28833,7 +28746,6 @@ msgstr "URL webhook-a"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28841,9 +28753,7 @@ msgid "Website"
msgstr "Veb-sajt"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Analitika veb-sajta"
@@ -29279,7 +29189,7 @@ msgstr "Radni tok je uspešno ažuriran"
msgid "Workspace"
msgstr "Radni prostor"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Radni prostor {0} ne postoji"
@@ -29502,11 +29412,11 @@ msgstr "Prijavljeni ste kao drugi korisnik."
msgid "You are not allowed to access this resource"
msgstr "Nemate dozvolu da pristupite ovom resursu"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u polju {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u redu {3}, polje {4}"
@@ -29529,7 +29439,7 @@ msgstr "Nemate dozvolu da uređujete izveštaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Nemate dozvolu da izvezete doctype {}"
@@ -29557,7 +29467,7 @@ msgstr "Nije Vam dozvoljeno da pristupite ovoj stranici bez prijavljivanja."
msgid "You are not permitted to access this page."
msgstr "Nemate dozvolu da pristupite ovoj stranici."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -29652,7 +29562,7 @@ msgstr "Možete izabrati jednu od sledećih,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Možete postaviti višu vrednost ovde ukoliko se više korisnika prijavljuje sa iste mreže."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati da promenite filtere Vašeg izveštaja."
@@ -29729,11 +29639,15 @@ msgstr "Nemate dozvolu za čitanje ili izbor za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Obratite se svom menadžeru za pristup."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite ovu radnju"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -29741,7 +29655,7 @@ msgstr "Nemate dozvolu za pristup {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nemate dozvolu da otkažete sve povezane dokumente."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup izveštaju: {0}"
@@ -29749,11 +29663,11 @@ msgstr "Nemate pristup izveštaju: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvole za pristup DocType-u {0}."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovom fajlu"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Nemate dozvolu da dobijate izveštaj za: {0}"
@@ -29846,7 +29760,7 @@ msgstr "Morate biti sistemski korisnik da biste pristupili ovoj stranici."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Morate biti u razvojnom režimu da biste uredili standardni veb-obrazac"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Morate biti prijavljeni i imati ulogu sistem menadžera da biste pristupili rezervnim kopijama."
@@ -30012,7 +29926,7 @@ msgstr "Naziv i adresa Vaše organizacije za podnožje imejla."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorićemo Vam uskoro, ukoliko imate dodatne informacije molimo Vas da odgovorite na ovu poruku."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, molimo Vas da se prijavite ponovo da biste nastavili."
@@ -30024,7 +29938,7 @@ msgstr "Vaš sajt je trenutno na održavanju ili se ažurira."
msgid "Your verification code is {0}"
msgstr "Vaš verifikacioni kod je {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Nula"
@@ -30071,7 +29985,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "izmeni"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "i"
@@ -30128,7 +30042,7 @@ msgstr "kreiraj"
msgid "cyan"
msgstr "cijan"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30243,7 +30157,7 @@ msgstr "imejl"
msgid "email inbox"
msgstr "prijemna pošta imejla"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "prazno"
@@ -30295,7 +30209,7 @@ msgstr "siva"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nije pronađen u PATH! Ovo je neophodno za pravljenje rezervne kopije."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30329,7 +30243,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "upravo sada"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "oznaka"
@@ -30369,7 +30283,7 @@ msgstr "login_required"
msgid "long"
msgstr "dugo"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30559,7 +30473,7 @@ msgstr "odgovor"
msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30894,7 +30808,7 @@ msgstr "{0} je već otkazao pretplatu"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} je već otkazao pretplatu za {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} i {1}"
@@ -31000,6 +30914,10 @@ msgstr "{0} ne postoji u redu {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} polje ne može biti postavljeno kao jedinstveno u {1}, jer postoje nejedinstvene postojeće vrednosti"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format nije mogao biti određen iz vrednosti u ovoj koloni. Podrazumevano na {1}."
@@ -31020,10 +30938,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodelio podrazumevanu vrednost za {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} je uspešno dodat u Imejl grupu."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} je napustio razgovor u {1} {2}"
@@ -31094,6 +31008,10 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezno"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} nije polje za doctype {1}"
@@ -31115,7 +31033,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeći DocType ili dinamički link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća imejl adresa"
@@ -31123,11 +31041,11 @@ msgstr "{0} nije važeća imejl adresa"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nije važeća ISO 3166 ALPHA-2 šifra."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} nije važeći naziv"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije važeći broj telefona"
@@ -31135,11 +31053,11 @@ msgstr "{0} nije važeći broj telefona"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} nije važeće stanje radnog toka. Molimo Vas da ažurirate svoj radni tok i pokušate ponovo."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći matični DocType za {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće matično polje za {1}"
@@ -31227,23 +31145,23 @@ msgstr "pre {0} minuta"
msgid "{0} months ago"
msgstr "pre {0} meseci"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} mora biti nakon {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora počinjati sa '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} ne sme biti nijedno od {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
@@ -31255,7 +31173,7 @@ msgstr "{0} mora prvo biti postavljeno"
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstveno"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31284,16 +31202,12 @@ msgstr "{0} od {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redova sa zavisnim podacima)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} od {1} poslato"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "samo {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ili {1}"
@@ -31330,11 +31244,11 @@ msgstr "{0} je uklonio svoj zadatak."
msgid "{0} role does not have permission on any doctype"
msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} red#{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} je uspešno sačuvano"
@@ -31446,7 +31360,7 @@ msgstr "{0} {1} ne postoji, izaberite novo tačku za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sledećim podnetim dokumentima: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađen"
@@ -31599,11 +31513,11 @@ msgstr "{{{0}}} nije ispravan format naziva polja. Trebalo bi da bude {{field_na
msgid "{} Complete"
msgstr "{} završeno"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Potencijalno nevažeći python kod.
{}"
@@ -31625,7 +31539,7 @@ msgstr "{} polje ne može biti prazno."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} je onemogućeno. Može se omogućiti samo ukoliko je {} označeno."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} nije ispravan datum u tekstualnom formatu."
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 9110367e65..86f89ad98b 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "\"I Lista Vy\" är otillåtet for typ {0} på rad {1}"
msgid "'Recipients' not specified"
msgstr "\"Mottagare\" inte angivet"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' är inte en giltig webbadress"
@@ -1032,7 +1032,7 @@ msgstr "Åtgärd / Sökväg"
msgid "Action Complete"
msgstr "Åtgärd Klar"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Åtgärd Misslyckades"
@@ -1671,6 +1671,14 @@ msgstr "Varna"
msgid "Alerts and Notifications"
msgstr "Varningar och Aviseringar"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr "Alias kan inte vara SQL nyckelord: {0}"
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr "Alias måste vara sträng"
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1711,7 +1719,6 @@ msgstr "Justera Värde"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2157,7 +2164,7 @@ msgstr "Ändring Ej Tillåten"
msgid "Amendment naming rules updated."
msgstr "Ändring av Nummer Serie uppdaterad."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Fel inträffade vid konfiguration av Session Standard"
@@ -2275,7 +2282,7 @@ msgstr "App Namn"
msgid "App not found for module: {0}"
msgstr "App hittades inte för modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} är inte installerad"
@@ -2489,10 +2496,6 @@ msgstr "Är du säker på att du vill återställa alla anpassningar?"
msgid "Are you sure you want to save this document?"
msgstr "Är du säker på att du vill spara detta dokument?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Är du säker på att du vill skicka detta nyhetsbrev nu?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2746,9 +2749,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Bifogat till namn måste vara en sträng eller ett heltal"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Bilaga"
@@ -2775,10 +2776,7 @@ msgid "Attachment Removed"
msgstr "Bilaga Borttagen"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2796,11 +2794,6 @@ msgstr "Försöker starta QZ Aktivitet Fält..."
msgid "Attribution"
msgstr "Tillskrivning"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Mottagare"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3227,7 +3220,7 @@ msgstr "Bakgrund Bild"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Bakgrund Jobb"
@@ -3956,9 +3949,7 @@ msgstr "Återuppringning Benämning"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4044,10 +4035,6 @@ msgstr "Annullera"
msgid "Cancel All Documents"
msgstr "Annullera Alla Dokument"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Annullera Schemaläggning"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4341,7 +4328,7 @@ msgstr "Kategori Beskrivning"
msgid "Category Name"
msgstr "Kategori Namn"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4510,10 +4497,6 @@ msgstr "Markera"
msgid "Check Request URL"
msgstr "Kontrollera Begärd URL"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Kontrollera felaktiga länkar"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Markera kolumner för att välja, dra för att ange ordning."
@@ -4537,10 +4520,6 @@ msgstr "Välj detta för att tvinga användare att välja serie innan den kan sp
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Aktivera för att hela numeriska värdet visas (t.ex. 1.234.567 i stället för 1,2 miljoner)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Kontrollerar felaktiga länkar..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Kontrollerar ett ögonblick"
@@ -4587,6 +4566,10 @@ msgstr "Underordnad tabell {0} för fält {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Underordnade Tabeller visas som rutnät i andra DocTyper"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr "Underordnade frågefält för '{0}' måste vara lista eller tupel."
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Välj Befintligt Kort eller skapa Ny Kort"
@@ -4676,10 +4659,6 @@ msgstr "Klicka på Anpassa för att lägga till din första widget"
msgid "Click here"
msgstr "Klicka här"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Klicka här att verifiera"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klicka på fil för att välja det."
@@ -5021,7 +5000,7 @@ msgstr "Kolumner"
msgid "Columns / Fields"
msgstr "Kolumner / Fält"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Kolumner baserade på"
@@ -5343,17 +5322,12 @@ msgstr "Bekräfta Lösenord"
msgid "Confirm Request"
msgstr "Bekräfta Begäran"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Bekräfta E-post"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Bekräftelse E-post Mall"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Bekräftad"
@@ -5484,8 +5458,6 @@ msgstr "Innehåller {0} säkerhetskorrigeringar"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5493,7 +5465,6 @@ msgstr "Innehåller {0} säkerhetskorrigeringar"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5518,10 +5489,8 @@ msgstr "Innehåll (Markdown)"
msgid "Content Hash"
msgstr "Innehåll Hash"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5627,6 +5596,10 @@ msgstr "Kunde inte hitta {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Kunde inte mappa kolumn {0} till fält {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr "Kunde inte tolka fält: {0}"
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Kunde inte starta: "
@@ -5682,7 +5655,7 @@ msgstr "Räknare"
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Land Kod Erfordras"
@@ -5813,11 +5786,6 @@ msgstr "Skapa {0}"
msgid "Create a {0} Account"
msgstr "Skapa {0} Konto"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Skapa och skicka e-post till specifik grupp av prenumeranter med jämna mellanrum."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Skapa eller Redigera Utskrift Format"
@@ -6166,6 +6134,10 @@ msgstr "Anpassad Översättning"
msgid "Custom field renamed to {0} successfully."
msgstr "Anpassat fält bytte namn till {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr "Anpassad get_list-metod för {0} måste returnera QueryBuilder objekt eller None, fick {1}"
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6223,7 +6195,7 @@ msgstr "Anpassa Översikt Panel"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Anpassa Formulär"
@@ -6516,7 +6488,6 @@ msgstr "Databas Version"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6580,6 +6551,11 @@ msgstr "Dag"
msgid "Day of Week"
msgstr "Veckodag"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dagar"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6847,6 +6823,7 @@ msgstr "Försenad"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7159,6 +7136,7 @@ msgstr "Skrivbord Tema"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7915,7 +7893,7 @@ msgid "Document Types and Permissions"
msgstr "Dokument Typer och Behörigheter"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument Upplåst"
@@ -8533,7 +8511,6 @@ msgstr "Element Väljare"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8627,11 +8604,9 @@ msgstr "Bolag E-post Sidfot"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "E-post Grupp"
@@ -8704,18 +8679,11 @@ msgstr "Antal E-post Försök"
msgid "Email Rule"
msgstr "E-post Regel"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-post Skickad"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-post skickad Kl"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8822,10 +8790,18 @@ msgstr "E-post skickas med nästa möjliga arbetsflöde åtgärd"
msgid "Embed code copied"
msgstr "Bädda in kopierad kod"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr "Tomt alias är inte tillåtet"
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Tom kolumn"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr "Tomma strängargument är inte tillåtna"
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9290,6 +9266,14 @@ msgstr "Fel i Avisering"
msgid "Error in print format on line {0}: {1}"
msgstr "Fel i Utskrift Format på rad {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr "Fel i {0}.get_list: {1}"
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr "Fel vid tolkning av nästlade filter: {0}"
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Fel vid anslutning till E-post Konto {0}"
@@ -9486,6 +9470,10 @@ msgstr "Expandera"
msgid "Expand All"
msgstr "Expandera Alla"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr "Operator \"and\" eller \"or\" förväntades, resultat: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Experimentell"
@@ -10017,7 +10005,7 @@ msgstr "Fält Namn '{0}' är i konflikt med {1} av namn {2} i {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Fält Namn {0} måste finnas för att aktivera automatisk namngivning"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Fält Namn är begränsad till 64 tecken ({0})"
@@ -10033,7 +10021,7 @@ msgstr "Fält Namn som kommer att vara DocType för den här länk fält."
msgid "Fieldname {0} appears multiple times"
msgstr "Fält Namn {0} visas flera gånger"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Fält Namn {0} kan inte ha special tecken som {1}"
@@ -10085,6 +10073,10 @@ msgstr "Fält `file_name` eller `file_url` måste anges för fil"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Filter måste vara lista eller tupel när as_list är aktiverad"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr "Fält måste vara sträng, lista, tupel, pypika Fält eller pypika Funktion"
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10250,6 +10242,14 @@ msgstr "Filter Namn"
msgid "Filter Values"
msgstr "Filtervärden"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr "Filtervillkor saknas efter operator: {0}"
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr "Filterfält får inte innehålla bakåttecken (`)."
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filter..."
@@ -10493,10 +10493,6 @@ msgstr "Följande fält saknar värde"
msgid "Following fields have missing values:"
msgstr "Följande fält saknar värde:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Följande länkar är brutna i e-postinnehållet: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10913,10 +10909,8 @@ msgid "Friday"
msgstr "Fredag"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Från"
@@ -10997,10 +10991,14 @@ msgstr "Funktion"
msgid "Function Based On"
msgstr "Funktion Baserad på"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} är inte vitlistad."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr "Funktion {0} erfordrar argument men inga angavs"
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Extra noder kan endast skapas under 'grupp' typ noder"
@@ -11482,6 +11480,10 @@ msgstr "Gruppera Efter Typ"
msgid "Group By field is required to create a dashboard chart"
msgstr "Gruppera Efter Fält erfordras för att skapa Översikt Panel"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr "Gruppera Efter måste vara sträng"
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grupp Nod"
@@ -11530,7 +11532,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11544,7 +11545,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12053,6 +12053,11 @@ msgstr "Timvis Underhåll"
msgid "Hourly rate limit for generating password reset links"
msgstr "Antal länkar som kan skapas per timme för byte av lösenord"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Timmar"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12818,11 +12823,11 @@ msgstr "Felaktig Användare eller Lösenord"
msgid "Incorrect Verification code"
msgstr "Felaktig Verifiering Kod"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Felaktigt värde i rad {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Felaktigt värde:"
@@ -12974,11 +12979,11 @@ msgstr "Instruktioner"
msgid "Instructions Emailed"
msgstr "Instruktioner skickade per E-post"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
@@ -13128,7 +13133,7 @@ msgstr "Ogiltig Villkor: {}"
msgid "Invalid Credentials"
msgstr "Ogiltiga Uppgifter"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Ogiltigt Datum"
@@ -13136,7 +13141,7 @@ msgstr "Ogiltigt Datum"
msgid "Invalid DocType"
msgstr "Ogiltig DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Ogiltig DocType: {0}"
@@ -13148,6 +13153,11 @@ msgstr "Ogiltigt Fält Namn"
msgid "Invalid File URL"
msgstr "Ogiltig Fil URL"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr "Ogiltigt Filter"
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Ogiltig Filter Format för fält {0} av typ {1}. Försök att använda filter ikon på fält för att ange den korrekt"
@@ -13212,7 +13222,7 @@ msgstr "Ogiltiga Parametrar"
msgid "Invalid Password"
msgstr "Ogiltigt Lösenord"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Ogiltig Telefon Nummer"
@@ -13256,10 +13266,38 @@ msgstr "Ogiltig Webbhook Hemlighet"
msgid "Invalid aggregate function"
msgstr "Ogiltig aggregatfunktion"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare."
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr "Ogiltig argument format: {0}. Endast citerade sträng litteraler eller enkla fältnamn är tillåtna."
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr "Ogiltig argumenttyp: {0}. Endast strängar, siffror och None är tillåtna."
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr "Ogiltiga tecken i fältnamn: {0}. Endast bokstäver, siffror och understreck är tillåtna."
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr "Ogiltiga tecken i tabellnamn: {0}"
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Ogiltig Kolumn"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr "Ogiltig villkorstyp i nästlade filter: {0}"
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr "Ogiltig riktning i Sortera Efter: {0}. Måste vara 'ASC' eller 'DESC'."
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Ogiltig dokument status"
@@ -13272,10 +13310,26 @@ msgstr "Ogiltig uttryck angiven i filter {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ogiltig uttryck angiven i sortering {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr "Ogiltig fältformat för SELECT: {0}. Fältnamn måste vara enkla, bakåtkvalificerade, tabellkvalificerade, alias eller '*'."
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr "Ogiltig fältformat i {0}: {1}. Använd \"field\", \"link_field.field\" eller \"child_table.field\"."
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr "Ogiltig fältnamn i funktion: {0}. Endast enkla fältnamn är tillåtna."
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Ogiltig Fält Namn {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr "Ogiltig fälttyp: {0}"
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
@@ -13284,11 +13338,26 @@ msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
msgid "Invalid file path: {0}"
msgstr "Ogiltig Sökväg: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr "Ogiltig filtervillkor: {0}. Förväntade lista eller tupel."
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldname.target_fieldname'."
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Ogiltig Filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr "Ogiltig typ av funktionsargument: {0}. Endast strängar, siffror, listor och None är tillåtna."
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr "Ogiltigt funktion ordbok format"
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13310,10 +13379,22 @@ msgstr "Ogiltig eller skadat innehåll för import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ogiltigt omdirigering regex på rad #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Ogiltiga begäran argument"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr "Ogiltig enkelt filterformat: {0}"
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr "Ogiltig start för filtervillkor: {0}. Förväntade lista eller tupel."
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr "Ogiltig sträng litteral format: {0}"
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Ogiltig mall fil för import"
@@ -13755,11 +13836,11 @@ msgstr "Anslagstavla Bord Kolumn"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Anslagstavla Bord Namn"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Anslagstavla Inställningar"
@@ -14471,6 +14552,10 @@ msgstr "Gillar"
msgid "Limit"
msgstr "Begränsa"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "Gränsvärde får inte vara negativt heltal"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14734,6 +14819,7 @@ msgid "Load Balancing"
msgstr "Last Balansering"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15252,11 +15338,9 @@ msgstr "Markera som Skräp"
msgid "Mark as Unread"
msgstr "Markera som Oläst"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15445,7 +15529,6 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15458,7 +15541,6 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15473,16 +15555,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Meddelande"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Meddelande (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Meddelande (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15606,7 +15678,7 @@ msgstr "Meta Benämning för SEO"
msgid "Method"
msgstr "Sätt"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Metod ej Tillåten"
@@ -15656,6 +15728,11 @@ msgstr "Minimum Lösenord Värde"
msgid "Minor"
msgstr "Minor"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minuter"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16051,7 +16128,7 @@ msgstr "Måste omges av '()' och inkludera '{0}', som är platshållare för Anv
msgid "Must be of type \"Attach Image\""
msgstr "Måste vara av typ 'Bifoga Bild'"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Behörigheter saknas till den här rapport."
@@ -16241,6 +16318,10 @@ msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares pr
msgid "Negative Value"
msgstr "Negativ Värde"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr "Nästlade filter måste anges som lista eller tupel."
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Nested set fel. Kontakta Administratör."
@@ -16323,7 +16404,7 @@ msgstr "Ny Händelse"
msgid "New Folder"
msgstr "Ny Mapp"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Ny Anslagstavla"
@@ -16467,48 +16548,13 @@ msgstr "Nya {} versioner för följande appar finns tillgängliga"
msgid "Newly created user {0} has no roles enabled."
msgstr "Nyskapad användare {0} har inga roller aktiverade."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Nyhetsbrev"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Nyhetsbrev Bilaga"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Nyhetsbrev E-post Grupp"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Nyhetsbrev Ansvarig"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Nyhetsbrev redan skickad"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Nyhetsbrev måste publiceras för att skicka webbvylänk i E-post"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Nyhetsbrev ska ha minst en mottagare"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Nyhetsbrev"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16770,7 +16816,7 @@ msgstr "Inga Träffar"
msgid "No Roles Specified"
msgstr "Inga Roller Specificerade"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Ingen Välj Fält Hittad"
@@ -16798,10 +16844,6 @@ msgstr "Inga varningar för idag"
msgid "No automatic optimization suggestions available."
msgstr "Ingen automatisk optimering förslag tillgänglig."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Inga brutna länkar hittades i e-post"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Inga Ändringar"
@@ -16838,7 +16880,7 @@ msgstr "Inga kontakter upplagda än."
msgid "No contacts linked to document"
msgstr "Inga Kontakter länkade till dokument"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Ingen Data att exportera"
@@ -16858,7 +16900,7 @@ msgstr "Ingen E-post Konto kopplad till Användare. Lägg till konto under Anvä
msgid "No failed logs"
msgstr "Inga Misslyckade Logg"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Inga fält hittades som kan användas som Anslagstavla kolumn. Använd Anpassa Formulär för att lägga till anpassat fält av typ \"Välj\"."
@@ -16917,7 +16959,7 @@ msgstr "Antal Rader (Max 500)"
msgid "No of Sent SMS"
msgstr "Antal Skickade SMS"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Ingen Behörighet för {0}"
@@ -17045,7 +17087,7 @@ msgstr "Ej Underordnad Av"
msgid "Not Equals"
msgstr "Inte Lika"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Hittades Inte"
@@ -17071,7 +17113,7 @@ msgstr "Ej Länkad till någon post"
msgid "Not Nullable"
msgstr "Ej Nollställbar"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17080,7 +17122,7 @@ msgstr "Ej Nollställbar"
msgid "Not Permitted"
msgstr "Inte Tillåtet"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Ej Tillåtet att läsa {0}"
@@ -17108,7 +17150,6 @@ msgstr "Ej Visad"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Ej Skickad"
@@ -17141,7 +17182,7 @@ msgstr "Ej giltig Användare"
msgid "Not active"
msgstr "Inte Aktiv"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Ej tillåtet för {0}: {1}"
@@ -17575,6 +17616,10 @@ msgstr "Offset X"
msgid "Offset Y"
msgstr "Offset Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr "Förskjutning får inte vara negativt heltal"
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Gammalt Lösenord"
@@ -17748,7 +17793,7 @@ msgstr "Endast Workspace Manager kan redigera offentliga arbetsytor"
msgid "Only allowed to export customizations in developer mode"
msgstr "Endast tillåtet att exportera anpassningar i utvecklarläge"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Endast utkast dokument kan ångras"
@@ -17823,7 +17868,7 @@ msgstr "Öppna Awesomebar"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97
msgid "Open Communication"
-msgstr "Öppna Konversation"
+msgstr "Öppna Kommunikation"
#: frappe/templates/emails/new_notification.html:10
msgid "Open Document"
@@ -17920,7 +17965,7 @@ msgstr "Öppnad"
msgid "Operation"
msgstr "Åtgärd"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Operatören måste vara en av {0}"
@@ -18019,6 +18064,10 @@ msgstr "Orange"
msgid "Order"
msgstr "Order"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr "Sortera Efter måste vara sträng"
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18414,7 +18463,7 @@ msgstr "Överordnad är namn på dokument som data kommer att läggas till."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Gruppering av överordnad till underordnad eller underordnad till överordnad är inte tillåten."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Överordnad fält är inte specificerad i {0}: {1}"
@@ -18536,10 +18585,6 @@ msgstr "Lösenord stämmer inte"
msgid "Passwords do not match!"
msgstr "Lösenord stämmer inte!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Tidigare datum är inte tillåtna för Schemaläggning."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Klistra In"
@@ -18685,7 +18730,7 @@ msgstr "Godkänn {0}?"
msgid "Permanently delete {0}?"
msgstr "Permanent ta bort {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Behörighet Fel"
@@ -18837,7 +18882,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon Nummer."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefon Nummer {0} som anges i fält {1} är inte giltig."
@@ -19110,10 +19155,6 @@ msgstr "Ta bort skrivare mappning i Skrivare Inställningar och försök igen."
msgid "Please save before attaching."
msgstr "Spara före bifoga."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Spara Nyhetsbrev före skicka"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Spara dokument före tilldelning"
@@ -19146,7 +19187,7 @@ msgstr "Välj Minsta Lösenord Värde"
msgid "Please select X and Y fields"
msgstr "Välj X och Y fält"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Välj landskod för fält {1}."
@@ -19162,7 +19203,7 @@ msgstr "Välj fil eller URL"
msgid "Please select a valid csv file with data"
msgstr "Välj giltig CSV fil med data"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Välj giltig datum filter"
@@ -19240,7 +19281,7 @@ msgstr "Ange standard utgående e-postkonto från Verktyg > E-postkonto"
msgid "Please specify"
msgstr "Specificera"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Ange giltig överordnad DocType för {0}"
@@ -19277,10 +19318,6 @@ msgstr "Uppdatera {} innan du fortsätter."
msgid "Please use a valid LDAP search filter"
msgstr "Använd giltig LDAP Sökfilter"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Verifiera din e-postadress"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Besök https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key för mer information."
@@ -19374,6 +19411,10 @@ msgstr "Poster av {0}"
msgid "Posts filed under {0}"
msgstr "Poster arkiverade under {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr "Potentiell farligt innehåll i sträng litteral: {0}"
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19433,7 +19474,7 @@ msgstr "Förberedd Rapport Analys"
msgid "Prepared Report User"
msgstr "Förberedd Rapport Användare"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Förberedd Rapport Misslyckad"
@@ -19462,8 +19503,6 @@ msgstr "Tryck på Enter att Spara"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19851,7 +19890,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Framsteg"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekt"
@@ -19946,14 +19985,7 @@ msgstr "Allmänna Filer (MB)"
msgid "Publish"
msgstr "Publicera"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Publicera som Webbsida"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19961,7 +19993,6 @@ msgstr "Publicera som Webbsida"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20136,7 +20167,7 @@ msgstr "Dataförfråga Rapport"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Frågeanalys klar. Kontrollera föreslagna index."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Dataförfråga måste vara av typen SELECT eller skrivskyddad WITH."
@@ -20182,7 +20213,6 @@ msgstr "Kö(er)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "I Kö"
@@ -20205,19 +20235,11 @@ msgstr "I Kö för Godkännade. Du kan spåra framsteg över {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "I Kö för Säkerhetskopiering. Du kommer att få E-post meddelande med hämtning länk"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr " I Kö {0} e-post meddelande"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Kö "
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-post i kö..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "I Kö {0} för Godkännade"
@@ -20418,7 +20440,7 @@ msgstr "Läst av Mottagare(Datum)"
msgid "Read mode"
msgstr "Läs läge "
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Läs dokumentation för att reda på mer"
@@ -21285,7 +21307,7 @@ msgstr "Rapport gräns nådd"
msgid "Report timed out."
msgstr "Rapport förföll."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Rapport är uppdaterad"
@@ -21306,7 +21328,7 @@ msgstr "Rapport {0}"
msgid "Report {0} deleted"
msgstr "Rapport {0} raderad"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Rapport {0} är inaktiverad"
@@ -21639,10 +21661,8 @@ msgstr "Återkalla"
msgid "Revoked"
msgstr "Återkallad"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21853,7 +21873,6 @@ msgstr "Avrundning Sätt"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21867,7 +21886,6 @@ msgstr "Avrundning Sätt"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21985,7 +22003,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regel Villkor"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Regel för denna kombination av doctype, roll, åtkomstnivå och om ansvarig redan finns."
@@ -22174,11 +22192,11 @@ msgstr "Lördag"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22270,32 +22288,17 @@ msgstr "Skanna QR Kod och ange resulterande koden som visas."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Schema"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Schemalägg Nyhetsbrev"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Datum och Tid att Skicka"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Schemalägg Skicka"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Schemalägg Skicka vid senare tillfälle"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Schemalagd"
@@ -22329,17 +22332,6 @@ msgstr "Schemalagd Jobb"
msgid "Scheduled Jobs Logs"
msgstr "Schemalagda Jobb Logg"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Schemalagd Sändning"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Schemalagd Att Skicka"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Schemalagd körning av Skript {0} är uppdaterad"
@@ -22551,6 +22543,11 @@ msgstr "Sök..."
msgid "Searching ..."
msgstr "Söker..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "Sekunder"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22940,9 +22937,7 @@ msgstr "Välj {0}"
msgid "Self approval is not allowed"
msgstr "Ej Tillåtet att godkänna själv "
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Skicka"
@@ -22973,11 +22968,6 @@ msgstr "Skicka Avisering"
msgid "Send Email Alert"
msgstr "Skicka E-post Avisering"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Skicka E-post"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23035,38 +23025,16 @@ msgstr "Skicka Läskvitto"
msgid "Send System Notification"
msgstr "Skicka System Avisering"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Skicka test e-post"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Skicka till alla Tilldelade"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Skicka Avregistrering Länk"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Skicka Webb Vy Länk"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Skicka Välkomst E-post"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Skicka test e-post"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Skicka igen"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23114,10 +23082,6 @@ msgstr "Skicka Inloggning Länk"
msgid "Send me a copy"
msgstr "Skicka Kopia till mig"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Skicka nu"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23133,19 +23097,15 @@ msgstr "Skicka Avregistrering Meddelande i E-post"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Avsändare"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Avsändare E-post"
@@ -23162,9 +23122,7 @@ msgid "Sender Field should have Email in options"
msgstr "Avsändare Fält ska ha E-post i Alternativ"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Avsändare Namn"
@@ -23184,18 +23142,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Skickar"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Skickar e-post"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Skickar..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23203,8 +23152,6 @@ msgstr "Skickar..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Skickad"
@@ -23274,7 +23221,7 @@ msgstr "Nummer Serie {0} används redan i {1}"
msgid "Server Action"
msgstr "Server Åtgärd"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Server Fel"
@@ -23293,7 +23240,7 @@ msgstr "Server IP"
msgid "Server Script"
msgstr "Server Skript"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Server Skript är inaktiverad. Aktivera Server Skript från bench."
@@ -23332,15 +23279,15 @@ msgstr "Session Standard Inställningar"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Session Inställningar"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Session Inställningar Sparade"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Session Förföll"
@@ -23594,7 +23541,7 @@ msgstr "Konfigurerar System"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24677,7 +24624,6 @@ msgstr "Statistik Tid Intervall"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24702,7 +24648,6 @@ msgstr "Statistik Tid Intervall"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24843,8 +24788,6 @@ msgstr "Underdomän"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24853,7 +24796,6 @@ msgstr "Underdomän"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25224,7 +25166,7 @@ msgstr "Synkroniserar"
msgid "Syncing {0} of {1}"
msgstr "Synkroniserar {0} av {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Syntaxfel"
@@ -25531,7 +25473,7 @@ msgstr "Tabell Optimerad"
msgid "Table updated"
msgstr "Tabell Uppdaterad"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabell {0} kan inte vara tom"
@@ -25658,10 +25600,6 @@ msgstr "Test Jobb ID"
msgid "Test Spanish"
msgstr "Testa Spanska"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Test E-post skickad till {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test Mapp"
@@ -25729,10 +25667,6 @@ msgstr "Tack för din E-post"
msgid "Thank you for your feedback!"
msgstr "Tack för återkoppling!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Tack för prenumereration på vårt nyghetsbrev"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Tack för ditt meddelande"
@@ -25923,7 +25857,7 @@ msgstr "Länk för återställning av lösenord har upphört att gälla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Länk för återställning av lösenord har antingen använts tidigare eller är ogiltig"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs är inte tillgänglig"
@@ -25935,7 +25869,7 @@ msgstr "Roll {0} ska vara anpassad roll."
msgid "The selected document {0} is not a {1}."
msgstr "Vald dokument {0} är inte {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Systemet håller på att uppdateras. Uppdatera igen efter en stund."
@@ -26088,7 +26022,7 @@ msgstr "Tredje Parts Autentisering"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Denna Valuta är inaktiverad. Aktivera det att använda i transaktioner"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Detta Anslagstavla Bord kommer att vara privat"
@@ -26112,7 +26046,7 @@ msgstr "I År"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Denna åtgärd är oåterkallelig. Vill du fortsätta?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Åtgärd är endast tillåten för {}"
@@ -26275,14 +26209,6 @@ msgstr "Detta kan skrivas ut på flera sidor"
msgid "This month"
msgstr "Nuvarande Månad"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Detta nyhetsbrev är planerat att skickas {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Detta nyhetsbrev var planerat att skickas vid ett senare datum. Är du säker på att du vill skicka den nu?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i webbläsare. Du kan {1} denna rapport istället."
@@ -26395,7 +26321,6 @@ msgstr "Torsdag"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Tid"
@@ -26621,10 +26546,8 @@ msgid "Title of the page"
msgstr "Sida Benämning"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Till"
@@ -26905,7 +26828,7 @@ msgstr "Topp Höger"
msgid "Topic"
msgstr "Ämne"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26933,16 +26856,8 @@ msgstr "Totalt Antal Bilder"
msgid "Total Outgoing Emails"
msgstr "Totalt Utgående E-post "
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Totalt Antal Mottagare"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Totalt Antal Prenumeranter"
@@ -26951,11 +26866,6 @@ msgstr "Totalt Antal Prenumeranter"
msgid "Total Users"
msgstr "Totalt Användare"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Totalt Antal Visningar"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27355,23 +27265,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "Omdirigering URL när du klickar på Bildspel Bild"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM Kampanj"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM Medium"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM Källa"
@@ -27421,7 +27325,7 @@ msgstr "Kunde inte skriva fil format för {0}"
msgid "Unassign Condition"
msgstr "Inaktivera Villkor"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Ofångat Undantag"
@@ -27437,6 +27341,10 @@ msgstr "Ångra"
msgid "Undo last action"
msgstr "Ångra Senaste Åtgärd"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr "Oescapede citattecken i sträng literal: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27469,7 +27377,7 @@ msgstr "Okänd"
msgid "Unknown Column: {0}"
msgstr "Okänd Kolumn: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Okänd Avrundning Sätt: {}"
@@ -27502,7 +27410,7 @@ msgstr "Oläst"
msgid "Unread Notification Sent"
msgstr "Oläst Avisering Skickad"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Osäker SQL Fråga"
@@ -27516,7 +27424,7 @@ msgstr "Avmarkera Alla"
msgid "Unshared"
msgstr "Odelad"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Avregistrera"
@@ -27540,6 +27448,11 @@ msgstr "Avregistrering Parameter"
msgid "Unsubscribed"
msgstr "Avregistrerad"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr "Funktion som inte stöds eller ogiltigt fältnamn: {0}"
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Namnlös Kolumn"
@@ -27662,7 +27575,7 @@ msgstr "Uppdaterad till ny Version 🎉"
msgid "Updated successfully"
msgstr "Uppdaterad"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Uppdaterar"
@@ -28397,7 +28310,7 @@ msgstr "Värde för hög"
msgid "Value {0} missing for {1}"
msgstr "Värde {0} saknas för {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Värde {0} måste ha giltig varaktighet format: d h m s"
@@ -28822,7 +28735,6 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28830,9 +28742,7 @@ msgid "Website"
msgstr "Webbplats"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Webbplats Analys"
@@ -29268,7 +29178,7 @@ msgstr "Arbetsflöde är uppdaterad"
msgid "Workspace"
msgstr "Arbetsyta"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Arbetsyta {0} finns inte"
@@ -29491,11 +29401,11 @@ msgstr "Du efterliknar som en annan användare."
msgid "You are not allowed to access this resource"
msgstr "Du har inte behörighet att komma åt denna resurs"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i fält {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i rad {3}, fält {4}"
@@ -29518,7 +29428,7 @@ msgstr "Du har inte behörighet att redigera rapport."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Du har inte behörighet att exportera {} doctype"
@@ -29546,7 +29456,7 @@ msgstr "Du har inte behörighet att komma åt denna sida utan inloggning."
msgid "You are not permitted to access this page."
msgstr "Du har inte behörighet att komma åt den här sidan."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Du har inte tillåtelse att komma åt denna resurs. Logga in för att komma åt"
@@ -29641,7 +29551,7 @@ msgstr "Välja en från följande,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Ange ett högt värde här om flera användare kommer att logga in från samma nätverk."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Du kan försöka ändra Filter i Rapport."
@@ -29718,11 +29628,15 @@ msgstr "Du har inte Läs eller Val Behörigheter för {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Du har inte behörighet för att komma åt denna resurs. Kontakta Administratör ."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Du har inte behörighet att slutföra åtgärd"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr "Du har inte åtkomstbehörighet till fält: {0}"
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Du har inte behörighet att komma åt {0}: {1}."
@@ -29730,7 +29644,7 @@ msgstr "Du har inte behörighet att komma åt {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Du har inte behörighet att annullera alla länkade dokument."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Du har inte behörighet till Rapport: {0}"
@@ -29738,11 +29652,11 @@ msgstr "Du har inte behörighet till Rapport: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Du har inte behörighet att komma åt {0} DocType."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Du har inte behörighet att komma åt den här filen"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Du har inte behörighet att hämta rapport {0}"
@@ -29835,7 +29749,7 @@ msgstr "Du måste vara systemanvändare för att komma åt denna sida."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Du måste vara i Utvecklarläge att redigera Standard Webb Formulär"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Du måste vara inloggad och ha System Ansvarig roll för att kunna ha tillgång till säkerhetskopior."
@@ -30001,7 +29915,7 @@ msgstr "Bolag Namn och Adress för E-post Sidfot."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Din fråga har mottagits. Vi kommer att svara inom kort. Om du har någon ytterligare information, vänligen svara på detta mail."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Din session har gått ut, logga in igen för att fortsätta."
@@ -30013,7 +29927,7 @@ msgstr "Webbplats genomgår underhåll eller uppdateras."
msgid "Your verification code is {0}"
msgstr "Din verifiering kod är {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Noll"
@@ -30060,7 +29974,7 @@ msgstr "efter_infoga"
msgid "amend"
msgstr "ändra"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "och"
@@ -30117,7 +30031,7 @@ msgstr "skapa"
msgid "cyan"
msgstr "cyan"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30232,7 +30146,7 @@ msgstr "E-post"
msgid "email inbox"
msgstr "e-post inkorg"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "tom"
@@ -30284,7 +30198,7 @@ msgstr "grå"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip hittades inte i SÖKVÄG! Erfordras för att skapa säkerhetskopia."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30318,7 +30232,7 @@ msgstr "användare@bolag"
msgid "just now"
msgstr "just nu"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "etikett"
@@ -30358,7 +30272,7 @@ msgstr "Inloggning Erfordras "
msgid "long"
msgstr "lång"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30548,7 +30462,7 @@ msgstr "svar"
msgid "restored {0} as {1}"
msgstr "återställde {0} som {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30883,7 +30797,7 @@ msgstr "{0} redan avregistrerad"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} redan avregistrerad för {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} och {1}"
@@ -30989,6 +30903,10 @@ msgstr "{0} finns inte på rad {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} fält kan inte anges som unikt i {1}, eftersom det inte finns unika befintliga värden"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr "{0} fält får inte innehålla bakåttecken (`): {1}"
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format kunde inte fastställas från värden i denna kolumn. Standard Inställning är {1}."
@@ -31009,10 +30927,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} är redan tilldelat standard värde för {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} är lagd till E-post Grupp."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} har lämnat konversation i {1} {2}"
@@ -31083,6 +30997,10 @@ msgstr "{0} är som {1}"
msgid "{0} is mandatory"
msgstr "{0} är erfodrad"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr "{0} är inte undertabell till {1}"
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} är inte ett fält av doctype {1}"
@@ -31104,7 +31022,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} är inte en giltig DocType för Dynamisk Länk"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} är inte giltig E-post"
@@ -31112,11 +31030,11 @@ msgstr "{0} är inte giltig E-post"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} är inte giltig ISO 3166 ALPHA-2 kod."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} är inte giltigt Namn"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} är inte giltigt Telefon Nummer"
@@ -31124,11 +31042,11 @@ msgstr "{0} är inte giltigt Telefon Nummer"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} är inte giltig tillstånd för Arbetsflöde. Uppdatera Arbetsflöde och försök igen."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} är inte en giltig överordnad DocType för {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} är inte ett giltigt överordnat fält för {1}"
@@ -31216,23 +31134,23 @@ msgstr "{0} minuter sedan"
msgid "{0} months ago"
msgstr "{0} månader sedan"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} måste vara efter {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} måste börja med '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} måste vara lika med '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} måste inte vara någon av {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} måste vara en av {1}"
@@ -31244,7 +31162,7 @@ msgstr "{0} måste anges först"
msgid "{0} must be unique"
msgstr "{0} måste vara unik"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} måste vara {1} {2}"
@@ -31273,16 +31191,12 @@ msgstr "{0} av {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} av {1} ({2} rader med underordnade)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} av {1} skickade"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0} ."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} eller {1}"
@@ -31319,11 +31233,11 @@ msgstr "{0} tog bort sin tilldelning."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} roll har inte tillstånd på någon doctype"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} rad #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} sparad"
@@ -31435,7 +31349,7 @@ msgstr "{0} {1} finns inte, välj ett nytt mål för att slå samman"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} är länkad till följande godkända dokument: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} hittades inte"
@@ -31588,11 +31502,11 @@ msgstr "{{{0}}} är inte giltigt fältnamn mönster. Det borde vara {{field_name
msgid "{} Complete"
msgstr "{} Klar"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Ogiltig python kod på rad {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Möjligen ogiltig python kod.
{}"
@@ -31614,7 +31528,7 @@ msgstr "{} fält kan inte vara tom."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} är inaktiverad. Den kan bara aktiveras om {} är markerad."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} är inte giltig datum sträng."
diff --git a/frappe/locale/th.po b/frappe/locale/th.po
index 6269bb8093..5a2fa7be28 100644
--- a/frappe/locale/th.po
+++ b/frappe/locale/th.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-26 17:15\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "ในมุมมองรายการ ไม่อนุญาต
msgid "'Recipients' not specified"
msgstr "ผู้รับ ไม่ได้ระบุ"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' ไม่ใช่ URL ที่ถูกต้อง"
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr "คุณแน่ใจหรือไม่ว่าต้องกา
msgid "Are you sure you want to save this document?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการบันทึกเอกสารนี้?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "คุณแน่ใจหรือไม่ว่าต้องการส่งจดหมายข่าวนี้ตอนนี้?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr "ชื่อการเรียกกลับ"
msgid "Camera"
msgstr "กล้อง"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr "ปรับแต่งแดชบอร์ด"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "ปรับแต่งฟอร์ม"
@@ -6329,7 +6301,6 @@ msgstr "เวอร์ชันฐานข้อมูล"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr "วัน"
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "วัน"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr "ล่าช้า"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr "ประเภทเอกสารและสิทธิ์"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "เอกสารถูกปลดล็อก"
@@ -8343,7 +8321,6 @@ msgstr "ตัวเลือกองค์ประกอบ"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr "ที่อยู่ส่วนท้ายอีเมล"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "กลุ่มอีเมล"
@@ -8514,18 +8489,11 @@ msgstr "ขีดจำกัดการลองใหม่ของอีเ
msgid "Email Rule"
msgstr "กฎอีเมล"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "ส่งอีเมลแล้ว"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "ส่งอีเมลเมื่อ"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr "อีเมลจะถูกส่งพร้อมกับการ
msgid "Embed code copied"
msgstr "คัดลอกรหัสฝังแล้ว"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "คอลัมน์ว่างเปล่า"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr "ข้อผิดพลาดในการแจ้งเตือน
msgid "Error in print format on line {0}: {1}"
msgstr "ข้อผิดพลาดในรูปแบบการพิมพ์ในบรรทัด {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}"
@@ -9295,6 +9279,10 @@ msgstr "ขยาย"
msgid "Expand All"
msgstr "ขยายทั้งหมด"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "การทดลอง"
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาด
msgid "Following fields have missing values:"
msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "ลิงก์ต่อไปนี้เสียในเนื้อหาอีเมล: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr "วันศุกร์"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "จาก"
@@ -10806,10 +10800,14 @@ msgstr "ฟังก์ชัน"
msgid "Function Based On"
msgstr "ฟังก์ชันตาม"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "ฟังก์ชัน {0} ไม่ได้อยู่ในรายการที่อนุญาต"
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "สามารถสร้างโหนดเพิ่มเติมได้เฉพาะภายใต้โหนดประเภท 'กลุ่ม'"
@@ -11291,6 +11289,10 @@ msgstr "จัดกลุ่มตามประเภท"
msgid "Group By field is required to create a dashboard chart"
msgstr "ฟิลด์จัดกลุ่มตามเป็นสิ่งจำเป็นในการสร้างแผนภูมิแดชบอร์ด"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "โหนดกลุ่ม"
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr "การบำรุงรักษารายชั่วโมง"
msgid "Hourly rate limit for generating password reset links"
msgstr "ขีดจำกัดอัตรารายชั่วโมงสำหรับการสร้างลิงก์รีเซ็ตรหัสผ่าน"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "ชั่วโมง"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูก
msgid "Incorrect Verification code"
msgstr "รหัสยืนยันไม่ถูกต้อง"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "ค่าที่ไม่ถูกต้องในแถว {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "ค่าที่ไม่ถูกต้อง:"
@@ -12783,11 +12788,11 @@ msgstr "คำแนะนำ"
msgid "Instructions Emailed"
msgstr "ส่งคำแนะนำทางอีเมลแล้ว"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "ระดับสิทธิ์ไม่เพียงพอสำหรับ {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "สิทธิ์ไม่เพียงพอสำหรับ {0}"
@@ -12937,7 +12942,7 @@ msgstr "เงื่อนไขไม่ถูกต้อง: {}"
msgid "Invalid Credentials"
msgstr "ข้อมูลประจำตัวไม่ถูกต้อง"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "วันที่ไม่ถูกต้อง"
@@ -12945,7 +12950,7 @@ msgstr "วันที่ไม่ถูกต้อง"
msgid "Invalid DocType"
msgstr "DocType ไม่ถูกต้อง"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "DocType ไม่ถูกต้อง: {0}"
@@ -12957,6 +12962,11 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง"
msgid "Invalid File URL"
msgstr "URL ไฟล์ไม่ถูกต้อง"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "รูปแบบตัวกรองไม่ถูกต้องสำหรับฟิลด์ {0} ของประเภท {1} ลองใช้ไอคอนตัวกรองในฟิลด์เพื่อกำหนดค่าให้ถูกต้อง"
@@ -13021,7 +13031,7 @@ msgstr "พารามิเตอร์ไม่ถูกต้อง"
msgid "Invalid Password"
msgstr "รหัสผ่านไม่ถูกต้อง"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง"
@@ -13065,10 +13075,38 @@ msgstr "Webhook Secret ไม่ถูกต้อง"
msgid "Invalid aggregate function"
msgstr "ฟังก์ชันการรวมไม่ถูกต้อง"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "คอลัมน์ไม่ถูกต้อง"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "สถานะเอกสารไม่ถูกต้อง"
@@ -13081,10 +13119,26 @@ msgstr "นิพจน์ที่ตั้งค่าในตัวกรอ
msgid "Invalid expression set in filter {0} ({1})"
msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ({1}) ไม่ถูกต้อง"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน autoname"
@@ -13093,11 +13147,26 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน a
msgid "Invalid file path: {0}"
msgstr "เส้นทางไฟล์ไม่ถูกต้อง: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "ตัวกรองไม่ถูกต้อง: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr "เนื้อหาไม่ถูกต้องหรือเสี
msgid "Invalid redirect regex in row #{}: {}"
msgstr "รีไดเรกต์ regex ไม่ถูกต้องในแถว #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "อาร์กิวเมนต์คำขอไม่ถูกต้อง"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "ไฟล์แม่แบบไม่ถูกต้องสำหรับการนำเข้า"
@@ -13564,11 +13645,11 @@ msgstr "คอลัมน์กระดานคัมบัง"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "ชื่อกระดานคัมบัง"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "การตั้งค่าคัมบัง"
@@ -14280,6 +14361,10 @@ msgstr "การถูกใจ"
msgid "Limit"
msgstr "ขีดจำกัด"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr "การรวมสามารถทำได้เฉพาะระ
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr "การรวมสามารถทำได้เฉพาะระ
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "ข้อความ"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "ข้อความ (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "ข้อความ (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr "ชื่อเรื่องเมตาสำหรับ SEO"
msgid "Method"
msgstr "วิธีการ"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "ไม่อนุญาตวิธีการ"
@@ -15465,6 +15537,11 @@ msgstr "คะแนนรหัสผ่านขั้นต่ำ"
msgid "Minor"
msgstr "เล็กน้อย"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "นาที"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr "ต้องอยู่ใน '()' และรวม '{0}' ซึ่
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "ต้องมีสิทธิ์รายงานเพื่อเข้าถึงรายงานนี้"
@@ -16048,6 +16125,10 @@ msgstr "ต้องการบทบาทผู้จัดการพื้
msgid "Negative Value"
msgstr "ค่าติดลบ"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "ข้อผิดพลาดชุดซ้อน โปรดติดต่อผู้ดูแลระบบ"
@@ -16130,7 +16211,7 @@ msgstr "เหตุการณ์ใหม่"
msgid "New Folder"
msgstr "โฟลเดอร์ใหม่"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "กระดานคัมบังใหม่"
@@ -16274,48 +16355,13 @@ msgstr "มีการเผยแพร่ {} ใหม่สำหรับ
msgid "Newly created user {0} has no roles enabled."
msgstr "ผู้ใช้ที่สร้างใหม่ {0} ไม่มีบทบาทที่เปิดใช้งาน"
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "จดหมายข่าว"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "ไฟล์แนบจดหมายข่าว"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "กลุ่มอีเมลจดหมายข่าว"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "ผู้จัดการจดหมายข่าว"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "จดหมายข่าวถูกส่งไปแล้ว"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "จดหมายข่าวต้องเผยแพร่เพื่อส่งลิงก์เว็บวิวในอีเมล"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "จดหมายข่าวควรมีผู้รับอย่างน้อยหนึ่งคน"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "จดหมายข่าวหลายฉบับ"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr "ไม่มีบัญชีอีเมลที่เชื่อม
msgid "No failed logs"
msgstr "ไม่มีบันทึกที่ล้มเหลว"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr "จำนวนแถว (สูงสุด 500)"
msgid "No of Sent SMS"
msgstr "จำนวน SMS ที่ส่ง"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "ไม่มีสิทธิ์สำหรับ {0}"
@@ -16852,7 +16894,7 @@ msgstr "ไม่ใช่ลูกหลานของ"
msgid "Not Equals"
msgstr "ไม่เท่ากับ"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "ไม่พบ"
@@ -16878,7 +16920,7 @@ msgstr "ไม่ได้ลิงก์กับบันทึกใด ๆ"
msgid "Not Nullable"
msgstr "ไม่สามารถเป็นค่าว่างได้"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr "ไม่สามารถเป็นค่าว่างได้"
msgid "Not Permitted"
msgstr "ไม่ได้รับอนุญาต"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}"
@@ -16915,7 +16957,6 @@ msgstr "ไม่ได้เห็น"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "ไม่ได้ส่ง"
@@ -16948,7 +16989,7 @@ msgstr "ไม่ใช่ผู้ใช้ที่ถูกต้อง"
msgid "Not active"
msgstr "ไม่ใช้งาน"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "ไม่อนุญาตสำหรับ {0}: {1}"
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr "เฉพาะผู้จัดการพื้นที่ทำง
msgid "Only allowed to export customizations in developer mode"
msgstr "อนุญาตให้ส่งออกการปรับแต่งในโหมดนักพัฒนาเท่านั้น"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "สามารถทิ้งเอกสารร่างได้เท่านั้น"
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}"
@@ -17826,6 +17871,10 @@ msgstr "สีส้ม"
msgid "Order"
msgstr "คำสั่งซื้อ"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr "ผู้ปกครองคือชื่อของเอกสา
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "ไม่อนุญาตให้จัดกลุ่มจากผู้ปกครองถึงลูกหรือจากลูกถึงผู้ปกครอง"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "ไม่ได้ระบุฟิลด์ผู้ปกครองใน {0}: {1}"
@@ -18343,10 +18392,6 @@ msgstr "รหัสผ่านไม่ตรงกัน"
msgid "Passwords do not match!"
msgstr "รหัสผ่านไม่ตรงกัน!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "ไม่อนุญาตให้ใช้วันที่ที่ผ่านมาในการกำหนดเวลา"
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "วาง"
@@ -18492,7 +18537,7 @@ msgstr "ส่ง {0} อย่างถาวร?"
msgid "Permanently delete {0}?"
msgstr "ลบ {0} อย่างถาวร?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "ข้อผิดพลาดในการอนุญาต"
@@ -18644,7 +18689,7 @@ msgstr "โทรศัพท์"
msgid "Phone No."
msgstr "หมายเลขโทรศัพท์"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "หมายเลขโทรศัพท์ {0} ที่ตั้งค่าในฟิลด์ {1} ไม่ถูกต้อง"
@@ -18917,10 +18962,6 @@ msgstr "โปรดลบการแมปเครื่องพิมพ์
msgid "Please save before attaching."
msgstr "โปรดบันทึกก่อนแนบ"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "โปรดบันทึกจดหมายข่าวก่อนส่ง"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "โปรดบันทึกเอกสารก่อนการมอบหมาย"
@@ -18953,7 +18994,7 @@ msgstr "โปรดเลือกคะแนนรหัสผ่านขั
msgid "Please select X and Y fields"
msgstr "โปรดเลือกฟิลด์ X และ Y"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "โปรดเลือกรหัสประเทศสำหรับฟิลด์ {1}"
@@ -18969,7 +19010,7 @@ msgstr "โปรดเลือกไฟล์หรือ URL"
msgid "Please select a valid csv file with data"
msgstr "โปรดเลือกไฟล์ CSV ที่ถูกต้องพร้อมข้อมูล"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "โปรดเลือกตัวกรองวันที่ที่ถูกต้อง"
@@ -19047,7 +19088,7 @@ msgstr "โปรดตั้งค่าบัญชีอีเมลขาอ
msgid "Please specify"
msgstr "โปรดระบุ"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "โปรดระบุประเภทเอกสารหลักที่ถูกต้องสำหรับ {0}"
@@ -19084,10 +19125,6 @@ msgstr "โปรดอัปเดต {} ก่อนดำเนินกา
msgid "Please use a valid LDAP search filter"
msgstr "โปรดใช้ตัวกรองการค้นหา LDAP ที่ถูกต้อง"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "โปรดยืนยันที่อยู่อีเมลของคุณ"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr "โพสต์โดย {0}"
msgid "Posts filed under {0}"
msgstr "โพสต์ที่จัดเก็บภายใต้ {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr "การวิเคราะห์รายงานที่เตร
msgid "Prepared Report User"
msgstr "ผู้ใช้รายงานที่เตรียมไว้"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "การแสดงผลรายงานที่เตรียมไว้ล้มเหลว"
@@ -19269,8 +19310,6 @@ msgstr "กด Enter เพื่อบันทึก"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr "โปรไฟล์"
msgid "Progress"
msgstr "ความคืบหน้า"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "โครงการ"
@@ -19753,14 +19792,7 @@ msgstr "ไฟล์สาธารณะ (MB)"
msgid "Publish"
msgstr "เผยแพร่"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "เผยแพร่เป็นหน้าเว็บ"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr "เผยแพร่เป็นหน้าเว็บ"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr "รายงานการค้นหา"
msgid "Query analysis complete. Check suggested indexes."
msgstr "การวิเคราะห์การค้นหาเสร็จสมบูรณ์ ตรวจสอบดัชนีที่แนะนำ"
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "การค้นหาต้องเป็นประเภท SELECT หรือ read-only WITH"
@@ -19989,7 +20020,6 @@ msgstr "คิว"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "อยู่ในคิว"
@@ -20012,19 +20042,11 @@ msgstr "อยู่ในคิวสำหรับการส่ง คุ
msgid "Queued for backup. You will receive an email with the download link"
msgstr "อยู่ในคิวสำหรับการสำรองข้อมูล คุณจะได้รับอีเมลพร้อมลิงก์ดาวน์โหลด"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "อยู่ในคิว {0} อีเมล"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "คิว"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "กำลังจัดคิวอีเมล..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "กำลังจัดคิว {0} สำหรับการส่ง"
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr "ถึงขีดจำกัดรายงานแล้ว"
msgid "Report timed out."
msgstr "รายงานหมดเวลา"
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "อัปเดตรายงานเรียบร้อยแล้ว"
@@ -21113,7 +21135,7 @@ msgstr "รายงาน {0}"
msgid "Report {0} deleted"
msgstr "ลบรายงาน {0} แล้ว"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "รายงาน {0} ถูกปิดใช้งาน"
@@ -21446,10 +21468,8 @@ msgstr "เพิกถอน"
msgid "Revoked"
msgstr "ถูกเพิกถอน"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr "วิธีการปัดเศษ"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr "วิธีการปัดเศษ"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr "วันเสาร์"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr "เลือก {0}"
msgid "Self approval is not allowed"
msgstr "ไม่อนุญาตให้อนุมัติด้วยตนเอง"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "ส่ง"
@@ -22780,11 +22775,6 @@ msgstr "ส่งการแจ้งเตือนเมื่อ"
msgid "Send Email Alert"
msgstr "ส่งการแจ้งเตือนทางอีเมล"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "ส่งอีเมลเมื่อ"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr "ส่งใบตอบรับการอ่าน"
msgid "Send System Notification"
msgstr "ส่งการแจ้งเตือนระบบ"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "ส่งอีเมลทดสอบ"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "ส่งถึงผู้รับมอบหมายทั้งหมด"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "ส่งลิงก์ยกเลิกการสมัคร"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "ส่งลิงก์มุมมองเว็บ"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "ส่งอีเมลต้อนรับ"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "ส่งอีเมลทดสอบ"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "ส่งอีกครั้ง"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr "ส่งลิงก์เข้าสู่ระบบ"
msgid "Send me a copy"
msgstr "ส่งสำเนาให้ฉัน"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "ส่งเดี๋ยวนี้"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr "ส่งข้อความยกเลิกการสมัคร
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "ผู้ส่ง"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "อีเมลผู้ส่ง"
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "ชื่อผู้ส่ง"
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "กำลังส่ง"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "กำลังส่งอีเมล"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "กำลังส่ง..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr "กำลังส่ง..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "ส่งแล้ว"
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "ค่าเริ่มต้นของเซสชัน"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "เซสชันหมดอายุ"
@@ -23377,7 +23324,7 @@ msgstr "กำลังตั้งค่าระบบของคุณ"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr "ซับโดเมน"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr "ซับโดเมน"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr "กำลังซิงค์"
msgid "Syncing {0} of {1}"
msgstr "กำลังซิงค์ {0} จาก {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "ข้อผิดพลาดทางไวยากรณ์"
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr "รหัสงานทดสอบ"
msgid "Test Spanish"
msgstr "ทดสอบภาษาสเปน"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "อีเมลทดสอบถูกส่งไปยัง {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "โฟลเดอร์ทดสอบ"
@@ -25510,10 +25448,6 @@ msgstr "ขอบคุณสำหรับอีเมลของคุณ"
msgid "Thank you for your feedback!"
msgstr "ขอบคุณสำหรับความคิดเห็นของคุณ!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "ขอบคุณที่สนใจสมัครรับข้อมูลอัปเดตของเรา"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "ขอบคุณสำหรับข้อความของคุณ"
@@ -25702,7 +25636,7 @@ msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอา
msgid "The reset password link has either been used before or is invalid"
msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่"
@@ -25714,7 +25648,7 @@ msgstr "บทบาท {0} ควรเป็นบทบาทที่กำ
msgid "The selected document {0} is not a {1}."
msgstr "เอกสารที่เลือก {0} ไม่ใช่ {1}"
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "ระบบกำลังอัปเดต โปรดรีเฟรชอีกครั้งหลังจากสักครู่"
@@ -25867,7 +25801,7 @@ msgstr "การตรวจสอบสิทธิ์ของบุคคล
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "สกุลเงินนี้ถูกปิดใช้งาน เปิดใช้งานเพื่อใช้ในธุรกรรม"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "กระดาน Kanban นี้จะเป็นส่วนตัว"
@@ -25891,7 +25825,7 @@ msgstr "ปีนี้"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "การกระทำนี้อนุญาตเฉพาะสำหรับ {}"
@@ -26051,14 +25985,6 @@ msgstr "สิ่งนี้อาจถูกพิมพ์ในหลาย
msgid "This month"
msgstr "เดือนนี้"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "จดหมายข่าวนี้มีกำหนดส่งในวันที่ {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "จดหมายข่าวนี้มีกำหนดส่งในภายหลัง คุณแน่ใจหรือไม่ว่าต้องการส่งตอนนี้?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน"
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr "ขวาบน"
msgid "Topic"
msgstr "หัวข้อ"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr "รวมภาพ"
msgid "Total Outgoing Emails"
msgstr "รวมอีเมลขาออก"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "รวมผู้รับ"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "รวมผู้สมัครสมาชิก"
@@ -26723,11 +26638,6 @@ msgstr "รวมผู้สมัครสมาชิก"
msgid "Total Users"
msgstr "รวมผู้ใช้"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "รวมการดู"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL ที่จะไปเมื่อคลิกที่ภาพสไลด์โชว์"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "แคมเปญ UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "สื่อ UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "แหล่งที่มา UTM"
@@ -27190,7 +27094,7 @@ msgstr "ไม่สามารถเขียนรูปแบบไฟล์
msgid "Unassign Condition"
msgstr "ยกเลิกการกำหนดเงื่อนไข"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "ข้อยกเว้นที่ไม่ได้จับ"
@@ -27206,6 +27110,10 @@ msgstr "เลิกทำ"
msgid "Undo last action"
msgstr "เลิกทำการกระทำล่าสุด"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr "ไม่ทราบ"
msgid "Unknown Column: {0}"
msgstr "คอลัมน์ที่ไม่ทราบ: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "วิธีการปัดเศษที่ไม่ทราบ: {}"
@@ -27271,7 +27179,7 @@ msgstr "ยังไม่ได้อ่าน"
msgid "Unread Notification Sent"
msgstr "การแจ้งเตือนที่ยังไม่ได้อ่านถูกส่งแล้ว"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย"
@@ -27285,7 +27193,7 @@ msgstr "ยกเลิกการเลือกทั้งหมด"
msgid "Unshared"
msgstr "ไม่ได้แชร์"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "ยกเลิกการสมัครสมาชิก"
@@ -27309,6 +27217,11 @@ msgstr "พารามิเตอร์ยกเลิกการสมัค
msgid "Unsubscribed"
msgstr "ยกเลิกการสมัครสมาชิกแล้ว"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "คอลัมน์ที่ไม่มีชื่อ"
@@ -27431,7 +27344,7 @@ msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉"
msgid "Updated successfully"
msgstr "อัปเดตสำเร็จ"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "กำลังอัปเดต"
@@ -28166,7 +28079,7 @@ msgstr "ค่ามากเกินไป"
msgid "Value {0} missing for {1}"
msgstr "ค่า {0} หายไปสำหรับ {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "ค่า {0} ต้องอยู่ในรูปแบบระยะเวลาที่ถูกต้อง: d h m s"
@@ -28591,7 +28504,6 @@ msgstr "URL Webhook"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr "เว็บไซต์"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "การวิเคราะห์เว็บไซต์"
@@ -29037,7 +28947,7 @@ msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ"
msgid "Workspace"
msgstr "พื้นที่ทำงาน"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "พื้นที่ทำงาน {0} ไม่มีอยู่"
@@ -29260,11 +29170,11 @@ msgstr "คุณกำลังปลอมตัวเป็นผู้ใช
msgid "You are not allowed to access this resource"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในฟิลด์ {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในแถว {3}, ฟิลด์ {4}"
@@ -29287,7 +29197,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้แก้
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}"
@@ -29315,7 +29225,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้เข้
msgid "You are not permitted to access this page."
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้"
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้ โปรดเข้าสู่ระบบเพื่อเข้าถึง"
@@ -29410,7 +29320,7 @@ msgstr "คุณสามารถเลือกหนึ่งจากรา
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "คุณสามารถตั้งค่าค่าสูงที่นี่หากมีผู้ใช้หลายคนเข้าสู่ระบบจากเครือข่ายเดียวกัน"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ"
@@ -29487,11 +29397,15 @@ msgstr "คุณไม่มีสิทธิ์อ่านหรือเล
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง"
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการให้เสร็จสิ้น"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}"
@@ -29499,7 +29413,7 @@ msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}
msgid "You do not have permissions to cancel all linked documents."
msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกสารที่เชื่อมโยงทั้งหมด"
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "คุณไม่มีสิทธิ์เข้าถึงรายงาน: {0}"
@@ -29507,11 +29421,11 @@ msgstr "คุณไม่มีสิทธิ์เข้าถึงราย
msgid "You don't have permission to access the {0} DocType."
msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}"
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "คุณไม่มีสิทธิ์เข้าถึงไฟล์นี้"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "คุณไม่มีสิทธิ์รับรายงานเกี่ยวกับ: {0}"
@@ -29604,7 +29518,7 @@ msgstr "คุณต้องเป็นผู้ใช้ระบบเพื
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "คุณต้องอยู่ในโหมดนักพัฒนาเพื่อแก้ไขฟอร์มเว็บมาตรฐาน"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "คุณต้องเข้าสู่ระบบและมีบทบาทผู้จัดการระบบเพื่อเข้าถึงข้อมูลสำรอง"
@@ -29770,7 +29684,7 @@ msgstr "ชื่อและที่อยู่ขององค์กรข
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "คำถามของคุณได้รับแล้ว เราจะตอบกลับในไม่ช้า หากคุณมีข้อมูลเพิ่มเติม โปรดตอบกลับอีเมลนี้"
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ"
@@ -29782,7 +29696,7 @@ msgstr "ไซต์ของคุณกำลังอยู่ในระห
msgid "Your verification code is {0}"
msgstr "รหัสยืนยันของคุณคือ {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "ศูนย์"
@@ -29829,7 +29743,7 @@ msgstr "หลังจากแทรก"
msgid "amend"
msgstr "แก้ไข"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "และ"
@@ -29886,7 +29800,7 @@ msgstr "สร้าง"
msgid "cyan"
msgstr "สีฟ้า"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr "อีเมล"
msgid "email inbox"
msgstr "กล่องจดหมายอีเมล"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "ว่างเปล่า"
@@ -30053,7 +29967,7 @@ msgstr "สีเทา"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "ไม่พบ gzip ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล"
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr "เมื่อสักครู่"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "ป้ายกำกับ"
@@ -30127,7 +30041,7 @@ msgstr "ต้องเข้าสู่ระบบ"
msgid "long"
msgstr "ยาว"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr "การตอบกลับ"
msgid "restored {0} as {1}"
msgstr "กู้คืน {0} เป็น {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr "{0} ยกเลิกการสมัครแล้ว"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} ยกเลิกการสมัครแล้วสำหรับ {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} และ {1}"
@@ -30758,6 +30672,10 @@ msgstr "{0} ไม่มีอยู่ในแถว {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "ฟิลด์ {0} ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำใน {1} ได้ เนื่องจากมีค่าที่ไม่ซ้ำอยู่แล้ว"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "ไม่สามารถกำหนดรูปแบบ {0} จากค่าที่อยู่ในคอลัมน์นี้ได้ กำหนดค่าเริ่มต้นเป็น {1}"
@@ -30778,10 +30696,6 @@ msgstr "{0} ชั่วโมง"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} ได้กำหนดค่าเริ่มต้นสำหรับ {1} แล้ว"
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} ถูกเพิ่มในกลุ่มอีเมลเรียบร้อยแล้ว"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} ออกจากการสนทนาใน {1} {2}"
@@ -30852,6 +30766,10 @@ msgstr "{0} คล้ายกับ {1}"
msgid "{0} is mandatory"
msgstr "{0} เป็นสิ่งจำเป็น"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} ไม่ใช่ฟิลด์ของประเภทเอกสาร {1}"
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง"
@@ -30881,11 +30799,11 @@ msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถ
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} ไม่ใช่รหัส ISO 3166 ALPHA-2 ที่ถูกต้อง"
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ที่ถูกต้อง"
@@ -30893,11 +30811,11 @@ msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ท
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง"
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} ไม่ใช่ประเภทเอกสารหลักที่ถูกต้องสำหรับ {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต้องสำหรับ {1}"
@@ -30985,23 +30903,23 @@ msgstr "{0} นาทีที่ผ่านมา"
msgid "{0} months ago"
msgstr "{0} เดือนที่ผ่านมา"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} ต้องอยู่หลังจาก {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} ต้องเริ่มต้นด้วย '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} ต้องเท่ากับ '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} ต้องไม่เป็นหนึ่งใน {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} ต้องเป็นหนึ่งใน {1}"
@@ -31013,7 +30931,7 @@ msgstr "{0} ต้องตั้งค่าก่อน"
msgid "{0} must be unique"
msgstr "{0} ต้องไม่ซ้ำกัน"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} ต้องเป็น {1} {2}"
@@ -31042,16 +30960,12 @@ msgstr "{0} ของ {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} ของ {1} ({2} แถวที่มีลูก)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} ของ {1} ถูกส่งแล้ว"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "เฉพาะ {0} เท่านั้น"
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} หรือ {1}"
@@ -31088,11 +31002,11 @@ msgstr "{0} ลบการมอบหมายของพวกเขา"
msgid "{0} role does not have permission on any doctype"
msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} บันทึกสำเร็จ"
@@ -31204,7 +31118,7 @@ msgstr "{0} {1} ไม่มีอยู่ โปรดเลือกเป้
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ส่งต่อไปนี้: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "ไม่พบ {0} {1}"
@@ -31357,11 +31271,11 @@ msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์
msgid "{} Complete"
msgstr "{} เสร็จสมบูรณ์"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} โค้ด Python อาจไม่ถูกต้อง
{}"
@@ -31383,7 +31297,7 @@ msgstr "ฟิลด์ {} ไม่สามารถว่างเปล่
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} ถูกปิดใช้งาน สามารถเปิดใช้งานได้เฉพาะเมื่อเลือก {}"
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} ไม่ใช่สตริงวันที่ที่ถูกต้อง"
diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po
index 5a7356b12c..75d9a5dfbe 100644
--- a/frappe/locale/tr.po
+++ b/frappe/locale/tr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "{1} satırındaki {0} türü için 'Liste Görünümü' seçeneğine izi
msgid "'Recipients' not specified"
msgstr "'Alıcılar' belirtilmemiş"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' geçerli bir URL değil"
@@ -1035,7 +1035,7 @@ msgstr "Aksiyon / Rota"
msgid "Action Complete"
msgstr "Eylem Tamamlandı"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Eylem Başarısız"
@@ -1674,6 +1674,14 @@ msgstr "Uyarı"
msgid "Alerts and Notifications"
msgstr "Uyarılar ve Bildirimler"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Değer Hizala"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Değişikliğe İzin Verilmiyor"
msgid "Amendment naming rules updated."
msgstr "Değişiklik adlandırma kuralları güncellendi."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Oturum Varsayılanlarını ayarlarken bir hata oluştu"
@@ -2278,7 +2285,7 @@ msgstr "Uygulama İsmi"
msgid "App not found for module: {0}"
msgstr "Modül için uygulama bulunamadı: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "{0} Uygulaması yüklü değil"
@@ -2492,10 +2499,6 @@ msgstr "Tüm özelleştirmeleri sıfırlamak istediğinizden emin misiniz?"
msgid "Are you sure you want to save this document?"
msgstr "Bu belgeyi kaydetmek istediğinizden emin misiniz?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Bu bülteni şimdi göndermek istediğinizden emin misiniz?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Bağlı Olduğu Ad, bir metin (string) veya tam sayı (integer) olmalıdır."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Belge Eki"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Ek Kaldırıldı"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "QZ Tray başlatılmaya çalışılıyor..."
msgid "Attribution"
msgstr "Özellik"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Hedef Kitle"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Arkaplan Resmi"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Arkaplan Görevleri"
@@ -3959,9 +3952,7 @@ msgstr ""
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Tümünü İptal Et"
msgid "Cancel All Documents"
msgstr "Tüm Belgeleri İptal Et"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Programı İptal Et"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Kategori Açıklaması"
msgid "Category Name"
msgstr "Kategori Adı"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Kuruş"
@@ -4513,10 +4500,6 @@ msgstr "Kontrol et"
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Kırık bağlantıları kontrol edin"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4540,10 +4523,6 @@ msgstr "Kullanıcıyı kaydetmeden önce bir seri seçmeye zorlamak istiyorsanı
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Kırık bağlantılar kontrol ediliyor..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Kontrol ediliyor bekleyin"
@@ -4590,6 +4569,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Alt Tablolar, diğer DocType'larda Tablo olarak gösterilir."
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Mevcut Kartı Seçin veya Yeni Kart Oluşturun"
@@ -4679,10 +4662,6 @@ msgstr "İlk Bileşeni eklemek için Özelleştir'e tıklayın."
msgid "Click here"
msgstr "Buraya tıklayın"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Doğrulamak için buraya tıklayın"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Seçmek için bir dosyaya tıklayın."
@@ -5024,7 +5003,7 @@ msgstr "Sütunlar"
msgid "Columns / Fields"
msgstr "Sütunlar / Alanlar"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Sütun Ayarlaması"
@@ -5346,17 +5325,12 @@ msgstr "Şifreyi Onayla"
msgid "Confirm Request"
msgstr "Talebi Onayla"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "E-postanızı Onaylayın"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Onay E-postası Şablonu"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Onaylandı"
@@ -5487,8 +5461,6 @@ msgstr "{0} güvenlik düzeltmesi içerir"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "{0} güvenlik düzeltmesi içerir"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "İçerik (Markdown)"
msgid "Content Hash"
msgstr "Hash Doğrulaması"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "{0} bulunamadı."
msgid "Could not map column {0} to field {1}"
msgstr "{0} sütunu {1} alanıyla eşleştirilemedi"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Başlatılamadı: "
@@ -5685,7 +5658,7 @@ msgstr "Sayaç"
msgid "Country"
msgstr "Ülke"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Ülke Kodu Gerekli"
@@ -5816,11 +5789,6 @@ msgstr "Yeni {0} Oluştur"
msgid "Create a {0} Account"
msgstr "{0} Hesabı Oluşturun"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Belirli aralıklarla belirli bir abone grubuna e-posta oluşturun ve gönderin."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Yazdırma Formatı Oluştur veya Düzenle"
@@ -6169,6 +6137,10 @@ msgstr "Özel Çeviri"
msgid "Custom field renamed to {0} successfully."
msgstr "Özel alan başarıyla {0} olarak yeniden adlandırıldı."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Gösterge Paneli Özelleştir"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Form Özelleştir"
@@ -6519,7 +6491,6 @@ msgstr "Veri Tabanı Sürümü"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Gün"
msgid "Day of Week"
msgstr "Haftanın günü"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Gün"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Gecikti"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Tema"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7915,7 +7893,7 @@ msgid "Document Types and Permissions"
msgstr "Belge Türleri ve İzinler"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Belge Kilidi Açıldı"
@@ -8533,7 +8511,6 @@ msgstr "Element Seçici"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8627,11 +8604,9 @@ msgstr "E-posta Alt Bilgi Adresi"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "E-posta Grubu"
@@ -8704,18 +8679,11 @@ msgstr "E-posta Yeniden Deneme Limiti"
msgid "Email Rule"
msgstr "E-posta Kuralı"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-posta Gönderildi"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-posta Gönderim Zamanı"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8822,10 +8790,18 @@ msgstr "E-postalar bir sonraki olası iş akışı eylemleriyle birlikte gönder
msgid "Embed code copied"
msgstr "Gömülü kod kopyalandı"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Boş sütun"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9289,6 +9265,14 @@ msgstr "Hata Bildirimi"
msgid "Error in print format on line {0}: {1}"
msgstr "{0} satırındaki yazdırma biçiminde hata: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "E-posta hesabına bağlanırken hata oluştu {0}"
@@ -9485,6 +9469,10 @@ msgstr "Genişlet"
msgid "Expand All"
msgstr "Tümünü Genişlet"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Deneysel"
@@ -10016,7 +10004,7 @@ msgstr "DocType Alanı '{0}' {3}içinde {2} adında bir {1} ile çakışıyor"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Otomatik adlandırmayı etkinleştirmek için {0} adlı bir alan bulunmalıdır"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Alan ismi 64 karakterle sınırılıdır ({0})"
@@ -10032,7 +10020,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10084,6 +10072,10 @@ msgstr "Dosya için `file_name` veya `file_url` alanları ayarlanmalıdır"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10249,6 +10241,14 @@ msgstr "Filtre Adı"
msgid "Filter Values"
msgstr "Filtre Değerleri"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filtre..."
@@ -10492,10 +10492,6 @@ msgstr "Aşağıdaki alanlarda eksik değerler bulunuyor"
msgid "Following fields have missing values:"
msgstr "Aşağıdaki alanlarda eksik değerler bulunmaktadır:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "E-posta içeriğinde aşağıdaki bağlantılar bozuk: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10913,10 +10909,8 @@ msgid "Friday"
msgstr "Cuma"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "itibaren"
@@ -10997,10 +10991,14 @@ msgstr "Fonksiyon"
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "{0} fonksiyonu beyaz listeye eklenmemiş."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Ek kısımlar ancak 'Grup' tipi kısımlar altında oluşturulabilir"
@@ -11482,6 +11480,10 @@ msgstr "Türe Göre Gruplandır"
msgid "Group By field is required to create a dashboard chart"
msgstr "Pano grafiği oluşturmak için Grupla alanı gereklidir"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grup Düğümü"
@@ -11530,7 +11532,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11544,7 +11545,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12053,6 +12053,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Şifre sıfırlama bağlantıları oluşturmak için saatlik limit."
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Saat"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12818,11 +12823,11 @@ msgstr "Hatalı Kullanıcı Adı veya Şifre"
msgid "Incorrect Verification code"
msgstr "Hatalı Doğrulama Kodu"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Satırlarda yanlış değer var {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Geçersiz değer: "
@@ -12974,11 +12979,11 @@ msgstr "Talimatlar"
msgid "Instructions Emailed"
msgstr "Talimatlar E-postayla Gönderildi"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "{0} için Yetersiz İzin Seviyesi"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "{0} için Yetki Verilmemiş"
@@ -13128,7 +13133,7 @@ msgstr "Geçersiz Koşul: {}"
msgid "Invalid Credentials"
msgstr "Geçersiz kimlik bilgileri"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Geçersiz Tarih"
@@ -13136,7 +13141,7 @@ msgstr "Geçersiz Tarih"
msgid "Invalid DocType"
msgstr "Geçersiz DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Geçersiz DocType: {0}"
@@ -13148,6 +13153,11 @@ msgstr "Geçersiz Alan Adı"
msgid "Invalid File URL"
msgstr "Geçersiz Dosya URL'si"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "{1} türündeki {0} alanı için geçersiz filtre biçimi. Doğru şekilde ayarlamak için alandaki filtre simgesini kullanmayı deneyin"
@@ -13212,7 +13222,7 @@ msgstr "Geçersiz Parametreler."
msgid "Invalid Password"
msgstr "Geçersiz Şifre"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Geçersiz Telefon Numarası"
@@ -13256,10 +13266,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Geçersiz Sütun"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Geçersiz docstatus"
@@ -13272,10 +13310,26 @@ msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "{0} filtresinde ayarlanmış geçersiz ifade ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Geçersiz alan adı {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'"
@@ -13284,11 +13338,26 @@ msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'"
msgid "Invalid file path: {0}"
msgstr "Geçersiz dosya yolu: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Geçersiz filtre: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13310,10 +13379,22 @@ msgstr "İçe aktarma için geçersiz veya bozuk içerik"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Geçersiz istek değişkenleri"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "İçe aktarma için geçersiz şablon dosyası"
@@ -13755,11 +13836,11 @@ msgstr "Kanban Panosu Sütunu"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Kanban Panosu Adı"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban Ayarları"
@@ -14471,6 +14552,10 @@ msgstr "Beğeniler"
msgid "Limit"
msgstr "Limit"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14734,6 +14819,7 @@ msgid "Load Balancing"
msgstr "Yük Dengeleme"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15252,11 +15338,9 @@ msgstr "İstenmeyen olarak İşaretle"
msgid "Mark as Unread"
msgstr "Okunmadı Olarak İşaretle"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15445,7 +15529,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15458,7 +15541,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15473,16 +15555,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Mesaj"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Mesaj (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Mesaj (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15606,7 +15678,7 @@ msgstr "SEO için meta başlık"
msgid "Method"
msgstr "Yöntem"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "İzin Verilmeyen Method"
@@ -15656,6 +15728,11 @@ msgstr "Minimum Şifre Puanı"
msgid "Minor"
msgstr "Ara Sürüm"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Süreler"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16051,7 +16128,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "Resim Eki Formatında Olmalıdır"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Bu rapora erişmek için rapor iznine sahip olmanız gerekir."
@@ -16241,6 +16318,10 @@ msgstr "Diğer kullanıcıların özel çalışma alanlarını düzenlemek için
msgid "Negative Value"
msgstr "Negatif Değer"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "İç içe küme hatası. Lütfen Yönetici ile iletişime geçin."
@@ -16323,7 +16404,7 @@ msgstr "Yeni Etkinlik"
msgid "New Folder"
msgstr "Yeni Klasör"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Yeni Kanban Panosu"
@@ -16467,48 +16548,13 @@ msgstr "Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu"
msgid "Newly created user {0} has no roles enabled."
msgstr "{0} kullanıcısı için rol belirlenmedi."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Bülten"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Bülten Eki"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Bülten E-posta Grubu"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Bülten Yöneticisi"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Bülten zaten gönderildi"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "E-postada webview bağlantısını göndermek için bültenin yayınlanması gerekir"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Bültenin en az bir alıcısı olmalıdır"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Bültenler"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16770,7 +16816,7 @@ msgstr "Uygun Sonuç Bulunamadı"
msgid "No Roles Specified"
msgstr "Rol Belirlenmedi"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Seçim Alanı Bulunamadı"
@@ -16798,10 +16844,6 @@ msgstr "Bugün için herhangi bir bildirim yok"
msgid "No automatic optimization suggestions available."
msgstr "Otomatik optimizasyon önerileri mevcut değil."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "E-posta içeriğinde kırık bağlantı bulunamadı"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Belgede Değişiklik Yapılmadı"
@@ -16838,7 +16880,7 @@ msgstr "Henüz kişi eklenmedi."
msgid "No contacts linked to document"
msgstr "Belgeye bağlı kişi yok"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Verilecek veri yok"
@@ -16858,7 +16900,7 @@ msgstr "Kullanıcıyla ilişkilendirilmiş bir e-posta hesabı bulunmamaktadır.
msgid "No failed logs"
msgstr "Başarısız kayıt yok"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Kanban Sütunu olarak kullanılabilecek alanlar bulunamadı. \"Seçim\" türünde yeni bir Özel Alan eklemek için Form Özelleştirmeyi kullanın."
@@ -16917,7 +16959,7 @@ msgstr "Satır Sayısı (Maksimum 500)"
msgid "No of Sent SMS"
msgstr "Gönderilen SMS sayısı"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "{0} İçin Yetki Yok"
@@ -17045,7 +17087,7 @@ msgstr "Aynı Kategoride Değil"
msgid "Not Equals"
msgstr "Eşit Değil"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Bulunamadı"
@@ -17071,7 +17113,7 @@ msgstr "Herhangi bir kayıtla bağlantılı değil"
msgid "Not Nullable"
msgstr "Boş Bırakılamaz"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17080,7 +17122,7 @@ msgstr "Boş Bırakılamaz"
msgid "Not Permitted"
msgstr "İzin yok"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "{0} için Okuma izni yok"
@@ -17108,7 +17150,6 @@ msgstr "Görülmedi"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Gönderilmedi"
@@ -17141,7 +17182,7 @@ msgstr "Geçerli bir kullanıcı değil"
msgid "Not active"
msgstr "Aktif değil"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "{0} için izin verilmiyor: {1}"
@@ -17575,6 +17616,10 @@ msgstr "X Ekseni"
msgid "Offset Y"
msgstr "Y Ekseni"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Eski Şifre"
@@ -17748,7 +17793,7 @@ msgstr "Yalnızca Çalışma Alanı Yöneticisi genel çalışma alanlarını d
msgid "Only allowed to export customizations in developer mode"
msgstr "Özelleştirmelerin yalnızca geliştirici modunda dışa aktarılmasına izin verilir"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17920,7 +17965,7 @@ msgstr "Açıldı"
msgid "Operation"
msgstr "Operasyon"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -18019,6 +18064,10 @@ msgstr "Turuncu"
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18414,7 +18463,7 @@ msgstr "Üst öğe, verilerin ekleneceği belgenin adıdır."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18536,10 +18585,6 @@ msgstr "Parolalar uyuşmuyor"
msgid "Passwords do not match!"
msgstr "Şifreler uyuşmuyor!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Program planlaması için geçmiş tarihlere izin verilmez."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Yapıştır"
@@ -18685,7 +18730,7 @@ msgstr "{0} Kalıcı Olarak Kaydedilecek"
msgid "Permanently delete {0}?"
msgstr "{0} öğesi kalıcı olarak silinecek."
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "İzin Hatası"
@@ -18837,7 +18882,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon No."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "{1} alanına girilen Telefon Numarası {0} geçerli değil."
@@ -19110,10 +19155,6 @@ msgstr "Lütfen Yazıcı Ayarları'ndan yazıcı eşlemesini kaldırın ve tekra
msgid "Please save before attaching."
msgstr "Eklemeden önce lütfen kaydedin."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Lütfen göndermeden önce Bülteni kaydedin"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Lütfen atamadan önce belgeyi kaydedin"
@@ -19146,7 +19187,7 @@ msgstr "Lütfen Minimum Şifre Puanını seçin"
msgid "Please select X and Y fields"
msgstr "Lütfen X ve Y alanlarını seçin"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Lütfen {1} alanı için bir ülke kodu seçin."
@@ -19162,7 +19203,7 @@ msgstr "Lütfen bir dosya veya url seçin"
msgid "Please select a valid csv file with data"
msgstr "Lütfen veri içeren geçerli bir csv dosyası seçin"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Lütfen geçerli bir tarih filtresi seçin"
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Please specify"
msgstr "Lütfen belirtiniz"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Lütfen {0} için geçerli bir üst DocType belirtin"
@@ -19277,10 +19318,6 @@ msgstr "Devam etmeden önce lütfen {} öğesini güncelleyin."
msgid "Please use a valid LDAP search filter"
msgstr "Lütfen geçerli bir LDAP arama filtresi kullanın"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Lütfen E-posta Adresinizi Doğrulayın"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Daha fazla bilgi için lütfen https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key adresini ziyaret edin."
@@ -19374,6 +19411,10 @@ msgstr "{0} tarafından gönderilen gönderiler"
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19433,7 +19474,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Hazır Rapor Kullanıcısı"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Hazırlanan rapor işleme başarısız oldu"
@@ -19462,8 +19503,6 @@ msgstr "Kaydetmek için Enter tuşuna basın."
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19851,7 +19890,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "İlerleme"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Proje"
@@ -19946,14 +19985,7 @@ msgstr "Genel Dosyalar (MB)"
msgid "Publish"
msgstr "Yayınla"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Web Sayfası Olarak Yayınla"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19961,7 +19993,6 @@ msgstr "Web Sayfası Olarak Yayınla"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20136,7 +20167,7 @@ msgstr "Sorgu Raporu"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Sorgu analizi tamamlandı. Önerilen dizinleri kontrol edin."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Sorgu SELECT veya salt okunur WITH türünde olmalıdır."
@@ -20182,7 +20213,6 @@ msgstr "Kuyruk"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "Sıraya alındı"
@@ -20205,19 +20235,11 @@ msgstr "Gönderim için sıraya alındı. İlerlemeyi {0} üzerinden takip edebi
msgid "Queued for backup. You will receive an email with the download link"
msgstr "Yedekleme sıraya alındı. İndirme bağlantısını içeren bir e-posta alacaksınız."
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} e-postaları Kuyruğa alındı"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Kuyruk"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-postalar sıraya alınıyor..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20418,7 +20440,7 @@ msgstr "Alıcı Tarafından Okundu"
msgid "Read mode"
msgstr "Okuma Modu"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Daha fazlasını öğrenmek için belgeleri okuyun"
@@ -21285,7 +21307,7 @@ msgstr "Rapor sınırına ulaşıldı"
msgid "Report timed out."
msgstr "Rapor zaman aşımına uğradı."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Rapor başarıyla güncellendi"
@@ -21306,7 +21328,7 @@ msgstr "{0} Raporu"
msgid "Report {0} deleted"
msgstr "{0} Raporu silindi"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "{0} Raporu devre dışı bırakıldı"
@@ -21639,10 +21661,8 @@ msgstr "İptal Et"
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21853,7 +21873,6 @@ msgstr "Yuvarlama Yöntemi"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21867,7 +21886,6 @@ msgstr "Yuvarlama Yöntemi"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21985,7 +22003,7 @@ msgstr "Kural"
msgid "Rule Conditions"
msgstr "Kural Koşulları"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Bu belge türüne ilişkin kural, rol, izin düzeyi ve eğer sahibiyle birleşimi zaten mevcut."
@@ -22174,11 +22192,11 @@ msgstr "Cumartesi"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22270,32 +22288,17 @@ msgstr "QR Kodunu tarayın ve çıkan kodu girin."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Planla"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Bülten Programı"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Planlanmış Gönderim"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Gönderimi zamanla"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Gönderimi daha sonraki bir zamana planlayın"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Planlandı"
@@ -22329,17 +22332,6 @@ msgstr "Planlanmış Görev Türü"
msgid "Scheduled Jobs Logs"
msgstr "Planlanmış Görev Kayıtları"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Planlanmış Gönderim"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Gönderilmek Üzere Planlandı"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "{0} betiği için planlanan yürütme güncellendi"
@@ -22551,6 +22543,11 @@ msgstr "Arama..."
msgid "Searching ..."
msgstr "Arama Yapılıyor..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22940,9 +22937,7 @@ msgstr "{0} Seçimi"
msgid "Self approval is not allowed"
msgstr "Kendi kendini onaylamaya izin verilmiyor"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Gönder"
@@ -22973,11 +22968,6 @@ msgstr "Uyarı Gönder"
msgid "Send Email Alert"
msgstr "E-Posta Uyarısı Gönder"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "E-Posta Gönder"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23035,38 +23025,16 @@ msgstr "Okundu Bilgisi Gönder"
msgid "Send System Notification"
msgstr "Sistem Bildirimi Gönder"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Test E-postası Gönder"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Tüm Atananlara Gönder"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Abonelikten Ayrılma Bağlantısını Gönder"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Web Görünümü Bağlantısı Gönder"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Hoşgeldiniz E-postası Gönder"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Bir test e-postası gönderin"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Tekrar Gönder"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23114,10 +23082,6 @@ msgstr "Giriş bağlantısını gönder"
msgid "Send me a copy"
msgstr "Bir Kopyasını Bana Gönder"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Şimdi Gönder"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23133,19 +23097,15 @@ msgstr "Abonelikten çıkma mesajını e-posta ile gönder"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Gönderen"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Gönderen E-postası"
@@ -23162,9 +23122,7 @@ msgid "Sender Field should have Email in options"
msgstr "Gönderen Alanı seçeneklerinde E-posta olmalıdır"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Gönderenin Adı"
@@ -23184,18 +23142,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Gönderiliyor"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "E-Posta Gönderiliyor..."
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Gönderiyor..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23203,8 +23152,6 @@ msgstr "Gönderiyor..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Gönderildi"
@@ -23274,7 +23221,7 @@ msgstr "Seri {0} zaten {1} adresinde kullanılıyor"
msgid "Server Action"
msgstr "Sunucu Aksiyonu"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Sunucu Hatası"
@@ -23293,7 +23240,7 @@ msgstr "Sunucu IP"
msgid "Server Script"
msgstr "Sunucu Komut Dosyası"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Sunucu Komut Dosyaları devre dışı. Lütfen bench yapılandırmasından sunucu komut dosyalarını etkinleştirin."
@@ -23332,15 +23279,15 @@ msgstr "Oturum Varsayılanı Ayarları"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Oturum Varsayılanları"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Oturum Varsayılanları Kaydedildi"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Oturum Sonlandırıldı"
@@ -23594,7 +23541,7 @@ msgstr "Sisteminiz Yapılandırılıyor"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24677,7 +24624,6 @@ msgstr "Zaman Aralığı"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24702,7 +24648,6 @@ msgstr "Zaman Aralığı"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24843,8 +24788,6 @@ msgstr "Alt Alan Adı"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24853,7 +24796,6 @@ msgstr "Alt Alan Adı"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25224,7 +25166,7 @@ msgstr "Senkronize Ediliyor"
msgid "Syncing {0} of {1}"
msgstr "Senkronize Ediliyor {0}/{1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Sözdizimi Hatası"
@@ -25531,7 +25473,7 @@ msgstr "Tablo Temizlendi"
msgid "Table updated"
msgstr "Tablo güncellendi"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tablo {0} boş olamaz"
@@ -25658,10 +25600,6 @@ msgstr "Test İş ID"
msgid "Test Spanish"
msgstr "İspanyolca Test"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Test e-postası {0} adresine gönderildi"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Klasoru"
@@ -25729,10 +25667,6 @@ msgstr "E-postanız için teşekkür ederiz"
msgid "Thank you for your feedback!"
msgstr "Geri bildirim için teşekkürler!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Güncellemelerimize abone olmak konusundaki ilginiz için teşekkür ederiz"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Mesajınız için teşekkürler"
@@ -25927,7 +25861,7 @@ msgstr "Şifre sıfırlama bağlantısının süresi doldu"
msgid "The reset password link has either been used before or is invalid"
msgstr "Şifre sıfırlama bağlantısı daha önce kullanılmış veya geçersiz"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Aradığınız kaynak mevcut değil"
@@ -25939,7 +25873,7 @@ msgstr "{0} rolü özel bir rol olmalıdır."
msgid "The selected document {0} is not a {1}."
msgstr "Seçilen belge {0} bir {1} değildir."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem güncelleniyor. Lütfen birkaç dakika sonra tekrar yenileyin."
@@ -26092,7 +26026,7 @@ msgstr "Üçüncü Taraf Kimlik Doğrulama"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Bu Para Birimi aktif değil. İşlemlerde kullanmak için etkinleştirin."
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Bu Kanban Panosu özel olacak"
@@ -26116,7 +26050,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Bu eylem geri döndürülemez. Devam etmek istiyor musunuz?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Bu eylem yalnızca {} için izin verilir"
@@ -26276,14 +26210,6 @@ msgstr ""
msgid "This month"
msgstr "Bu Ay"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Bu bültenin {0} adresine gönderilmesi planlanmaktadır."
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Bu bültenin daha sonraki bir tarihte gönderilmesi planlanmıştı. Şimdi göndermek istediğinizden emin misiniz?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek kadar büyüktür, bunun yerine bu raporu {1} adresinde bulabilirsiniz."
@@ -26396,7 +26322,6 @@ msgstr "Perşembe"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Zaman"
@@ -26622,10 +26547,8 @@ msgid "Title of the page"
msgstr "Sayfa başlığı"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Kime"
@@ -26909,7 +26832,7 @@ msgstr "Sağ Üst"
msgid "Topic"
msgstr "Konu"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26937,16 +26860,8 @@ msgstr "Toplam Görüntüler"
msgid "Total Outgoing Emails"
msgstr "Toplam Giden E-postalar"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Toplam Alıcılar"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Toplam Abone Sayısı"
@@ -26955,11 +26870,6 @@ msgstr "Toplam Abone Sayısı"
msgid "Total Users"
msgstr "Toplam Kullanıcı"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Toplam Görüntüleme"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27359,23 +27269,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "Slayt gösterisi görüntüsüne tıklandığında gidilecek URL"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM Kaynağı"
@@ -27425,7 +27329,7 @@ msgstr "{0} için dosya biçimi yazılamıyor"
msgid "Unassign Condition"
msgstr "Koşulu Kaldır"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27441,6 +27345,10 @@ msgstr "Geri Al"
msgid "Undo last action"
msgstr "Son işlemi geri al"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27473,7 +27381,7 @@ msgstr "Bilinmiyor"
msgid "Unknown Column: {0}"
msgstr "Bilinmeyen Sütun: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Bilinmeyen Yuvarlama Yöntemi: {}"
@@ -27506,7 +27414,7 @@ msgstr "Okunmamış"
msgid "Unread Notification Sent"
msgstr "Okunmamış Bildirim Gönderildi"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Güvenli olmayan SQL sorgusu"
@@ -27520,7 +27428,7 @@ msgstr "Tüm Seçimi Kaldır"
msgid "Unshared"
msgstr "Paylaşılmamış"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Abonelikten Çık"
@@ -27544,6 +27452,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Kaydolmamış"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Başlıksız Sütun"
@@ -27666,7 +27579,7 @@ msgstr "Yeni Bir Sürüme Güncellendi 🎉"
msgid "Updated successfully"
msgstr "Başarıyla Güncellendi"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Güncelleniyor"
@@ -28401,7 +28314,7 @@ msgstr "Değer çok büyük"
msgid "Value {0} missing for {1}"
msgstr "{1} için {0} değeri eksik"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Değer {0} geçerli süre biçiminde olmalıdır: d h m s"
@@ -28826,7 +28739,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28834,9 +28746,7 @@ msgid "Website"
msgstr "Website"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Web Sitesi Analitiği"
@@ -29272,7 +29182,7 @@ msgstr "İş akışı başarıyla güncellendi"
msgid "Workspace"
msgstr "Çalışma Alanı"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Çalışma Alanı {0} mevcut değil"
@@ -29495,11 +29405,11 @@ msgstr "Başka bir kullanıcı gibi davranıyorsunuz."
msgid "You are not allowed to access this resource"
msgstr "Bu kaynağa erişim izniniz yok"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29522,7 +29432,7 @@ msgstr "Raporu düzenlemenize izin verilmiyor."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor"
@@ -29550,7 +29460,7 @@ msgstr "Giriş yapmadan bu sayfaya erişmenize izin verilmiyor."
msgid "You are not permitted to access this page."
msgstr "Bu sayfaya erişim yetkiniz bulunmamaktadır."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29555,7 @@ msgstr "Aşağıdakilerden birini seçebilirsiniz,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Aynı ağdan birden fazla kullanıcı giriş yapacaksa buraya yüksek bir değer ayarlayabilirsiniz."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz."
@@ -29722,11 +29632,15 @@ msgstr "{} için Okuma veya Seçme İzniniz yok"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Bu kaynağa erişmek için yeterli izniniz yok. Erişim için lütfen yöneticinizle iletişime geçin."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "İşlemi tamamlamak için yeterli izniniz yok"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29734,7 +29648,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr "Bağlantılı tüm belgeleri iptal etme yetkiniz yok."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Rapora erişiminiz yok: {0}"
@@ -29742,11 +29656,11 @@ msgstr "Rapora erişiminiz yok: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "{0} isimli DocType erişimi için izniniz yok."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Bu dosyaya erişmek için gerekli izinlere sahip değilsiniz"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "{0} Raporunu almak için izniniz yok."
@@ -29839,7 +29753,7 @@ msgstr "Bu sayfaya erişebilmek için sistem kullanıcısı olmanız gerekmekted
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Standart Web Formlarını düzenlemeniz için geliştirici modunda olmanız gerekiyor"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Yedeklemelere erişmek için oturum açmanız ve Sistem Yöneticisi yetkilerine sahip olmanız gerekir."
@@ -30005,7 +29919,7 @@ msgstr "E-posta alt bilgisi için kuruluşunuzun adı ve adresi."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Sorgunuz alındı. Kısa süre içinde geri dönüş yapacağız. Ek bilgileriniz varsa, lütfen bu e-postayı yanıtlayın."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Oturumunuzun süresi doldu, devam etmek için lütfen tekrar giriş yapın."
@@ -30017,7 +29931,7 @@ msgstr "Siteniz bakımda veya güncelleniyor."
msgid "Your verification code is {0}"
msgstr "Doğrulama kodunuz {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Sıfır"
@@ -30064,7 +29978,7 @@ msgstr ""
msgid "amend"
msgstr "değiştir"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "ve"
@@ -30121,7 +30035,7 @@ msgstr "oluştur"
msgid "cyan"
msgstr "açık Mavi"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30236,7 +30150,7 @@ msgstr "e-posta"
msgid "email inbox"
msgstr "e-posta gelen kutusu"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "boş"
@@ -30288,7 +30202,7 @@ msgstr "gri"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip PATH içinde bulunamadı! Yedek almak için bu gereklidir."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30322,7 +30236,7 @@ msgstr "eposta@ornek.com.tr"
msgid "just now"
msgstr "Şimdi"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "etiket"
@@ -30362,7 +30276,7 @@ msgstr ""
msgid "long"
msgstr "uzun"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30552,7 +30466,7 @@ msgstr "yanıt"
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30887,7 +30801,7 @@ msgstr "{0} zaten aboneliği iptal etti"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0}, zaten {1} {2} için abonelikten çıkmış."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} ve {1}"
@@ -30993,6 +30907,10 @@ msgstr "{1} satırında {0} mevcut değil"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} alanı {1} içinde benzersiz olarak ayarlanamaz, çünkü benzersiz olmayan mevcut değerler var"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} biçimi bu sütundaki değerlerden belirlenemedi. Varsayılan {1}."
@@ -31013,10 +30931,6 @@ msgstr "{0} s"
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} başarıyla E-posta Grubuna eklendi."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} hesabı {1} {2} ile ilgili aboneliği sonlandırıldı."
@@ -31087,6 +31001,10 @@ msgstr "{0} {1} gibi"
msgid "{0} is mandatory"
msgstr "{0} yaşam alanı"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31108,7 +31026,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} Dinamik Bağlantı için geçerli bir DocType değil"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} geçerli bir E-Posta Adresi değil."
@@ -31116,11 +31034,11 @@ msgstr "{0} geçerli bir E-Posta Adresi değil."
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} geçerli bir ISO 3166 ALPHA-2 kodu değil."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} geçerli bir İsim değil"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} geçerli bir Telefon Numarası değil"
@@ -31128,11 +31046,11 @@ msgstr "{0} geçerli bir Telefon Numarası değil"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} geçerli bir İş Akışı Durumu değil. Lütfen İş Akışınızı güncelleyin ve tekrar deneyin."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0}, {1} için geçerli bir üst DocType değildir."
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}, {1} için geçerli bir üst alan değil"
@@ -31220,23 +31138,23 @@ msgstr "{0} dakika önce"
msgid "{0} months ago"
msgstr "{0} ay önce"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} '{1}' ile başlamalıdır"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} '{1}' değerine eşit olmalıdır"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} hiçbiri {1} olmamalıdır"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31248,7 +31166,7 @@ msgstr "{0} önce ayarlanmalıdır"
msgid "{0} must be unique"
msgstr "{0} benzersiz olmalıdır"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31277,16 +31195,12 @@ msgstr "{0}/{1} Kayıt Listeleniyor"
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} / {1} gönderildi"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "Sadece {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} veya {1}"
@@ -31323,11 +31237,11 @@ msgstr "{0} atamalarını kaldırdı."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} rolünün herhangi bir DocType üzerinde izni yok."
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} satır #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} başarıyla kaydedildi"
@@ -31439,7 +31353,7 @@ msgstr "{0} {1} mevcut değil, birleştirmek için yeni bir hedef seçin"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} önceden kaydedilmiş dökümanlarla bağlantılı: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} bulunamadı."
@@ -31592,11 +31506,11 @@ msgstr ""
msgid "{} Complete"
msgstr "{} Tamamlandı"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Muhtemelen geçersiz python kodu.
{}"
@@ -31618,7 +31532,7 @@ msgstr "{} alanı boş olamaz."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} devre dışı bırakılmıştır. Yalnızca {} işaretliyse etkinleştirilebilir."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} geçerli bir tarih dizesi değil."
diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po
index ffa74f3f7b..4f92cabf60 100644
--- a/frappe/locale/vi.po
+++ b/frappe/locale/vi.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po
index b47c542771..b328bc1df3 100644
--- a/frappe/locale/zh.po
+++ b/frappe/locale/zh.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "第{1}行类型{0}不允许显示在'列表视图'"
msgid "'Recipients' not specified"
msgstr "未指定'收件人'"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' 不是有效的URL"
@@ -1035,7 +1035,7 @@ msgstr "操作/路由"
msgid "Action Complete"
msgstr "操作完成"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "操作失败"
@@ -1674,6 +1674,14 @@ msgstr "警报"
msgid "Alerts and Notifications"
msgstr "警报与通知"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "数值对齐"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "不允许修订"
msgid "Amendment naming rules updated."
msgstr "修订命名规则已更新。"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "设置会话默认值时发生错误"
@@ -2278,7 +2285,7 @@ msgstr "应用名称"
msgid "App not found for module: {0}"
msgstr "未找到模块{0}对应的应用"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "应用{0}未安装"
@@ -2492,10 +2499,6 @@ msgstr "确定要重置所有自定义设置吗?"
msgid "Are you sure you want to save this document?"
msgstr "确定要保存此文档吗?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "确定要立即发送此新闻稿吗?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "附加到名称必须是字符串或整数"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "附件"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "附件已移除"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "正在尝试启动QZ Tray..."
msgid "Attribution"
msgstr "归属"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "受众"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "背景图像"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "后台作业"
@@ -3959,9 +3952,7 @@ msgstr "回调标题"
msgid "Camera"
msgstr "摄像头"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "全部取消"
msgid "Cancel All Documents"
msgstr "取消所有文档"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "取消调度"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "类别描述"
msgid "Category Name"
msgstr "类别名称"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "分"
@@ -4513,10 +4500,6 @@ msgstr "检查"
msgid "Check Request URL"
msgstr "检查请求URL"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "检查损坏链接"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "勾选要选择的列,拖拽调整顺序。"
@@ -4540,10 +4523,6 @@ msgstr "勾选此项将强制用户在保存前选择序列。若勾选则无默
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "正在检查损坏链接..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "正在检查,请稍候"
@@ -4590,6 +4569,10 @@ msgstr "字段{1}的子表{0}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "子表在其他文档类型中显示为网格"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "选择现有卡片或创建新卡片"
@@ -4679,10 +4662,6 @@ msgstr "点击'自定义'添加第一个组件"
msgid "Click here"
msgstr "点击此处"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "点击此处验证"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "点击文件进行选择。"
@@ -5024,7 +5003,7 @@ msgstr "列"
msgid "Columns / Fields"
msgstr "列/字段"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "基于的列"
@@ -5346,17 +5325,12 @@ msgstr "确认密码"
msgid "Confirm Request"
msgstr "确认请求"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "确认您的邮箱"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "确认邮件模板"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "已确认"
@@ -5487,8 +5461,6 @@ msgstr "包含{0}个安全修复"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "包含{0}个安全修复"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "内容(Markdown)"
msgid "Content Hash"
msgstr "内容哈希"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "未找到{0}"
msgid "Could not map column {0} to field {1}"
msgstr "无法映射列{0}到字段{1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "无法启动:"
@@ -5685,7 +5658,7 @@ msgstr "计数器"
msgid "Country"
msgstr "国家"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "需要国家代码"
@@ -5816,11 +5789,6 @@ msgstr "新建{0}"
msgid "Create a {0} Account"
msgstr "创建{0}账户"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "定期创建并发送邮件给特定订阅者群组。"
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "创建或编辑打印格式"
@@ -6169,6 +6137,10 @@ msgstr "自定义翻译"
msgid "Custom field renamed to {0} successfully."
msgstr "自定义字段成功重命名为{0}。"
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "自定义仪表板"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "自定义表单"
@@ -6519,7 +6491,6 @@ msgstr "数据库版本"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "日"
msgid "Day of Week"
msgstr "星期几"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "天数"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "延迟"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "工作台主题"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7918,7 +7896,7 @@ msgid "Document Types and Permissions"
msgstr "文档类型与权限"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "文档已解锁"
@@ -8536,7 +8514,6 @@ msgstr "元素选择器"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8630,11 +8607,9 @@ msgstr "邮件页脚地址"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "电子邮件组"
@@ -8707,18 +8682,11 @@ msgstr "电子邮件重试次数限制"
msgid "Email Rule"
msgstr "电子邮件规则"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "已发送电子邮件"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "电子邮件发送时间"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8825,10 +8793,18 @@ msgstr "电子邮件将随下次工作流操作一并发送"
msgid "Embed code copied"
msgstr "嵌入代码已复制"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "空列"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9293,6 +9269,14 @@ msgstr "通知错误"
msgid "Error in print format on line {0}: {1}"
msgstr "打印格式第{0}行错误:{1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "连接电子邮件账户{0}时出错"
@@ -9489,6 +9473,10 @@ msgstr "展开"
msgid "Expand All"
msgstr "全部展开"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "实验性功能"
@@ -10020,7 +10008,7 @@ msgstr "字段名'{0}'与{3}中的{1} {2}冲突"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "必须存在名为{0}的字段才能启用自动命名"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "字段名限制为64个字符({0})"
@@ -10036,7 +10024,7 @@ msgstr "将作为此链接字段文档类型的字段名。"
msgid "Fieldname {0} appears multiple times"
msgstr "字段名{0}重复出现"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "字段名{0}不能包含{1}等特殊字符"
@@ -10088,6 +10076,10 @@ msgstr "文件必须设置`file_name`或`file_url`字段"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "启用as_list时字段必须为列表或元组"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10253,6 +10245,14 @@ msgstr "过滤器名称"
msgid "Filter Values"
msgstr "过滤值"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "过滤..."
@@ -10496,10 +10496,6 @@ msgstr "以下字段缺少值"
msgid "Following fields have missing values:"
msgstr "以下字段缺少值:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "邮件内容中存在失效链接:{0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10917,10 +10913,8 @@ msgid "Friday"
msgstr "星期五"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "从"
@@ -11001,10 +10995,14 @@ msgstr "函数"
msgid "Function Based On"
msgstr "函数依据"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "函数{0}未在白名单中"
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "后续节点只能在'组'类型节点下创建"
@@ -11486,6 +11484,10 @@ msgstr "分组类型"
msgid "Group By field is required to create a dashboard chart"
msgstr "创建仪表板图表需要分组依据字段"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "组节点"
@@ -11534,7 +11536,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11548,7 +11549,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12057,6 +12057,11 @@ msgstr "按小时维护"
msgid "Hourly rate limit for generating password reset links"
msgstr "密码重置链接生成速率限制(每小时)"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "小时数"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12822,11 +12827,11 @@ msgstr "用户名或密码错误"
msgid "Incorrect Verification code"
msgstr "验证码错误"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "第{0}行值错误:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "错误值:"
@@ -12978,11 +12983,11 @@ msgstr "操作指南"
msgid "Instructions Emailed"
msgstr "已邮件发送操作指南"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "{0}权限级别不足"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "{0}权限不足"
@@ -13132,7 +13137,7 @@ msgstr "无效条件:{}"
msgid "Invalid Credentials"
msgstr "凭证无效"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "日期无效"
@@ -13140,7 +13145,7 @@ msgstr "日期无效"
msgid "Invalid DocType"
msgstr "文档类型无效"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "无效文档类型:{0}"
@@ -13152,6 +13157,11 @@ msgstr "字段名无效"
msgid "Invalid File URL"
msgstr "文件URL无效"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "{1}类型字段{0}的过滤格式无效,请使用字段过滤图标正确设置"
@@ -13216,7 +13226,7 @@ msgstr "参数无效"
msgid "Invalid Password"
msgstr "密码无效"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "电话号码无效"
@@ -13260,10 +13270,38 @@ msgstr "Webhook密钥无效"
msgid "Invalid aggregate function"
msgstr "无效聚合函数"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "无效列"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "文档状态无效"
@@ -13276,10 +13314,26 @@ msgstr "过滤器{0}中的表达式无效"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "过滤器{0}({1})中的表达式无效"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "字段名{0}无效"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "自动命名中的字段名'{0}'无效"
@@ -13288,11 +13342,26 @@ msgstr "自动命名中的字段名'{0}'无效"
msgid "Invalid file path: {0}"
msgstr "文件路径无效:{0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "无效过滤器:{0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13314,10 +13383,22 @@ msgstr "导入内容无效或损坏"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "第{}行重定向正则表达式无效:{}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "请求参数无效"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "导入模板文件无效"
@@ -13759,11 +13840,11 @@ msgstr "看板面板列"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "看板面板名称"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "看板设置"
@@ -14475,6 +14556,10 @@ msgstr "点赞数"
msgid "Limit"
msgstr "限制"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14738,6 +14823,7 @@ msgid "Load Balancing"
msgstr "负载均衡"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15256,11 +15342,9 @@ msgstr "标记为垃圾邮件"
msgid "Mark as Unread"
msgstr "标记为未读"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15449,7 +15533,6 @@ msgstr "仅支持组到组或叶子节点到叶子节点合并"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15462,7 +15545,6 @@ msgstr "仅支持组到组或叶子节点到叶子节点合并"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15477,16 +15559,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "消息"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "消息(HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "消息(Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15610,7 +15682,7 @@ msgstr "SEO元标题"
msgid "Method"
msgstr "方法"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "方法不允许"
@@ -15660,6 +15732,11 @@ msgstr "密码最低强度"
msgid "Minor"
msgstr "次要"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "分钟数"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16055,7 +16132,7 @@ msgstr "必须用'()'括起来并包含'{0}'作为用户/登录名的占位符
msgid "Must be of type \"Attach Image\""
msgstr "必须为“附加图片”类型"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "需具备报表权限才能访问该报表"
@@ -16245,6 +16322,10 @@ msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作
msgid "Negative Value"
msgstr "负值"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "嵌套集合错误,请联系管理员"
@@ -16327,7 +16408,7 @@ msgstr "新建事件"
msgid "New Folder"
msgstr "新建文件夹"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "新建看板"
@@ -16471,48 +16552,13 @@ msgstr "以下应用有新版本{}发布"
msgid "Newly created user {0} has no roles enabled."
msgstr "新创建用户{0}未启用任何角色"
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "简讯"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "简讯附件"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "简讯邮件组"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "简讯管理员"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "简讯已发送"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "简讯需发布才能在邮件中发送网页版链接"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "简讯至少需要一个收件人"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "简讯列表"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16774,7 +16820,7 @@ msgstr "未找到结果"
msgid "No Roles Specified"
msgstr "未指定角色"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "未找到选择字段"
@@ -16802,10 +16848,6 @@ msgstr "今日无提醒"
msgid "No automatic optimization suggestions available."
msgstr "暂无自动优化建议"
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "邮件内容中未发现失效链接"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "文档无变更"
@@ -16842,7 +16884,7 @@ msgstr "尚未添加联系人"
msgid "No contacts linked to document"
msgstr "文档未关联联系人"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "无数据可导出"
@@ -16862,7 +16904,7 @@ msgstr "用户未关联邮件账户,请通过 用户 > 收件箱 添加"
msgid "No failed logs"
msgstr "无失败日志"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "没有找到可用作看板的列的字段。使用自定义表单添加类型“选择”的自定义字段。"
@@ -16921,7 +16963,7 @@ msgstr "行数(最多500)"
msgid "No of Sent SMS"
msgstr "已发送短信数量"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "无{0}权限"
@@ -17049,7 +17091,7 @@ msgstr "非下级节点"
msgid "Not Equals"
msgstr "不等于"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "未找到"
@@ -17075,7 +17117,7 @@ msgstr "未关联到任何记录"
msgid "Not Nullable"
msgstr "不可为空"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17084,7 +17126,7 @@ msgstr "不可为空"
msgid "Not Permitted"
msgstr "未经许可"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "无权限读取{0}"
@@ -17112,7 +17154,6 @@ msgstr "未读"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "未发送"
@@ -17145,7 +17186,7 @@ msgstr "无效用户"
msgid "Not active"
msgstr "未激活"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "{0}不允许:{1}"
@@ -17579,6 +17620,10 @@ msgstr "X轴偏移"
msgid "Offset Y"
msgstr "Y轴偏移"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "旧密码"
@@ -17752,7 +17797,7 @@ msgstr "仅工作区管理员可编辑公共工作区"
msgid "Only allowed to export customizations in developer mode"
msgstr "仅开发者模式下允许导出自定义项"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "仅草稿文档可丢弃"
@@ -17924,7 +17969,7 @@ msgstr "已打开"
msgid "Operation"
msgstr "操作"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "运算符必须是{0}之一"
@@ -18023,6 +18068,10 @@ msgstr "橙色"
msgid "Order"
msgstr "顺序"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18418,7 +18467,7 @@ msgstr "父项是数据将被添加到的文档名称"
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "禁止父子层级互相嵌套的分组方式。"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "{0}中未指定父字段:{1}"
@@ -18540,10 +18589,6 @@ msgstr "密码不匹配"
msgid "Passwords do not match!"
msgstr "密码不匹配!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "计划调度不允许使用过去日期"
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "粘贴"
@@ -18689,7 +18734,7 @@ msgstr "永久提交{0}?"
msgid "Permanently delete {0}?"
msgstr "永久删除{0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "权限错误"
@@ -18841,7 +18886,7 @@ msgstr "电话"
msgid "Phone No."
msgstr "电话号码"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "字段{1}中设置的电话号码{0}无效"
@@ -19114,10 +19159,6 @@ msgstr "请在打印机设置中移除打印机映射后重试"
msgid "Please save before attaching."
msgstr "附加前请先保存"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "发送前请先保存新闻稿"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "分配前请先保存文档"
@@ -19150,7 +19191,7 @@ msgstr "请选择最低密码强度"
msgid "Please select X and Y fields"
msgstr "请选择X和Y字段"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "请为字段{1}选择国家代码"
@@ -19166,7 +19207,7 @@ msgstr "请选择文件或URL"
msgid "Please select a valid csv file with data"
msgstr "请选择包含数据的有效CSV文件"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "请选择有效日期过滤器"
@@ -19244,7 +19285,7 @@ msgstr "请通过工具 > 邮箱账户配置默认发件账户"
msgid "Please specify"
msgstr "请具体说明"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "请为{0}指定有效的父文档类型"
@@ -19281,10 +19322,6 @@ msgstr "继续前请更新{}"
msgid "Please use a valid LDAP search filter"
msgstr "请使用有效的LDAP搜索过滤器"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "请验证邮箱地址"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "更多信息请访问https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key"
@@ -19378,6 +19415,10 @@ msgstr "{0}发布的文章"
msgid "Posts filed under {0}"
msgstr "归类于{0}的文章"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19437,7 +19478,7 @@ msgstr "预制报表分析"
msgid "Prepared Report User"
msgstr "预制报表用户"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "预制报表渲染失败"
@@ -19466,8 +19507,6 @@ msgstr "按Enter键保存"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19855,7 +19894,7 @@ msgstr "个人资料"
msgid "Progress"
msgstr "进度"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "项目"
@@ -19950,14 +19989,7 @@ msgstr "公开文件(MB)"
msgid "Publish"
msgstr "发布"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "发布为网页"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19965,7 +19997,6 @@ msgstr "发布为网页"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20140,7 +20171,7 @@ msgstr "查询报表"
msgid "Query analysis complete. Check suggested indexes."
msgstr "查询分析完成,请检查建议索引"
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "查询必须为SELECT或只读WITH类型"
@@ -20186,7 +20217,6 @@ msgstr "队列"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "已排队"
@@ -20209,19 +20239,11 @@ msgstr "已加入提交队列,可通过{0}跟踪进度"
msgid "Queued for backup. You will receive an email with the download link"
msgstr "已加入备份队列,下载链接将通过邮件发送"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "已排队{0}封邮件"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "队列列表"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "正在加入邮件队列..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "正在将{0}加入提交队列"
@@ -20422,7 +20444,7 @@ msgstr "收件人阅读时间"
msgid "Read mode"
msgstr "阅读模式"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "查阅文档以了解更多"
@@ -21289,7 +21311,7 @@ msgstr "达到报表限制"
msgid "Report timed out."
msgstr "报表超时"
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "报表更新成功"
@@ -21310,7 +21332,7 @@ msgstr "报表{0}"
msgid "Report {0} deleted"
msgstr "报表{0}已删除"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "报表{0}已禁用"
@@ -21643,10 +21665,8 @@ msgstr "撤销"
msgid "Revoked"
msgstr "已撤销"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21857,7 +21877,6 @@ msgstr "舍入方法"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21871,7 +21890,6 @@ msgstr "舍入方法"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21989,7 +22007,7 @@ msgstr "规则"
msgid "Rule Conditions"
msgstr "规则条件"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "该文档类型、角色、权限层级和所有者条件的组合规则已存在。"
@@ -22178,11 +22196,11 @@ msgstr "周六"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22274,32 +22292,17 @@ msgstr "扫描二维码并输入显示的验证码。"
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "计划"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "计划发送新闻稿"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "计划发送时间"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "计划发送"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "稍后计划发送"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "已计划"
@@ -22333,17 +22336,6 @@ msgstr "计划作业类型"
msgid "Scheduled Jobs Logs"
msgstr "计划作业日志"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "计划发送"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "计划发送"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "脚本{0}的计划执行已更新"
@@ -22555,6 +22547,11 @@ msgstr "搜索..."
msgid "Searching ..."
msgstr "正在搜索..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22944,9 +22941,7 @@ msgstr "选择{0}"
msgid "Self approval is not allowed"
msgstr "不允许自我审批"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "发送"
@@ -22977,11 +22972,6 @@ msgstr "发送警报于"
msgid "Send Email Alert"
msgstr "发送邮件提醒"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "发送邮件于"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23039,38 +23029,16 @@ msgstr "发送已读回执"
msgid "Send System Notification"
msgstr "发送系统通知"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "发送测试邮件"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "发送给所有负责人"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "发送退订链接"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "发送网页视图链接"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "发送欢迎邮件"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "发送测试邮件"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "重新发送"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23118,10 +23086,6 @@ msgstr "发送登录链接"
msgid "Send me a copy"
msgstr "发送副本给我"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "立即发送"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23137,19 +23101,15 @@ msgstr "在邮件中包含退订信息"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "发件人"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "发件人邮箱"
@@ -23166,9 +23126,7 @@ msgid "Sender Field should have Email in options"
msgstr "发件人字段选项中应包含邮箱"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "发件人名称"
@@ -23188,18 +23146,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "正在发送"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "发送邮件中"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "发送中..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23207,8 +23156,6 @@ msgstr "发送中..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "已发送"
@@ -23278,7 +23225,7 @@ msgstr "序列{0}已在{1}中使用"
msgid "Server Action"
msgstr "服务器操作"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "服务器错误"
@@ -23297,7 +23244,7 @@ msgstr "服务器IP"
msgid "Server Script"
msgstr "服务器脚本"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "服务器脚本已禁用。请从bench配置启用服务器脚本"
@@ -23336,15 +23283,15 @@ msgstr "会话默认设置"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "会话默认值"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "会话默认值已保存"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "会话已过期"
@@ -23598,7 +23545,7 @@ msgstr "系统设置中"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24681,7 +24628,6 @@ msgstr "统计时间间隔"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24706,7 +24652,6 @@ msgstr "统计时间间隔"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24847,8 +24792,6 @@ msgstr "子域名"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24857,7 +24800,6 @@ msgstr "子域名"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25228,7 +25170,7 @@ msgstr "同步中"
msgid "Syncing {0} of {1}"
msgstr "正在同步{1}中的{0}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "语法错误"
@@ -25535,7 +25477,7 @@ msgstr "表格已截断"
msgid "Table updated"
msgstr "表格已更新"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "表{0}不能为空"
@@ -25662,10 +25604,6 @@ msgstr "测试任务ID"
msgid "Test Spanish"
msgstr "测试西班牙语"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "测试邮件已发送至{0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "测试文件夹"
@@ -25733,10 +25671,6 @@ msgstr "感谢您的邮件"
msgid "Thank you for your feedback!"
msgstr "感谢您的反馈!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "感谢您订阅我们的更新"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "感谢您的留言"
@@ -25931,7 +25865,7 @@ msgstr "重置密码链接已过期"
msgid "The reset password link has either been used before or is invalid"
msgstr "重置密码链接已被使用或无效"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "您请求的资源不可用"
@@ -25943,7 +25877,7 @@ msgstr "角色{0}应为自定义角色。"
msgid "The selected document {0} is not a {1}."
msgstr "所选文档{0}不是{1}类型。"
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "系统正在更新。请稍后刷新页面。"
@@ -26096,7 +26030,7 @@ msgstr "第三方认证"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "此货币已禁用。启用后方可用于交易"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "此看板将设为私有"
@@ -26120,7 +26054,7 @@ msgstr "本年"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "此操作不可逆。是否继续?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "此操作仅允许{}执行"
@@ -26284,14 +26218,6 @@ msgstr "可能分多页打印"
msgid "This month"
msgstr "本月"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "此简讯计划于{0}发送"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "此简讯原计划稍后发送。确定要立即发送吗?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。"
@@ -26404,7 +26330,6 @@ msgstr "星期四"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "时间"
@@ -26630,10 +26555,8 @@ msgid "Title of the page"
msgstr "页面标题"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "至"
@@ -26916,7 +26839,7 @@ msgstr "右上角"
msgid "Topic"
msgstr "主题"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26944,16 +26867,8 @@ msgstr "总图片数"
msgid "Total Outgoing Emails"
msgstr "总发送邮件数"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "总收件人数"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "总订阅人数"
@@ -26962,11 +26877,6 @@ msgstr "总订阅人数"
msgid "Total Users"
msgstr "总用户数"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "总浏览量"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27366,23 +27276,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "点击轮播图片后跳转的URL"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM活动"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM媒介"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM来源"
@@ -27432,7 +27336,7 @@ msgstr "无法写入{0}的文件格式"
msgid "Unassign Condition"
msgstr "取消分配条件"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "未捕获异常"
@@ -27448,6 +27352,10 @@ msgstr "撤销"
msgid "Undo last action"
msgstr "撤销上一步操作"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27480,7 +27388,7 @@ msgstr "未知"
msgid "Unknown Column: {0}"
msgstr "未知列:{0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "未知舍入方法:{}"
@@ -27513,7 +27421,7 @@ msgstr "未读"
msgid "Unread Notification Sent"
msgstr "已发送未读通知"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "不安全的SQL查询"
@@ -27527,7 +27435,7 @@ msgstr "取消全选"
msgid "Unshared"
msgstr "取消共享"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "退订"
@@ -27551,6 +27459,11 @@ msgstr "退订参数"
msgid "Unsubscribed"
msgstr "已退订"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "未命名列"
@@ -27673,7 +27586,7 @@ msgstr "已更新至新版本🎉"
msgid "Updated successfully"
msgstr "更新成功"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "更新中"
@@ -28408,7 +28321,7 @@ msgstr "值过大"
msgid "Value {0} missing for {1}"
msgstr "{1}缺少值{0}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "值{0}必须符合有效时长格式:d h m s"
@@ -28833,7 +28746,6 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28841,9 +28753,7 @@ msgid "Website"
msgstr "网站"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "网站分析"
@@ -29279,7 +29189,7 @@ msgstr "工作流更新成功"
msgid "Workspace"
msgstr "工作区"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "工作区{0}不存在"
@@ -29502,11 +29412,11 @@ msgstr "您正在模拟其他用户"
msgid "You are not allowed to access this resource"
msgstr "您无权访问此资源"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "您无权访问{0}记录,因其通过字段{3}关联到{1}'{2}'"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "您无权访问{0}记录,因其在第{3}行字段{4}关联到{1}'{2}'"
@@ -29529,7 +29439,7 @@ msgstr "您无权编辑此报表"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "您无权导出{}文档类型"
@@ -29557,7 +29467,7 @@ msgstr "未登录状态下无权访问此页面"
msgid "You are not permitted to access this page."
msgstr "您无权访问此页面"
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29652,7 +29562,7 @@ msgstr "可从以下选项中选择:"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "若多用户同网络登录可设置较高值"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "可尝试调整报表过滤器"
@@ -29729,11 +29639,15 @@ msgstr "您对{}无读取或选择权限"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "权限不足,请联系管理员获取访问权限"
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "权限不足无法完成操作"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "您无权访问{0}:{1}。"
@@ -29741,7 +29655,7 @@ msgstr "您无权访问{0}:{1}。"
msgid "You do not have permissions to cancel all linked documents."
msgstr "您无权取消所有关联文档"
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "您无权访问报表:{0}"
@@ -29749,11 +29663,11 @@ msgstr "您无权访问报表:{0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "您无权访问{0}文档类型"
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "您无权访问此文件"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "您无权获取{0}的报表"
@@ -29846,7 +29760,7 @@ msgstr "您需要是系统用户才能访问此页面"
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "您需要处于开发者模式才能编辑标准Web表单"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "您需要登录并具有系统管理员角色才能访问备份"
@@ -30012,7 +29926,7 @@ msgstr "用于邮件页脚的组织名称和地址"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "我们已收到您的查询。我们将尽快回复。如有其他信息,请回复此邮件"
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "您的会话已过期,请重新登录以继续"
@@ -30024,7 +29938,7 @@ msgstr "您的站点正在进行维护或更新"
msgid "Your verification code is {0}"
msgstr "您的验证码是{0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "零"
@@ -30071,7 +29985,7 @@ msgstr "插入后"
msgid "amend"
msgstr "修订"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "和"
@@ -30128,7 +30042,7 @@ msgstr "创建"
msgid "cyan"
msgstr "青色"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30243,7 +30157,7 @@ msgstr "电子邮件"
msgid "email inbox"
msgstr "电子邮件收件箱"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "空"
@@ -30295,7 +30209,7 @@ msgstr "灰色"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "在PATH中找不到gzip!这是进行备份的必要条件"
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30329,7 +30243,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "刚刚"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "标签"
@@ -30369,7 +30283,7 @@ msgstr "需要登录"
msgid "long"
msgstr "长整型"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30559,7 +30473,7 @@ msgstr "响应"
msgid "restored {0} as {1}"
msgstr "已将{0}恢复为{1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30894,7 +30808,7 @@ msgstr "{0}已退订"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0}已为{1} {2}退订"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0}和{1}"
@@ -31000,6 +30914,10 @@ msgstr "第{1}行不存在{0}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{1}中的{0}字段存在重复值,不能设置为唯一"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "无法根据此列值确定{0}格式,默认使用{1}"
@@ -31020,10 +30938,6 @@ msgstr "{0}小时"
msgid "{0} has already assigned default value for {1}."
msgstr "{0}已为{1}分配默认值"
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0}已成功加入邮件组"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0}已退出{1} {2}的对话"
@@ -31094,6 +31008,10 @@ msgstr "{0}类似于{1}"
msgid "{0} is mandatory"
msgstr "{0}是必填项"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0}不是文档类型{1}的字段"
@@ -31115,7 +31033,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0}不是有效的动态链接文档类型"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0}不是有效的电子邮箱地址"
@@ -31123,11 +31041,11 @@ msgstr "{0}不是有效的电子邮箱地址"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0}不是有效的ISO 3166 ALPHA-2代码"
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0}不是有效的名称"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0}不是有效的电话号码"
@@ -31135,11 +31053,11 @@ msgstr "{0}不是有效的电话号码"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0}不是有效的工作流状态。请更新工作流后重试"
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0}不是{1}的有效父文档类型"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}不是{1}的有效父字段"
@@ -31227,23 +31145,23 @@ msgstr "{0}分钟前"
msgid "{0} months ago"
msgstr "{0}个月前"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0}必须在{1}之后"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0}必须以'{1}'开头"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0}必须等于'{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0}不能是{1}中的任何一项"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0}必须是{1}中的一项"
@@ -31255,7 +31173,7 @@ msgstr "需先设置{0}"
msgid "{0} must be unique"
msgstr "{0}必须唯一"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0}必须为{1}{2}"
@@ -31284,16 +31202,12 @@ msgstr "{1}中的第{0}项"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{1}中的第{0}项(含{2}行子项)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "已发送{1}中的{0}"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "仅{0}"
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0}或{1}"
@@ -31330,11 +31244,11 @@ msgstr "{0}移除了其分配"
msgid "{0} role does not have permission on any doctype"
msgstr "{0}角色无任何文档类型权限"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0}行#{1}:"
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0}保存成功"
@@ -31446,7 +31360,7 @@ msgstr "{0}{1}不存在,请选择新合并目标"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0}{1}关联了以下已提交文档:{2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "未找到{0}{1}"
@@ -31599,11 +31513,11 @@ msgstr "{{{0}}}不是有效字段名模式,应为{{field_name}}"
msgid "{} Complete"
msgstr "已完成{}"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "第{}行存在无效Python代码"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "可能存在无效Python代码:
{}"
@@ -31625,7 +31539,7 @@ msgstr "{}字段不能为空"
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{}已被禁用,需勾选{}方可启用"
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{}不是有效日期字符串"
From e1217282acc6f35b2a5ecc55387b001a96105097 Mon Sep 17 00:00:00 2001
From: Vishal Sindham
{0}"
-msgstr ""
+msgstr "Google Kalendar - Kontakt/e-mail nije pronađen. Nije dodan učesnik za -
{0}"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
-msgstr ""
+msgstr "Google Kalendar - Nije moguće kreirati Kalendar za {0}, kod greške {1}."
#: frappe/integrations/doctype/google_calendar/google_calendar.py:610
msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}."
-msgstr ""
+msgstr "Google Kalendar - Nije moguće izbrisati Događaj {0} iz Google Kalendara, kod greške {1}."
#: frappe/integrations/doctype/google_calendar/google_calendar.py:305
msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}."
-msgstr ""
+msgstr "Google Kalendar - Nije moguće preuzeti Događaj iz Google Kalendara, kod greške {0}."
#: frappe/integrations/doctype/google_calendar/google_calendar.py:252
msgid "Google Calendar - Could not find Calendar for {0}, error code {1}."
@@ -11291,31 +11300,31 @@ msgstr "Google kalendar - nije moguće pronaći kalendar za {0}, šifra pogrešk
#: frappe/integrations/doctype/google_contacts/google_contacts.py:232
msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}."
-msgstr ""
+msgstr "Google kalendar - Nije moguće umetnuti kontakt u Google kontakte {0}, kod greške {1}."
#: frappe/integrations/doctype/google_calendar/google_calendar.py:496
msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}."
-msgstr ""
+msgstr "Google kalendar - Nije moguće umetnuti događaj u Google kalendar {0}, kod greške {1}."
#: frappe/integrations/doctype/google_calendar/google_calendar.py:580
msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}."
-msgstr ""
+msgstr "Google Kalendar - Nije moguće ažurirati događaj {0} u Google kKalendaru, kod greške {1}."
#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr ""
+msgstr "ID Događaja Google Kalendara"
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
#: frappe/desk/doctype/event/event.json
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr ""
+msgstr "ID Google Kalendara"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
-msgstr ""
+msgstr "Google Kalendar je Konfigurisan."
#. Label of the sb_00 (Section Break) field in DocType 'Contact'
#. Label of the google_contacts (Link) field in DocType 'Contact'
@@ -11326,38 +11335,38 @@ msgstr ""
#: frappe/integrations/doctype/google_contacts/google_contacts.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Contacts"
-msgstr ""
+msgstr "Google Kontakti"
#: frappe/integrations/doctype/google_contacts/google_contacts.py:137
msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}."
-msgstr ""
+msgstr "Google Kontakti - Nije moguće sinhronizirati kontakte iz Google Kontakata {0}, kod greške {1}."
#: frappe/integrations/doctype/google_contacts/google_contacts.py:294
msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}."
-msgstr ""
+msgstr "Google Kontakti - Nije moguće ažurirati kontakt u Google Kontaktima {0}, kod greške {1}."
#. Label of the google_contacts_id (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr ""
+msgstr "Id Google Kontakata"
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
-msgstr ""
+msgstr "Google Disk"
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
-msgstr ""
+msgstr "Birač Google Diska"
#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
-msgstr ""
+msgstr "Birač Google Diska Omogućen"
#. Label of the font (Data) field in DocType 'Print Format'
#. Label of the google_font (Data) field in DocType 'Website Theme'
@@ -11365,84 +11374,84 @@ msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr ""
+msgstr "Google Font"
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
-msgstr ""
+msgstr "Google Meet Veza"
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Services"
-msgstr ""
+msgstr "Google Servisi"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
-msgstr ""
+msgstr "Google Postavke"
#: frappe/utils/csvutils.py:226
msgid "Google Sheets URL is invalid or not publicly accessible."
-msgstr ""
+msgstr "URL Google Sheet je nevažeći ili nije javno dostupan."
#: frappe/utils/csvutils.py:231
msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again."
-msgstr ""
+msgstr "URL Google Sheet mora završavati sa \"gid={number}\". Kopiraj i zalijepi URL iz adresne trake pretraživača i pokušajte ponovo."
#. Label of the google_preview (HTML) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Google Snippet Preview"
-msgstr ""
+msgstr "Google Snippet Pregled"
#. Label of the grant_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr ""
+msgstr "Tip Odobrenja"
#: frappe/public/js/frappe/form/dashboard.js:34
#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
msgid "Graph"
-msgstr ""
+msgstr "Graf"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Gray"
-msgstr ""
+msgstr "Sivo"
#: frappe/public/js/frappe/ui/filters/filter.js:23
msgid "Greater Than"
-msgstr ""
+msgstr "Veće Nego"
#: frappe/public/js/frappe/ui/filters/filter.js:25
msgid "Greater Than Or Equal To"
-msgstr ""
+msgstr "Veće Od ili Jednako Prema"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Green"
-msgstr ""
+msgstr "Zeleno"
#: frappe/public/js/form_builder/components/controls/TableControl.vue:53
msgid "Grid Empty State"
-msgstr ""
+msgstr "Prazno Stanje Mreže"
#. Label of the grid_page_length (Int) field in DocType 'DocType'
#. Label of the grid_page_length (Int) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Grid Page Length"
-msgstr ""
+msgstr "Mreža Dužina Stranice"
#: frappe/public/js/frappe/ui/keyboard.js:127
msgid "Grid Shortcuts"
-msgstr ""
+msgstr "Prečica Mreže"
#. Label of the group (Data) field in DocType 'DocType Action'
#. Label of the group (Data) field in DocType 'DocType Link'
@@ -11451,73 +11460,73 @@ msgstr ""
#: frappe/core/doctype/doctype_link/doctype_link.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Group"
-msgstr ""
+msgstr "Grupa"
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/website/report/website_analytics/website_analytics.js:32
msgid "Group By"
-msgstr ""
+msgstr "Grupiši Po"
#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Based On"
-msgstr ""
+msgstr "Grupiši Po Na Osnovu"
#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Type"
-msgstr ""
+msgstr "Grupiši Po Tipu"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
msgid "Group By field is required to create a dashboard chart"
-msgstr ""
+msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table"
#: frappe/database/query.py:750
msgid "Group By must be a string"
-msgstr ""
+msgstr "Grupiraj Po mora biti niz"
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
-msgstr ""
+msgstr "Grupni Član"
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
-msgstr ""
+msgstr "Objekt Klase Grupe"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Group your custom doctypes under modules"
-msgstr ""
+msgstr "Grupiraj vaše prilagođene tipove dokumenata pod modulima"
#: frappe/public/js/frappe/ui/group_by/group_by.js:425
msgid "Grouped by {0}"
-msgstr ""
+msgstr "Grupirano po {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "HEAD"
-msgstr ""
+msgstr "HEAD"
#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "HERE"
-msgstr ""
+msgstr "OVDJE"
#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm"
-msgstr ""
+msgstr "HH:mm"
#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm:ss"
-msgstr ""
+msgstr "HH:mm:ss"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -11548,7 +11557,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -11557,79 +11566,79 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr ""
+msgstr "HTML Uređivač"
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr ""
+msgstr "HTML Stranica"
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr ""
+msgstr "HTML za sekciju zaglavlja. Opcija"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
-msgstr ""
+msgstr "HTML sa Jinja podrškom"
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr ""
+msgstr "Pola"
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Half Yearly"
-msgstr ""
+msgstr "Polugodišnje"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/public/js/frappe/utils/common.js:402
msgid "Half-yearly"
-msgstr ""
+msgstr "Polugodišnje"
#. Label of the handled_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Handled Emails"
-msgstr ""
+msgstr "Obrađena e-pošta"
#. Label of the has_attachment (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Has Attachment"
-msgstr ""
+msgstr "Ima Prilog"
#. Name of a DocType
#: frappe/core/doctype/has_domain/has_domain.json
msgid "Has Domain"
-msgstr ""
+msgstr "Ima Domenu"
#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Has Next Condition"
-msgstr ""
+msgstr "Ima Sljedeći Uslov"
#. Name of a DocType
#: frappe/core/doctype/has_role/has_role.json
msgid "Has Role"
-msgstr ""
+msgstr "Ima Ulogu"
#. Label of the has_setup_wizard (Check) field in DocType 'Installed
#. Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Has Setup Wizard"
-msgstr ""
+msgstr "Ima Guide Postavljanja"
#. Label of the has_web_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Has Web View"
-msgstr ""
+msgstr "Ima web pregled"
#: frappe/templates/signup.html:19
msgid "Have an account? Login"
-msgstr ""
+msgstr "Imaš račun? Prijavi se"
#. Label of the header (Check) field in DocType 'SMS Parameter'
#. Label of the header_section (Section Break) field in DocType 'Letter Head'
@@ -11640,47 +11649,47 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr ""
+msgstr "Zaglavlje"
#. Label of the content (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr ""
+msgstr "HTML Zaglavlja"
#: frappe/printing/doctype/letter_head/letter_head.py:63
msgid "Header HTML set from attachment {0}"
-msgstr ""
+msgstr "HTML Zaglavlja postavljen iz priloga {0}"
#. Label of the header_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header Script"
-msgstr ""
+msgstr "Skripta Zaglavlja"
#. Label of the sb2 (Section Break) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Header and Breadcrumbs"
-msgstr ""
+msgstr "Zaglavlje i Mrvice"
#. Label of the section_break_38 (Tab Break) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Header, Robots"
-msgstr ""
+msgstr "Zaglavlje, Roboti"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Header/Footer scripts can be used to add dynamic behaviours."
-msgstr ""
+msgstr "Skripte Zaglavlja/Podnožja mogu se koristiti za dodavanje dinamičkog ponašanja."
#. Label of the webhook_headers (Table) field in DocType 'Webhook'
#. Label of the headers (Code) field in DocType 'Webhook Request Log'
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr ""
+msgstr "Zaglavlja"
#: frappe/email/email_body.py:322
msgid "Headers must be a dictionary"
-msgstr ""
+msgstr "Zaglavlja moraju biti rječnik"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -11699,11 +11708,11 @@ msgstr "Naslov"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr ""
+msgstr "Toplotna Karta"
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
-msgstr ""
+msgstr "Zdravo"
#. Label of the help_section (Section Break) field in DocType 'Server Script'
#. Label of the help (HTML) field in DocType 'Property Setter'
@@ -11714,69 +11723,69 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/navbar.html:87
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
-msgstr ""
+msgstr "Pomoć"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/workspace/website/website.json
msgid "Help Article"
-msgstr ""
+msgstr "Članak pomoći"
#. Label of the help_articles (Int) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Help Articles"
-msgstr ""
+msgstr "Članci Pomoći"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/help_category/help_category.json
#: frappe/website/workspace/website/website.json
msgid "Help Category"
-msgstr ""
+msgstr "Kategorija Pomoći"
#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
#: frappe/public/js/frappe/ui/toolbar/navbar.html:84
msgid "Help Dropdown"
-msgstr ""
+msgstr "Padajući Meni Pomoći"
#. Label of the help_html (HTML) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Help HTML"
-msgstr ""
+msgstr "HTML Pomoći"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149
msgid "Help on Search"
-msgstr ""
+msgstr "Pomoć za Pretragu"
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")"
-msgstr ""
+msgstr "Pomoć: Za povezivanje s drugim zapisom u sistemu koristite \"/app/note/[Naziv bilješke]\" kao URL veze. (ne koristi \"http://\")"
#. Label of the helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Helpful"
-msgstr ""
+msgstr "Korisno"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica"
-msgstr ""
+msgstr "Helvetica"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica Neue"
-msgstr ""
+msgstr "Helvetica Neue"
#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Here's your tracking URL"
-msgstr ""
+msgstr "Ovdje je vaš URL-a za praćenje"
#: frappe/www/qrcode.html:9
msgid "Hi {0}"
-msgstr ""
+msgstr "Zdravo {0}"
#. Label of the hidden (Check) field in DocType 'DocField'
#. Label of the hidden (Check) field in DocType 'DocType Action'
@@ -11798,13 +11807,13 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Hidden"
-msgstr ""
+msgstr "Sakriveno"
#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
-msgstr ""
+msgstr "Sakrivena Polja"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -11813,12 +11822,12 @@ msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
msgid "Hide"
-msgstr ""
+msgstr "Sakrij"
#. Label of the hide_block (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Hide Block"
-msgstr ""
+msgstr "Sakrij Blok"
#. Label of the hide_border (Check) field in DocType 'DocField'
#. Label of the hide_border (Check) field in DocType 'Custom Field'
@@ -11827,29 +11836,29 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr ""
+msgstr "Sakrij Obrub"
#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Buttons"
-msgstr ""
+msgstr "Sakrij Dugmad"
#. Label of the hide_cta (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Hide CTA"
-msgstr ""
+msgstr "Sakrij Poziv Na Akciju"
#. Label of the allow_copy (Check) field in DocType 'DocType'
#. Label of the allow_copy (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr ""
+msgstr "Sakrij Kopiju"
#. Label of the hide_custom (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr ""
+msgstr "Sakrij prilagođene tipove dokumenata i izvještaje"
#. Label of the hide_days (Check) field in DocType 'DocField'
#. Label of the hide_days (Check) field in DocType 'Custom Field'
@@ -11858,46 +11867,46 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr ""
+msgstr "Sakrij Dane"
#. Label of the hide_descendants (Check) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
#: frappe/core/doctype/user_permission/user_permission_list.js:96
msgid "Hide Descendants"
-msgstr ""
+msgstr "Sakrij Podređene"
#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hide Empty Read-Only Fields"
-msgstr ""
+msgstr "Onemogući Prazna Polja Samo za Čitanje"
#: frappe/www/error.html:62
msgid "Hide Error"
-msgstr ""
+msgstr "Sakrij Grešku"
#: frappe/printing/page/print_format_builder/print_format_builder.js:488
msgid "Hide Label"
-msgstr ""
+msgstr "Sakrij Oznaku"
#. Label of the hide_login (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide Login"
-msgstr ""
+msgstr "Sakrij Prijavu"
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Hide Preview"
-msgstr ""
+msgstr "Sakrij Pregled"
#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Previous, Next and Close button on highlight dialog."
-msgstr ""
+msgstr "Sakrij Prethodni, Sljedeći i Zatvori dugme u dijaloškom okviru za isticanje."
#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Hide Saved"
-msgstr ""
+msgstr "Sakrij Spremljeno"
#. Label of the hide_seconds (Check) field in DocType 'DocField'
#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
@@ -11906,76 +11915,76 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr ""
+msgstr "Sakrij Sekunde"
#. Label of the hide_toolbar (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Hide Sidebar, Menu, and Comments"
-msgstr ""
+msgstr "Sakrij Bočnu Traku, Meni i Komentare"
#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Hide Standard Menu"
-msgstr ""
+msgstr "Sakrij Standardni Meni"
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Hide Tags"
-msgstr ""
+msgstr "Sakrij Oznake"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
-msgstr ""
+msgstr "Sakrij Vikende"
#. Description of the 'Hide Descendants' (Check) field in DocType 'User
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Hide descendant records of For Value."
-msgstr ""
+msgstr "Sakrij podređene zapise Za Vrijednost."
#: frappe/public/js/frappe/form/layout.js:286
msgid "Hide details"
-msgstr ""
+msgstr "Sakrij Detalje"
#. Label of the hide_footer (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Hide footer"
-msgstr ""
+msgstr "Sakrij Podnožje"
#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hide footer in auto email reports"
-msgstr ""
+msgstr "Sakrij podnožje u automatskim izvještajima e-pošte"
#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide footer signup"
-msgstr ""
+msgstr "Sakrij prijavu u podnožju"
#. Label of the hide_navbar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Hide navbar"
-msgstr ""
+msgstr "Sakrij Navigacijsku Traku"
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:225
msgid "High"
-msgstr ""
+msgstr "Visoki"
#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Higher priority rule will be applied first"
-msgstr ""
+msgstr "Prvo će se primijeniti pravilo višeg prioriteta"
#. Label of the highlight (Text) field in DocType 'Company History'
#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr ""
+msgstr "Istaknuto"
#: frappe/www/update-password.html:276
msgid "Hint: Include symbols, numbers and capital letters in the password"
-msgstr ""
+msgstr "Savjet: Uključi simbole, brojeve i velika slova u lozinku"
#. Label of the home_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38
@@ -11991,33 +12000,33 @@ msgstr ""
#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
#: frappe/www/message.html:29
msgid "Home"
-msgstr ""
+msgstr "Početna"
#. Label of the home_page (Data) field in DocType 'Role'
#. Label of the home_page (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/role/role.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr ""
+msgstr "Početna Stranica"
#. Label of the home_settings (Code) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr ""
+msgstr "Početna Postavke"
#: frappe/core/doctype/file/test_file.py:321
#: frappe/core/doctype/file/test_file.py:323
#: frappe/core/doctype/file/test_file.py:387
msgid "Home/Test Folder 1"
-msgstr ""
+msgstr "Početna/Test Maps 1"
#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
-msgstr ""
+msgstr "Početna/Test Mapa 1/Test Mapa 3"
#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
-msgstr ""
+msgstr "Početna/Test Mapa 2"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -12026,40 +12035,40 @@ msgstr ""
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr ""
+msgstr "Svaki Sat"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Hourly Long"
-msgstr ""
+msgstr "Cijeli Sat"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Hourly Maintenance"
-msgstr ""
+msgstr "Satno Održavanje"
#. Description of the 'Password Reset Link Generation Limit' (Int) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr ""
+msgstr "Broj veza koji se mogu kreirati po satu za poništavanje lozinke"
#: frappe/public/js/frappe/form/controls/duration.js:29
msgctxt "Duration"
msgid "Hours"
-msgstr ""
+msgstr "Sati"
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
-msgstr ""
+msgstr "Kako treba formatirati ovu valutu? Ako nije postavljeno, koristit će se standard postavke sistema"
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
-msgstr ""
+msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga možete kreirati samo za sebe. Kliknite na dugme Kreiraj Radni Prostor da biste ga kreirali.
"
#: frappe/core/doctype/data_import/importer.py:1171
#: frappe/core/doctype/data_import/importer.py:1177
@@ -12074,33 +12083,33 @@ msgstr ""
#: frappe/public/js/frappe/model/meta.js:200
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
-msgstr ""
+msgstr "ID"
#: frappe/desk/reportview.py:491
#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
-msgstr ""
+msgstr "ID"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169
msgid "ID (name)"
-msgstr ""
+msgstr "ID (ime)"
#. Description of the 'Field Name' (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "ID (name) of the entity whose property is to be set"
-msgstr ""
+msgstr "ID (naziv) entiteta čije svojstvo treba postaviti"
#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique."
-msgstr ""
+msgstr "ID-ovi moraju sadržavati samo alfanumeričke znakove, ne moraju sadržavati razmake i trebaju biti jedinstveni."
#. Label of the section_break_25 (Section Break) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "IMAP Details"
-msgstr ""
+msgstr "IMAP Detalji"
#. Label of the imap_folder (Data) field in DocType 'Communication'
#. Label of the imap_folder (Table) field in DocType 'Email Account'
@@ -12109,14 +12118,14 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "IMAP Folder"
-msgstr ""
+msgstr "IMAP Mapa"
#. Label of the ip_address (Data) field in DocType 'Activity Log'
#. Label of the ip_address (Data) field in DocType 'Comment'
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/comment/comment.json
msgid "IP Address"
-msgstr ""
+msgstr "IP Adresa"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
@@ -12140,29 +12149,29 @@ msgstr ""
#: frappe/public/js/frappe/views/workspace/workspace.js:458
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
-msgstr ""
+msgstr "Ikona"
#. Description of the 'Icon' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon will appear on the button"
-msgstr ""
+msgstr "Ikona će se pojaviti na dugmetu"
#. Label of the sb_identity_details (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Identity Details"
-msgstr ""
+msgstr "Detalji Identiteta"
#. Label of the idx (Int) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Idx"
-msgstr ""
+msgstr "Indeks"
#. Description of the 'Apply Strict User Permissions' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "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"
-msgstr ""
+msgstr "Ako je označeno Primijeni Striktno Korisničko dopuštenje i definirano je korisničko dopuštenje za DocType za korisnika, tada svi dokumenti u kojima je vrijednost veze prazna neće biti prikazani tom korisniku"
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
@@ -12171,137 +12180,137 @@ msgstr ""
#: frappe/workflow/doctype/workflow/workflow.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "If Checked workflow status will not override status in list view"
-msgstr ""
+msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu liste"
#: frappe/core/doctype/doctype/doctype.py:1763
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:66
msgid "If Owner"
-msgstr ""
+msgstr "Ako je Vlasnik"
#: frappe/core/page/permission_manager/permission_manager_help.html:25
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
-msgstr ""
+msgstr "Ako Uloga nema pristup na Nivou 0, tada su viši nivoi besmisleni."
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr ""
+msgstr "Ako je označeno, svi ostali radni tokovi postaju neaktivni."
#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
#. Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive"
-msgstr ""
+msgstr "Ako je označeno, negativne numeričke vrijednosti valute, količine ili broja biće prikazane kao pozitivne"
#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "If checked, users will not see the Confirm Access dialog."
-msgstr ""
+msgstr "Ako je označeno, korisnici neće vidjeti dijalog Potvrdi Pristup."
#. Description of the 'Disabled' (Check) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
msgid "If disabled, this role will be removed from all users."
-msgstr ""
+msgstr "Ako je onemogućena, ova uloga će biti uklonjena sa svih korisnika."
#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth
#. Enabled' (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings"
-msgstr ""
+msgstr "Ako je omogućeno, korisnik se može prijaviti s bilo koje IP adrese koristeći dvostruku autentifikaciju, to se također može postaviti za sve korisnike u sistemskim postavkama"
#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "If enabled, all responses on the web form will be submitted anonymously"
-msgstr ""
+msgstr "Ako je omogućeno, svi odgovori u web formi bit će dostavljeni anonimno"
#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
#. Enabled' (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "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"
-msgstr ""
+msgstr "Ako je omogućeno, svi korisnici se mogu prijaviti sa bilo koje IP adrese koristeći dvofaktosku autetifikaciju. Ovo se također može podesiti samo za određene korisnike na korisničkoj stranici"
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr ""
+msgstr "Ako je omogućeno, promjene u dokumentu se prate i prikazuju na vremenskoj liniji"
#. Description of the 'Track Views' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, document views are tracked, this can happen multiple times"
-msgstr ""
+msgstr "Ako je omogućeno, pregledi dokumenata se prate, to se može dogoditi više puta"
#. Description of the 'Track Seen' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, the document is marked as seen, the first time a user opens it"
-msgstr ""
+msgstr "Ako je omogućeno, dokument se označava kao viđen, kada ga korisnik prvi put otvori"
#. Description of the 'Send System Notification' (Check) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar."
-msgstr ""
+msgstr "Ako je omogućeno, obavještenje će se pojaviti u padajućem izborniku obavještenja u gornjem desnom uglu navigacijske trake."
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong."
-msgstr ""
+msgstr "Ako je omogućeno, snaga lozinke bit će nametnuta na temelju minimalne vrijednosti zaporke. Vrijednost 1 je vrlo slaba, a 4 vrlo jaka."
#. Description of the 'Bypass Two Factor Auth for users who login from
#. restricted IP Address' (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth"
-msgstr ""
+msgstr "Ako je omogućeno, korisnici koji se prijavljuju s ograničene IP adrese neće biti upitani za dvofaktorsku autentifikaciju"
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr ""
+msgstr "Ako je omogućeno, korisnici će biti obaviješteni svaki put kada se prijave. Ako nije omogućeno, korisnici će biti obaviješteni samo jednom."
#. Description of the 'Default Workspace' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If left empty, the default workspace will be the last visited workspace"
-msgstr ""
+msgstr "Ako ostane prazno, standard radni prostor bit će posljednji posjećeni radni prostor"
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non standard port (e.g. 587)"
-msgstr ""
+msgstr "Ako nije standardni port (npr. 587)"
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr ""
+msgstr "Ako nije standardni port (npr. 587). Ako koristite Google Cloud, pokušajte s portom 2525."
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr ""
+msgstr "Ako nije standardani port (npr. POP3: 995/110, IMAP: 993/143)"
#. Description of the 'Currency Precision' (Select) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr ""
+msgstr "Ako nije postavljeno, preciznost valute zavisiće o formatu broja"
#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
-msgstr ""
+msgstr "Ako je postavljeno, samo korisnik sa ovim ulogama može pristupiti ovom grafikonu. Ako nije postavljeno, koristit će se dozvole DocType ili Izvještaj."
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
-msgstr ""
+msgstr "Ako korisnik ima odabranu bilo koju ulogu, tada korisnik postaje \"Korisnik Sistema\". \"Korisnik Sistema\" ima pristup radnoj površini"
#: frappe/core/page/permission_manager/permission_manager_help.html:38
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
-msgstr ""
+msgstr "Ako vam ove upute nisu pomogle, dodajte svoje prijedloge o GitHub problemima."
#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
#. 'DocField'
@@ -12313,49 +12322,49 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "If unchecked, the value will always be re-fetched on save."
-msgstr ""
+msgstr "Ako nije označeno, vrijednost će se uvijek ponovo preuzeti prilikom spremanja."
#. Label of the if_owner (Check) field in DocType 'Custom DocPerm'
#. Label of the if_owner (Check) field in DocType 'DocPerm'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "If user is the owner"
-msgstr ""
+msgstr "Ako je korisnik vlasnik"
#: frappe/core/doctype/data_export/exporter.py:204
msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
-msgstr ""
+msgstr "Ako ažuriraš, odaberi \"Prepiši\" inače postojeći redovi neće biti izbrisani."
#: frappe/core/doctype/data_export/exporter.py:188
msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present."
-msgstr ""
+msgstr "Ako učitavaš nove zapise, \"Imenovanje Serije\" postaje obavezno, ako postoji."
#: frappe/core/doctype/data_export/exporter.py:186
msgid "If you are uploading new records, leave the \"name\" (ID) column blank."
-msgstr ""
+msgstr "Ako učitavate nove zapise, ostavite kolonu \"ime\" (ID) praznom."
#: frappe/utils/password.py:214
msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key."
-msgstr ""
+msgstr "Ako ste nedavno vratili web stranicu, možda ćete morati kopirati konfiguraciju web stranice koja sadrži izvorni ključ šifriranja."
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr ""
+msgstr "Ako ovo postaviš, pojaviće se unos u padajućem meniju nadređenog procesa."
#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
-msgstr ""
+msgstr "Ako mislite da je ovo neovlašteno, promijenite administratorsku lozinku."
#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included."
-msgstr ""
+msgstr "Ako vaš CSV koristi drugačiji razdjelnik, dodajte taj znak ovdje, pazeći da nema razmaka ili dodatnih znakova."
#. Description of the 'Source Text' (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr ""
+msgstr "Ako su vaši podaci u HTML-u, kopirajte i zalijepite tačan HTML kod sa oznakama."
#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
@@ -12365,7 +12374,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore User Permissions"
-msgstr ""
+msgstr "Zanemari Korisničke Dozvole"
#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
@@ -12375,7 +12384,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore XSS Filter"
-msgstr ""
+msgstr "Zanemari XSS Filter"
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
@@ -12384,25 +12393,25 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr ""
+msgstr "Zanemari priloge veće od ove veličine"
#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr ""
+msgstr "Ignorisane Aplikacije"
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
-msgstr ""
+msgstr "Ilegalan Status Dokumenta za {0}"
#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
-msgstr ""
+msgstr "Ilegalan SQL Upit"
#: frappe/utils/jinja.py:127
msgid "Illegal template"
-msgstr ""
+msgstr "Ilegalan Šablon"
#. Label of the image (Attach Image) field in DocType 'Contact'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -12427,86 +12436,86 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr ""
+msgstr "Slika"
#. Label of the image_field (Data) field in DocType 'DocType'
#. Label of the image_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Image Field"
-msgstr ""
+msgstr "Polje Slike"
#. Label of the image_height (Float) field in DocType 'Letter Head'
#. Label of the footer_image_height (Float) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Height"
-msgstr ""
+msgstr "Visina Slike"
#. Label of the image_link (Attach) field in DocType 'About Us Team Member'
#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "Image Link"
-msgstr ""
+msgstr "Veza Slike"
#: frappe/public/js/frappe/list/base_list.js:208
msgid "Image View"
-msgstr ""
+msgstr "Prikaz Slike"
#. Label of the image_width (Float) field in DocType 'Letter Head'
#. Label of the footer_image_width (Float) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Width"
-msgstr ""
+msgstr "Širina Slike"
#: frappe/core/doctype/doctype/doctype.py:1506
msgid "Image field must be a valid fieldname"
-msgstr ""
+msgstr "Polje slike mora biti važeće ime polja"
#: frappe/core/doctype/doctype/doctype.py:1508
msgid "Image field must be of type Attach Image"
-msgstr ""
+msgstr "Polje za sliku mora biti tipa Priloži Sliku"
#: frappe/core/doctype/file/utils.py:136
msgid "Image link '{0}' is not valid"
-msgstr ""
+msgstr "Veza slike '{0}' nije važeća"
#: frappe/core/doctype/file/file.js:107
msgid "Image optimized"
-msgstr ""
+msgstr "Slika optimizovana"
#: frappe/core/doctype/file/utils.py:289
msgid "Image: Corrupted Data Stream"
-msgstr ""
+msgstr "Slika: Oštećen Tok Podataka"
#: frappe/public/js/frappe/views/image/image_view.js:13
msgid "Images"
-msgstr ""
+msgstr "Slike"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/user/user.js:378
msgid "Impersonate"
-msgstr ""
+msgstr "Oponašaj"
#: frappe/core/doctype/user/user.js:405
msgid "Impersonate as {0}"
-msgstr ""
+msgstr "Oponašaj {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259
msgid "Impersonated by {0}"
-msgstr ""
+msgstr "Oponašan od {0}"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:21
msgid "Impersonating {0}"
-msgstr ""
+msgstr "Oponaša {0}"
#: frappe/core/doctype/log_settings/log_settings.py:56
msgid "Implement `clear_old_logs` method to enable auto error clearing."
-msgstr ""
+msgstr "Implementiraj metodu `clear_old_logs` da omogućite automatsko brisanje grešaka."
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr ""
+msgstr "Implicitno"
#. Label of the import (Check) field in DocType 'Custom DocPerm'
#. Label of the import (Check) field in DocType 'DocPerm'
@@ -12515,118 +12524,118 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:16
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
-msgstr ""
+msgstr "Uvezi"
#: frappe/public/js/frappe/list/list_view.js:1766
msgctxt "Button in list view menu"
msgid "Import"
-msgstr ""
+msgstr "Uvezi"
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Import Data"
-msgstr ""
+msgstr "Uvoz Podataka"
#: frappe/email/doctype/email_group/email_group.js:14
msgid "Import Email From"
-msgstr ""
+msgstr "Uvezi e-poštu iz"
#. Label of the import_file (Attach) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr ""
+msgstr "Uvezi Datoteku"
#. Label of the import_warnings_section (Section Break) field in DocType 'Data
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import File Errors and Warnings"
-msgstr ""
+msgstr "Uvezi Greške i Upozorenja Datoteke"
#. Label of the import_log_section (Section Break) field in DocType 'Data
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log"
-msgstr ""
+msgstr "Zapisnik Uvoza"
#. Label of the import_log_preview (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log Preview"
-msgstr ""
+msgstr "Pregled Zapisnika Uvoza"
#. Label of the import_preview (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr ""
+msgstr "Pregled Uvoza"
#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
-msgstr ""
+msgstr "Napredak Uvoza"
#: frappe/email/doctype/email_group/email_group.js:8
#: frappe/email/doctype/email_group/email_group.js:30
msgid "Import Subscribers"
-msgstr ""
+msgstr "Uvezij Pretplatnike"
#. Label of the import_type (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Type"
-msgstr ""
+msgstr "Tip Uvoza"
#. Label of the import_warnings (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr ""
+msgstr "Upozorenja Uvoza"
#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
-msgstr ""
+msgstr "Uvezi Zip"
#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import from Google Sheets"
-msgstr ""
+msgstr "Uvezi iz Google Sheet"
#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
-msgstr ""
+msgstr "Šablon za Uvoz treba biti tipa .csv, .xlsx ili .xls"
#: frappe/core/doctype/data_import/importer.py:482
msgid "Import template should contain a Header and atleast one row."
-msgstr ""
+msgstr "Šablon za Uvoz treba da sadrži Zaglavlje i najmanje jedan red."
#: frappe/core/doctype/data_import/data_import.js:165
msgid "Import timed out, please re-try."
-msgstr ""
+msgstr "Uvoz je istekao, pokušaj ponovo."
#: frappe/core/doctype/data_import/data_import.py:68
msgid "Importing {0} is not allowed."
-msgstr ""
+msgstr "Uvoz {0} nije dozvoljen."
#: frappe/integrations/doctype/google_contacts/google_contacts.js:19
msgid "Importing {0} of {1}"
-msgstr ""
+msgstr "Uvoz {0} od {1}"
#: frappe/core/doctype/data_import/data_import.js:35
msgid "Importing {0} of {1}, {2}"
-msgstr ""
+msgstr "Uvozi se {0} od {1}, {2}"
#: frappe/public/js/frappe/ui/filters/filter.js:20
msgid "In"
-msgstr ""
+msgstr "U"
#. Description of the 'Force User to Reset Password' (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In Days"
-msgstr ""
+msgstr "U Danima"
#. Label of the in_filter (Check) field in DocType 'DocField'
#. Label of the in_filter (Check) field in DocType 'Customize Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Filter"
-msgstr ""
+msgstr "U Filteru"
#. Label of the in_global_search (Check) field in DocType 'DocField'
#. Label of the in_global_search (Check) field in DocType 'Custom Field'
@@ -12636,16 +12645,16 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr ""
+msgstr "U Globalnoj Pretrazi"
#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
-msgstr ""
+msgstr "U Prikazu Mreže"
#. Label of the in_standard_filter (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "In List Filter"
-msgstr ""
+msgstr "U Filteru Liste"
#. Label of the in_list_view (Check) field in DocType 'DocField'
#. Label of the in_list_view (Check) field in DocType 'Custom Field'
@@ -12655,11 +12664,11 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In List View"
-msgstr ""
+msgstr "U Prikazu Liste"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19
msgid "In Minutes"
-msgstr ""
+msgstr "U Minutama"
#. Label of the in_preview (Check) field in DocType 'DocField'
#. Label of the in_preview (Check) field in DocType 'Custom Field'
@@ -12668,20 +12677,20 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr ""
+msgstr "U Pregledu"
#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
-msgstr ""
+msgstr "U Toku"
#: frappe/database/database.py:287
msgid "In Read Only Mode"
-msgstr ""
+msgstr "U Samo za Čitanje Načinu"
#. Label of the in_reply_to (Link) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr ""
+msgstr "U Odgovoru"
#. Label of the in_standard_filter (Check) field in DocType 'Custom Field'
#. Label of the in_standard_filter (Check) field in DocType 'Customize Form
@@ -12689,140 +12698,140 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr ""
+msgstr "U Standardnom Filteru"
#. Description of the 'Font Size' (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "In points. Default is 9."
-msgstr ""
+msgstr "U Pixelima. Standard je 9."
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr ""
+msgstr "U sekundama"
#: frappe/core/doctype/recorder/recorder_list.js:209
msgid "Inactive"
-msgstr ""
+msgstr "Neaktivan"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/email/doctype/email_account/email_account_list.js:19
msgid "Inbox"
-msgstr ""
+msgstr "Pristigla Pošta"
#. Name of a role
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Inbox User"
-msgstr ""
+msgstr "Korisnik Pristigle Pošte"
#: frappe/public/js/frappe/list/base_list.js:209
msgid "Inbox View"
-msgstr ""
+msgstr "Prikaz Pristigle Pošte"
#: frappe/public/js/frappe/views/treeview.js:110
msgid "Include Disabled"
-msgstr ""
+msgstr "Uključi Onemogućene"
#. Label of the include_name_field (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Include Name Field"
-msgstr ""
+msgstr "Uključi Polje Naziva"
#. Label of the navbar_search (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Include Search in Top Bar"
-msgstr ""
+msgstr "Uključi Pretragu u Gornju Traku"
#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
-msgstr ""
+msgstr "Uključite Teme iz Aplikacija"
#. Label of the attach_view_link (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Include Web View Link in Email"
-msgstr ""
+msgstr "Uključi Web Pregled vezu u e-poštu"
#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
-msgstr ""
+msgstr "Uključi Filtere"
#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
-msgstr ""
+msgstr "Uključi Uvlačenje"
#: frappe/public/js/frappe/form/controls/password.js:106
msgid "Include symbols, numbers and capital letters in the password"
-msgstr ""
+msgstr "Uključi simbole, brojeve i velika slova u lozinku"
#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Incoming"
-msgstr ""
+msgstr "Dolazna"
#. Label of the mailbox_settings (Section Break) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Incoming (POP/IMAP) Settings"
-msgstr ""
+msgstr "Dolazne (POP/IMAP) Postavke"
#. Label of the incoming_emails_last_7_days_column (Column Break) field in
#. DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Incoming Emails (Last 7 days)"
-msgstr ""
+msgstr "Dolazna e-pošta (posljednjih 7 dana)"
#. Label of the email_server (Data) field in DocType 'Email Account'
#. Label of the email_server (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Server"
-msgstr ""
+msgstr "Dolazni Server"
#. Label of the mailbox_settings (Section Break) field in DocType 'Email
#. Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Settings"
-msgstr ""
+msgstr "Dolazne Postavke"
#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Incoming email account not correct"
-msgstr ""
+msgstr "Račun dolazne e-pošte nije ispravan"
#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92
msgid "Incomplete Virtual Doctype Implementation"
-msgstr ""
+msgstr "Nepotpuna implementacija virtualnog tipa dokumenta"
#: frappe/auth.py:255
msgid "Incomplete login details"
-msgstr ""
+msgstr "Nepotpuni podaci prijave"
#: frappe/email/smtp.py:104
msgid "Incorrect Configuration"
-msgstr ""
+msgstr "Neispravna Konfiguracija"
#: frappe/utils/csvutils.py:234
msgid "Incorrect URL"
-msgstr ""
+msgstr "Neispravan URL"
#: frappe/utils/password.py:101
msgid "Incorrect User or Password"
-msgstr ""
+msgstr "Netačan korisnik ili lozinka"
#: frappe/twofactor.py:176 frappe/twofactor.py:188
msgid "Incorrect Verification code"
-msgstr ""
+msgstr "Netačan Verifikacioni Kod"
#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
-msgstr ""
+msgstr "Netačna vrijednost u redu {0}:"
#: frappe/model/document.py:1545
msgid "Incorrect value:"
-msgstr ""
+msgstr "Netačna vrijednost:"
#. Label of the search_index (Check) field in DocType 'DocField'
#. Label of the index (Int) field in DocType 'Recorder Query'
@@ -12834,163 +12843,163 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:124
#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
-msgstr ""
+msgstr "Indeks"
#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Index Web Pages for Search"
-msgstr ""
+msgstr "Indeksiraj Web Stranice za Pretragu"
#: frappe/core/doctype/recorder/recorder.py:132
msgid "Index created successfully on column {0} of doctype {1}"
-msgstr ""
+msgstr "Indeks je uspješno kreiran na koloni {0} tipa dokumenta {1}"
#. Label of the indexing_authorization_code (Data) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing authorization code"
-msgstr ""
+msgstr "Autorizacijski kod za indeksiranje"
#. Label of the indexing_refresh_token (Data) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing refresh token"
-msgstr ""
+msgstr "Token za osvježavanje indeksiranja"
#. Label of the indicator (Select) field in DocType 'Kanban Board Column'
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Indicator"
-msgstr ""
+msgstr "Pokazatelj"
#. Label of the indicator_color (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
-msgstr ""
+msgstr "Boja Pokazatelja"
#: frappe/public/js/frappe/views/workspace/workspace.js:463
msgid "Indicator color"
-msgstr ""
+msgstr "Boja Pokazatelja"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/core/doctype/comment/comment.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr ""
+msgstr "Info"
#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
-msgstr ""
+msgstr "Info:"
#. Label of the initial_sync_count (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Initial Sync Count"
-msgstr ""
+msgstr "Početni Broj Sinkronizacije"
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "InnoDB"
-msgstr ""
+msgstr "InnoDB"
#. Description of the 'New Role' (Data) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
msgid "Input existing role name if you would like to extend it with access of another role."
-msgstr ""
+msgstr "Unesi ime postojeće uloge ako želite da je proširite pristupom druge uloge."
#: frappe/core/doctype/data_import/data_import_list.js:35
msgid "Insert"
-msgstr ""
+msgstr "Umetni"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Insert Above"
-msgstr ""
+msgstr "Umetni Iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
-msgstr ""
+msgstr "Umetni Poslije"
#: frappe/custom/doctype/custom_field/custom_field.py:251
msgid "Insert After cannot be set as {0}"
-msgstr ""
+msgstr "Umetni Nakon ne može se postaviti kao {0}"
#: frappe/custom/doctype/custom_field/custom_field.py:244
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
-msgstr ""
+msgstr "Umetni Nakon polja '{0}' spomenutog u prilagođenom polju '{1}', sa oznakom '{2}', ne postoji"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Insert Below"
-msgstr ""
+msgstr "Umetni Ispod"
#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
-msgstr ""
+msgstr "Umetni Kolonu Ispred {0}"
#: frappe/public/js/frappe/form/controls/markdown_editor.js:82
msgid "Insert Image in Markdown"
-msgstr ""
+msgstr "Umetnite sliku u Markdown"
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr ""
+msgstr "Umetni Nove Zapise"
#. Label of the insert_style (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr ""
+msgstr "Umetni Stil"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666
msgid "Install {0} from Marketplace"
-msgstr ""
+msgstr "Instaliraj {0} sa Marketplace"
#. Name of a DocType
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Installed Application"
-msgstr ""
+msgstr "Instalirana Aplikacija"
#. Name of a DocType
#. Label of the installed_applications (Table) field in DocType 'Installed
#. Applications'
#: frappe/core/doctype/installed_applications/installed_applications.json
msgid "Installed Applications"
-msgstr ""
+msgstr "Instalirane Aplikacije"
#: frappe/core/doctype/installed_applications/installed_applications.js:18
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Installed Apps"
-msgstr ""
+msgstr "Instalirane Aplikacije"
#. Label of the instructions (HTML) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Instructions"
-msgstr ""
+msgstr "Instrukcije"
#: frappe/templates/includes/login/login.js:261
msgid "Instructions Emailed"
-msgstr ""
+msgstr "Instrukcije Poslane e-poštom"
#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
-msgstr ""
+msgstr "Nedovoljan Nivo Dozvola za {0}"
#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
-msgstr ""
+msgstr "Nedovoljne Dozvole za {0}"
#: frappe/desk/reportview.py:360
msgid "Insufficient Permissions for deleting Report"
-msgstr ""
+msgstr "Nedovoljne dozvole za brisanje izvještaja"
#: frappe/desk/reportview.py:331
msgid "Insufficient Permissions for editing Report"
-msgstr ""
+msgstr "Nedovoljne Dozvole za uređivanje Izvještaja"
#: frappe/core/doctype/doctype/doctype.py:445
msgid "Insufficient attachment limit"
-msgstr ""
+msgstr "Nedovoljno ograničenje priloga"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -13007,12 +13016,12 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Int"
-msgstr ""
+msgstr "Cijeli Broj"
#. Name of a DocType
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Integration Request"
-msgstr ""
+msgstr "Zahtjev Integracije"
#. Group in User's connections
#. Name of a Workspace
@@ -13021,48 +13030,48 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Integrations"
-msgstr ""
+msgstr "Integracije"
#. Description of the 'Delivery Status' (Select) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Integrations can use this field to set email delivery status"
-msgstr ""
+msgstr "Integracije mogu koristiti ovo polje za postavljanje statusa isporuke e-pošte"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Inter"
-msgstr ""
+msgstr "Inter"
#. Label of the interest (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Interests"
-msgstr ""
+msgstr "Interesi"
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Intermediate"
-msgstr ""
+msgstr "Srednji"
#: frappe/public/js/frappe/request.js:235
msgid "Internal Server Error"
-msgstr ""
+msgstr "Interna Greška Servera"
#. Description of a DocType
#: frappe/core/doctype/docshare/docshare.json
msgid "Internal record of document shares"
-msgstr ""
+msgstr "Interni zapsi djeljenja dokumenata"
#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
-msgstr ""
+msgstr "URL Uvodnog Videa"
#. Description of the 'Company Introduction' (Text Editor) field in DocType
#. 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr ""
+msgstr "Predstavite svoju kompaniju posjetitelju web stranice."
#. Label of the introduction_section (Section Break) field in DocType 'Contact
#. Us Settings'
@@ -13072,381 +13081,381 @@ msgstr ""
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Introduction"
-msgstr ""
+msgstr "Uvod"
#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Introductory information for the Contact Us Page"
-msgstr ""
+msgstr "Uvodne informacije za stranicu Kontaktirajte nas"
#. Label of the introspection_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Introspection URI"
-msgstr ""
+msgstr "Introspekcija URI"
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Invalid"
-msgstr ""
+msgstr "Nevažeći"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
-msgstr ""
+msgstr "Nevažeći izraz \"depends_on\""
#: frappe/public/js/frappe/views/reports/query_report.js:513
msgid "Invalid \"depends_on\" expression set in filter {0}"
-msgstr ""
+msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}"
#: frappe/public/js/frappe/form/save.js:159
msgid "Invalid \"mandatory_depends_on\" expression"
-msgstr ""
+msgstr "Nevažeći izraz \"mandatory_depends_on\""
#: frappe/utils/nestedset.py:178
msgid "Invalid Action"
-msgstr ""
+msgstr "Nevažeća Radnja"
#: frappe/utils/csvutils.py:37
msgid "Invalid CSV Format"
-msgstr ""
+msgstr "Nevažeći CSV format"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
msgid "Invalid Code. Please try again."
-msgstr ""
+msgstr "Nevažeći Kod. Pkušaj ponovo."
#: frappe/integrations/doctype/webhook/webhook.py:87
msgid "Invalid Condition: {}"
-msgstr ""
+msgstr "Nevažeći Uslov: {}"
#: frappe/email/smtp.py:135
msgid "Invalid Credentials"
-msgstr ""
+msgstr "Nevažeći Podaci"
#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
-msgstr ""
+msgstr "Nevažeći Datum"
#: frappe/www/list.py:85
msgid "Invalid DocType"
-msgstr ""
+msgstr "Nevažeći DocType"
#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
-msgstr ""
+msgstr "Nevažeći DocType: {0}"
#: frappe/core/doctype/doctype/doctype.py:1272
msgid "Invalid Fieldname"
-msgstr ""
+msgstr "Nevažeći Naziv Polja"
#: frappe/core/doctype/file/file.py:209
msgid "Invalid File URL"
-msgstr ""
+msgstr "Nevažeći URL Datoteke"
#: frappe/database/query.py:427 frappe/database/query.py:454
#: frappe/database/query.py:464 frappe/database/query.py:487
msgid "Invalid Filter"
-msgstr ""
+msgstr "Nevažeći Filter"
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
-msgstr ""
+msgstr "Nevažeći Format Filtera za polje {0} tipa {1}. Pokušajte koristiti ikonu filtera na polju da ga ispravno postavite"
#: frappe/utils/dashboard.py:61
msgid "Invalid Filter Value"
-msgstr ""
+msgstr "Nevažeća Vrijednost Filtera"
#: frappe/website/doctype/website_settings/website_settings.py:83
msgid "Invalid Home Page"
-msgstr ""
+msgstr "Nevažeća Početna Stranica"
#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
msgid "Invalid Link"
-msgstr ""
+msgstr "Nevažeća Veza"
#: frappe/www/login.py:128
msgid "Invalid Login Token"
-msgstr ""
+msgstr "Nevažeći Token Prijave"
#: frappe/templates/includes/login/login.js:290
msgid "Invalid Login. Try again."
-msgstr ""
+msgstr "Nevažeća Prijava. Pokušaj ponovo."
#: frappe/email/receive.py:112 frappe/email/receive.py:149
msgid "Invalid Mail Server. Please rectify and try again."
-msgstr ""
+msgstr "Nevažeći Server Pošte. Ispravi i pokušaj ponovo."
#: frappe/model/naming.py:101
msgid "Invalid Naming Series: {}"
-msgstr ""
+msgstr "Nevažeća Serija Imenovanja: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
-msgstr ""
+msgstr "Nevažeća Operacija"
#: frappe/core/doctype/doctype/doctype.py:1641
#: frappe/core/doctype/doctype/doctype.py:1650
msgid "Invalid Option"
-msgstr ""
+msgstr "Nevažeća Opcija"
#: frappe/email/smtp.py:103
msgid "Invalid Outgoing Mail Server or Port: {0}"
-msgstr ""
+msgstr "Nevažeći Server Odlazne Pošte ili port: {0}"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
msgid "Invalid Output Format"
-msgstr ""
+msgstr "Nevažeći Izlazni Format"
#: frappe/model/base_document.py:116
msgid "Invalid Override"
-msgstr ""
+msgstr "Nevažeće Nadjačavanje"
#: frappe/integrations/doctype/connected_app/connected_app.py:195
msgid "Invalid Parameters."
-msgstr ""
+msgstr "Nevažeći Parametri."
#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
-msgstr ""
+msgstr "Nevažeća Lozinka"
#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
-msgstr ""
+msgstr "Nevažeći Broj Telefona"
#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
-msgstr ""
+msgstr "Nevažeći Zahtjev"
#: frappe/desk/search.py:26
msgid "Invalid Search Field {0}"
-msgstr ""
+msgstr "Nevažeće Polje Pretrage {0}"
#: frappe/core/doctype/doctype/doctype.py:1214
msgid "Invalid Table Fieldname"
-msgstr ""
+msgstr "Nevažeći Naziv Polja Tabele"
#: frappe/public/js/workflow_builder/store.js:192
msgid "Invalid Transition"
-msgstr ""
+msgstr "Nevažeća Tranzicija"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
-msgstr ""
+msgstr "Nevažeći URL"
#: frappe/email/receive.py:157
msgid "Invalid User Name or Support Password. Please rectify and try again."
-msgstr ""
+msgstr "Nevažeće Korisničko Ime ili Lozinka Podrške. Ispravi i pokušaj ponovo."
#: frappe/public/js/frappe/ui/field_group.js:137
msgid "Invalid Values"
-msgstr ""
+msgstr "Nevažeće Vrijednosti"
#: frappe/integrations/doctype/webhook/webhook.py:116
msgid "Invalid Webhook Secret"
-msgstr ""
+msgstr "Nevažeća Tajna Webhooka"
#: frappe/desk/reportview.py:186
msgid "Invalid aggregate function"
-msgstr ""
+msgstr "Nevažeća agregatna funkcija"
#: frappe/database/query.py:1542
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
-msgstr ""
+msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator."
#: frappe/database/query.py:1468
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
-msgstr ""
+msgstr "Nevažeći format argumenta: {0}. Dopušteni su samo navodni znakovni literali ili jednostavna imena polja."
#: frappe/database/query.py:1444
msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
-msgstr ""
+msgstr "Nevažeća vrsta argumenta: {0}. Dopušteni su samo nizovi, brojevi i None."
#: frappe/database/query.py:460
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
-msgstr ""
+msgstr "Nevažeći znakovi u nazivu polja: {0}. Dopušteni su samo slova, brojevi i podcrte."
#: frappe/database/query.py:575
msgid "Invalid characters in table name: {0}"
-msgstr ""
+msgstr "Nevažeći znakovi u nazivu tablice: {0}"
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
-msgstr ""
+msgstr "Nevažeća kolona"
#: frappe/database/query.py:381
msgid "Invalid condition type in nested filters: {0}"
-msgstr ""
+msgstr "Nevažeća vrsta uvjeta u ugniježđenim filtrima: {0}"
#: frappe/database/query.py:787
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
-msgstr ""
+msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'."
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
-msgstr ""
+msgstr "Nevažeći status dokumenta"
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
-msgstr ""
+msgstr "Nevažeći izraz postavljen u filteru {0}"
#: frappe/public/js/frappe/utils/dashboard_utils.js:219
msgid "Invalid expression set in filter {0} ({1})"
-msgstr ""
+msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
#: frappe/database/query.py:1301
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
-msgstr ""
+msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, s obrnutim ukrštenim slovima, kvalificirani prema tablici, aliasi ili '*'."
#: frappe/database/query.py:734
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
-msgstr ""
+msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'."
#: frappe/database/query.py:1620
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
-msgstr ""
+msgstr "Nevažeći naziv polja u funkciji: {0}. Dopušteni su samo jednostavni nazivi polja."
#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
-msgstr ""
+msgstr "Nevažeći naziv polja {0}"
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
-msgstr ""
+msgstr "Nevažeći tip polja: {0}"
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
-msgstr ""
+msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu"
#: frappe/deprecation_dumpster.py:283
msgid "Invalid file path: {0}"
-msgstr ""
+msgstr "Nevažeći put datoteke: {0}"
#: frappe/database/query.py:364
msgid "Invalid filter condition: {0}. Expected a list or tuple."
-msgstr ""
+msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka."
#: frappe/database/query.py:450
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
-msgstr ""
+msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'."
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
-msgstr ""
+msgstr "Nevažeći filter: {0}"
#: frappe/database/query.py:1422
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
-msgstr ""
+msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None."
#: frappe/database/query.py:1383
msgid "Invalid function dictionary format"
-msgstr ""
+msgstr "Nevažeći format rječnika funkcija"
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
-msgstr ""
+msgstr "Nevažeći json dodan u prilagođene opcije: {0}"
#: frappe/model/naming.py:490
msgid "Invalid name type (integer) for varchar name column"
-msgstr ""
+msgstr "Nevažeći tip imena (cijeli broj) za kolonu imena varchar"
#: frappe/model/naming.py:62
msgid "Invalid naming series {}: dot (.) missing"
-msgstr ""
+msgstr "Nevažeća serija imenovanja {}: nedostaje tačka (.)"
#: frappe/core/doctype/data_import/importer.py:453
msgid "Invalid or corrupted content for import"
-msgstr ""
+msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
#: frappe/website/doctype/website_settings/website_settings.py:139
msgid "Invalid redirect regex in row #{}: {}"
-msgstr ""
+msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
#: frappe/app.py:316
msgid "Invalid request arguments"
-msgstr ""
+msgstr "Nevažeći argumenti zahtjeva"
#: frappe/database/query.py:410
msgid "Invalid simple filter format: {0}"
-msgstr ""
+msgstr "Nevažeći format jednostavnog filtra: {0}"
#: frappe/database/query.py:341
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
-msgstr ""
+msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka."
#: frappe/database/query.py:1489
msgid "Invalid string literal format: {0}"
-msgstr ""
+msgstr "Nevažeći format niza literala: {0}"
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
-msgstr ""
+msgstr "Nevažeća datoteka šablona za uvoz"
#: frappe/integrations/doctype/connected_app/connected_app.py:201
msgid "Invalid token state! Check if the token has been created by the OAuth user."
-msgstr ""
+msgstr "Nevažeće stanje tokena! Provjeri je li token kreirao OAuth korisnik."
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
msgid "Invalid username or password"
-msgstr ""
+msgstr "Neispravno korisničko Ime ili lozinka"
#: frappe/model/naming.py:168
msgid "Invalid value specified for UUID: {}"
-msgstr ""
+msgstr "Nevažeća vrijednost navedena za UUID: {}"
#: frappe/public/js/frappe/web_form/web_form.js:229
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
-msgstr ""
+msgstr "Nevažeće vrijednosti za polja:"
#: frappe/printing/page/print/print.js:614
msgid "Invalid wkhtmltopdf version"
-msgstr ""
+msgstr "Nevažeća verzija wkhtmltopdf"
#: frappe/core/doctype/doctype/doctype.py:1564
msgid "Invalid {0} condition"
-msgstr ""
+msgstr "Nevažeći {0} uslov"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Inverse"
-msgstr ""
+msgstr "Obrnuto"
#: frappe/contacts/doctype/contact/contact.js:30
msgid "Invite as User"
-msgstr ""
+msgstr "Kreiraj Korisnika"
#: frappe/public/js/frappe/ui/filters/filter.js:22
msgid "Is"
-msgstr ""
+msgstr "Je"
#. Label of the is_active (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Is Active"
-msgstr ""
+msgstr "Aktivan"
#. Label of the is_attachments_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr ""
+msgstr "Je Mapa Priloga"
#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType'
#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Calendar and Gantt"
-msgstr ""
+msgstr "Je Kalendar i Gantt"
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
@@ -13454,31 +13463,31 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype_list.js:49
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Is Child Table"
-msgstr ""
+msgstr "Je Podređena Tabela"
#. Label of the is_complete (Check) field in DocType 'Module Onboarding'
#. Label of the is_complete (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Complete"
-msgstr ""
+msgstr "Je Završeno"
#. Label of the is_completed (Check) field in DocType 'Email Flag Queue'
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Is Completed"
-msgstr ""
+msgstr "Je Završeno"
#. Label of the is_custom (Check) field in DocType 'Role'
#. Label of the is_custom (Check) field in DocType 'User Document Type'
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Is Custom"
-msgstr ""
+msgstr "Je Prilagođeno"
#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field'
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Custom Field"
-msgstr ""
+msgstr "Je Prilagođeno Polje"
#. Label of the is_default (Check) field in DocType 'Address Template'
#. Label of the is_default (Check) field in DocType 'User Permission'
@@ -13488,101 +13497,101 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:69
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Is Default"
-msgstr ""
+msgstr "Je Standard"
#. Label of the is_dynamic_url (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Is Dynamic URL?"
-msgstr ""
+msgstr "Je Dinamički URL?"
#. Label of the is_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr ""
+msgstr "Je Mapa"
#: frappe/public/js/frappe/list/list_filter.js:43
msgid "Is Global"
-msgstr ""
+msgstr "Je Globalno"
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
-msgstr ""
+msgstr "Je Skriveno"
#. Label of the is_home_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr ""
+msgstr "Je početna fascikla"
#. Label of the reqd (Check) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr ""
+msgstr "Je Obavezno Polje"
#. Label of the is_optional_state (Check) field in DocType 'Workflow Document
#. State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Is Optional State"
-msgstr ""
+msgstr "Je Opciono Stanje"
#. Label of the is_primary (Check) field in DocType 'Contact Email'
#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr ""
+msgstr "Je Primarno"
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Is Primary Contact"
-msgstr ""
+msgstr "Je Primarni Kontakt"
#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Mobile"
-msgstr ""
+msgstr "Je Primarni Mobilni"
#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Phone"
-msgstr ""
+msgstr "Je Primarni Telefon"
#. Label of the is_private (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr ""
+msgstr "Je Privatno"
#. Label of the is_public (Check) field in DocType 'Dashboard Chart'
#. Label of the is_public (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Is Public"
-msgstr ""
+msgstr "Je Javno"
#. Label of the is_published_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr ""
+msgstr "Je Objavljeno Polje"
#: frappe/core/doctype/doctype/doctype.py:1515
msgid "Is Published Field must be a valid fieldname"
-msgstr ""
+msgstr "Je Objavljeno Polje mora biti važeći naziv polja"
#. Label of the is_query_report (Check) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
-msgstr ""
+msgstr "Je Izvještaj Upita"
#. Label of the is_remote_request (Check) field in DocType 'Integration
#. Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Is Remote Request?"
-msgstr ""
+msgstr "Je Daljinski Zahtjev?"
#. Label of the is_setup_complete (Check) field in DocType 'Installed
#. Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Is Setup Complete?"
-msgstr ""
+msgstr "Je li postavljanje dovršeno?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
@@ -13590,17 +13599,17 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype_list.js:64
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
-msgstr ""
+msgstr "Je Sam"
#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr ""
+msgstr "Je Preskočen"
#. Label of the is_spam (Check) field in DocType 'Email Rule'
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr ""
+msgstr "Je Neželjena Pošta"
#. Label of the is_standard (Check) field in DocType 'Navbar Item'
#. Label of the is_standard (Select) field in DocType 'Report'
@@ -13619,13 +13628,13 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr ""
+msgstr "Je Standard"
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype_list.js:39
msgid "Is Submittable"
-msgstr ""
+msgstr "Je Podnošljiv"
#. Label of the is_system_generated (Check) field in DocType 'Custom Field'
#. Label of the is_system_generated (Check) field in DocType 'Customize Form
@@ -13635,27 +13644,27 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Is System Generated"
-msgstr ""
+msgstr "Je Sistem Generisano"
#. Label of the istable (Check) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr ""
+msgstr "Je Tabela"
#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Is Table Field"
-msgstr ""
+msgstr "Je Polje Tabele"
#. Label of the is_tree (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr ""
+msgstr "Je Stablo"
#. Label of the is_unique (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Is Unique"
-msgstr ""
+msgstr "Je Unikatno"
#. Label of the is_virtual (Check) field in DocType 'DocType'
#. Label of the is_virtual (Check) field in DocType 'Custom Field'
@@ -13664,40 +13673,40 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Virtual"
-msgstr ""
+msgstr "Je Virtualan"
#. Label of the is_standard (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Is standard"
-msgstr ""
+msgstr "Je Standard"
#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311
msgid "It is risky to delete this file: {0}. Please contact your System Manager."
-msgstr ""
+msgstr "Rizično je brisati ovu datoteku: {0}. Kontaktiraj Upravitelja Sistema."
#. Label of the item_label (Data) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr ""
+msgstr "Oznaka Artikla"
#. Label of the item_type (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr ""
+msgstr "Tip Artikla"
#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
-msgstr ""
+msgstr "Artikal se ne može dodati svom podređenom"
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "JS"
-msgstr ""
+msgstr "JS"
#. Label of the js_message (HTML) field in DocType 'Custom HTML Block'
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "JS Message"
-msgstr ""
+msgstr "JS Poruka"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the json (Code) field in DocType 'Report'
@@ -13710,26 +13719,26 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON"
-msgstr ""
+msgstr "JSON"
#. Label of the webhook_json (Code) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON Request Body"
-msgstr ""
+msgstr "JSON Tijelo Zahtjeva"
#: frappe/templates/signup.html:5
msgid "Jane Doe"
-msgstr ""
+msgstr "Jane Doe"
#. Label of the js (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "JavaScript"
-msgstr ""
+msgstr "JavaScript"
#. Description of the 'Javascript' (Code) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
-msgstr ""
+msgstr "JavaScript format: frappe.query_reports['REPORTNAME'] = {}"
#. Label of the javascript (Code) field in DocType 'Report'
#. Label of the javascript_section (Section Break) field in DocType 'Custom
@@ -13741,78 +13750,78 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_script/website_script.json
msgid "Javascript"
-msgstr ""
+msgstr "JavaScript"
#: frappe/www/login.html:74
msgid "Javascript is disabled on your browser"
-msgstr ""
+msgstr "Javascript je onemogućen na vašem pretraživaču"
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Jinja"
-msgstr ""
+msgstr "Jinja"
#. Label of the job_id (Data) field in DocType 'Prepared Report'
#. Label of the job_id (Data) field in DocType 'RQ Job'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job ID"
-msgstr ""
+msgstr "ID Posla"
#. Label of the job_id (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Job Id"
-msgstr ""
+msgstr "Id Posla"
#. Label of the job_info_section (Section Break) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Info"
-msgstr ""
+msgstr "Informacije Posla"
#. Label of the job_name (Data) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Name"
-msgstr ""
+msgstr "Naziv Posla"
#. Label of the job_status_section (Section Break) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Status"
-msgstr ""
+msgstr "Status Posla"
#: frappe/core/doctype/rq_job/rq_job.js:24
msgid "Job Stopped Successfully"
-msgstr ""
+msgstr "Posao Uspješno Zaustavljen"
#: frappe/core/doctype/rq_job/rq_job.py:121
msgid "Job is in {0} state and can't be cancelled"
-msgstr ""
+msgstr "Posao je u {0} stanju i ne može se otkazati"
#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Job is not running."
-msgstr ""
+msgstr "Posao se ne izvodi."
#: frappe/desk/doctype/event/event.js:55
msgid "Join video conference with {0}"
-msgstr ""
+msgstr "Pridruži se video konferenciji sa {0}"
#: frappe/public/js/frappe/form/toolbar.js:395
#: frappe/public/js/frappe/form/toolbar.js:830
msgid "Jump to field"
-msgstr ""
+msgstr "Skoči na polje"
#: frappe/public/js/frappe/utils/number_systems.js:17
#: frappe/public/js/frappe/utils/number_systems.js:31
#: frappe/public/js/frappe/utils/number_systems.js:53
msgctxt "Number system"
msgid "K"
-msgstr ""
+msgstr "K"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Kanban"
-msgstr ""
+msgstr "Oglasna Tabla"
#. Name of a DocType
#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut'
@@ -13820,37 +13829,37 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
-msgstr ""
+msgstr "Oglasna Tabla"
#. Name of a DocType
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Kanban Board Column"
-msgstr ""
+msgstr "Kolona Oglasne Table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
-msgstr ""
+msgstr "Naziv Oglasne Table"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
-msgstr ""
+msgstr "Postavke Oglasne Table"
#: frappe/public/js/frappe/list/base_list.js:206
msgid "Kanban View"
-msgstr ""
+msgstr "Prikaz Oglasne Table"
#. Description of a DocType
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Keep track of all update feeds"
-msgstr ""
+msgstr "Pratite sve feedove ažuriranja"
#. Description of a DocType
#: frappe/core/doctype/communication/communication.json
msgid "Keeps track of all communications"
-msgstr ""
+msgstr "Prati Konverzaciju"
#. Label of the defkey (Data) field in DocType 'DefaultValue'
#. Label of the key (Data) field in DocType 'Document Share Key'
@@ -13865,24 +13874,24 @@ msgstr ""
#: frappe/integrations/doctype/webhook_header/webhook_header.json
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr ""
+msgstr "Ključ"
#. Label of a standard help item
#. Type: Action
#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130
msgid "Keyboard Shortcuts"
-msgstr ""
+msgstr "Prečice Tastature"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Keycloak"
-msgstr ""
+msgstr "Keycloak"
#: frappe/public/js/frappe/utils/number_systems.js:37
msgctxt "Number system"
msgid "Kh"
-msgstr ""
+msgstr "Kh"
#. Label of a Card Break in the Website Workspace
#: frappe/website/doctype/help_article/help_article.py:80
@@ -13890,165 +13899,165 @@ msgstr ""
#: frappe/website/doctype/help_article/templates/help_article_list.html:11
#: frappe/website/workspace/website/website.json
msgid "Knowledge Base"
-msgstr ""
+msgstr "Baza Znanja"
#. Name of a role
#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Contributor"
-msgstr ""
+msgstr "Saradnik Baze Znanja"
#. Name of a role
#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Editor"
-msgstr ""
+msgstr "Uređivač Baze Znanja"
#: frappe/public/js/frappe/utils/number_systems.js:27
#: frappe/public/js/frappe/utils/number_systems.js:49
msgctxt "Number system"
msgid "L"
-msgstr ""
+msgstr "L"
#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
-msgstr ""
+msgstr "LDAP autentifikacija"
#. Label of the ldap_custom_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Custom Settings"
-msgstr ""
+msgstr "LDAP Prilagođene Postavke"
#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr ""
+msgstr "LDAP Polje e-pošte"
#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr ""
+msgstr "LDAP Polje Imena"
#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr ""
+msgstr "LDAP Grupa"
#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr ""
+msgstr "LDAP Polje Grupe"
#. Name of a DocType
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group Mapping"
-msgstr ""
+msgstr "LDAP Mapiranje Grupe"
#. Label of the ldap_group_mappings_section (Section Break) field in DocType
#. 'LDAP Settings'
#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr ""
+msgstr "LDAP Grupna Mapiranja"
#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Member attribute"
-msgstr ""
+msgstr "LDAP Atribut Člana Grupe"
#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr ""
+msgstr "LDAP Polje Prezimena"
#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr ""
+msgstr "LDAP Polje Srednjeg Imena"
#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr ""
+msgstr "LDAP Polje Mobilnog"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
-msgstr ""
+msgstr "LDAP Nije Instaliran"
#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr ""
+msgstr "LDAP Telefonsko Polje"
#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr ""
+msgstr "LDAP Niz Pretraživanja"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
-msgstr ""
+msgstr "LDAP niz za pretraživanje mora biti priložen u '()' i mora sadržavati rezervisano mjesto korisnika {0}, npr. sAMAccountName={0}"
#. Label of the ldap_search_and_paths_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search and Paths"
-msgstr ""
+msgstr "LDAP Pretraga i Putanje"
#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr ""
+msgstr "LDAP Sigurnost"
#. Label of the ldap_server_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Settings"
-msgstr ""
+msgstr "LDAP Postavke Servera"
#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Url"
-msgstr ""
+msgstr "LDAP URL Servera"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "LDAP Settings"
-msgstr ""
+msgstr "LDAP Postavke"
#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in
#. DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP User Creation and Mapping"
-msgstr ""
+msgstr "LDAP Kreiranje i Mapiranje Korisnika"
#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr ""
+msgstr "LDAP Polje Korisničkog Imena"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426
msgid "LDAP is not enabled."
-msgstr ""
+msgstr "LDAP Onemogućen."
#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Groups"
-msgstr ""
+msgstr "LDAP Put Pretraživanja za Grupe"
#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Users"
-msgstr ""
+msgstr "LDAP put pretraživanja za Korisnike"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
-msgstr ""
+msgstr "LDAP postavke su netačne. odgovor validacije je bio: {0}"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Label of the label (Data) field in DocType 'DocField'
@@ -14099,31 +14108,31 @@ msgstr ""
#: frappe/website/doctype/top_bar_item/top_bar_item.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Label"
-msgstr ""
+msgstr "Oznaka"
#. Label of the label_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr ""
+msgstr "Pomoć za Oznake"
#. Label of the label_and_type (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Label and Type"
-msgstr ""
+msgstr "Oznaka i Tip"
#: frappe/custom/doctype/custom_field/custom_field.py:145
msgid "Label is mandatory"
-msgstr ""
+msgstr "Oznaka je obavezna"
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr ""
+msgstr "Početna Stranica"
#: frappe/public/js/frappe/form/print_utils.js:30
msgid "Landscape"
-msgstr ""
+msgstr "Pejzaž"
#. Name of a DocType
#. Label of the language (Link) field in DocType 'System Settings'
@@ -14135,100 +14144,100 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
-msgstr ""
+msgstr "Jezik"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr ""
+msgstr "Kod Jezika"
#. Label of the language_name (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr ""
+msgstr "Naziv Jezika"
#. Label of the last_10_active_users (Code) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Last 10 active users"
-msgstr ""
+msgstr "Zadnjih 10 aktivnih korisnika"
#: frappe/public/js/frappe/ui/filters/filter.js:628
msgid "Last 14 Days"
-msgstr ""
+msgstr "Posljednjih 14 Dana"
#: frappe/public/js/frappe/ui/filters/filter.js:632
msgid "Last 30 Days"
-msgstr ""
+msgstr "Posljednjih 30 Dana"
#: frappe/public/js/frappe/ui/filters/filter.js:652
msgid "Last 6 Months"
-msgstr ""
+msgstr "Poslednjih 6 Mjeseci"
#: frappe/public/js/frappe/ui/filters/filter.js:624
msgid "Last 7 Days"
-msgstr ""
+msgstr "Posljednjih 7 Dana"
#: frappe/public/js/frappe/ui/filters/filter.js:636
msgid "Last 90 Days"
-msgstr ""
+msgstr "Posljednjih 90 Dana"
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr ""
+msgstr "Zadnja Aktivnost"
#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
-msgstr ""
+msgstr "Zadnje Izvršavanje"
#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Last Heartbeat"
-msgstr ""
+msgstr "Zadnji Otkucaji"
#. Label of the last_ip (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr ""
+msgstr "Zadnji IP"
#. Label of the last_known_versions (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr ""
+msgstr "Posljednja Poznate Verzije"
#. Label of the last_login (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr ""
+msgstr "Zadnja Prijava"
#: frappe/email/doctype/notification/notification.js:32
msgid "Last Modified Date"
-msgstr ""
+msgstr "Datum Posljednje Izmjene"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480
msgid "Last Modified On"
-msgstr ""
+msgstr "Zadnji Put Izmjenjeno"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:644
msgid "Last Month"
-msgstr ""
+msgstr "Prošli Mjesec"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
msgid "Last Name"
-msgstr ""
+msgstr "Prezime"
#. Label of the last_password_reset_date (Date) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Password Reset Date"
-msgstr ""
+msgstr "Poslednji Datum Poništavanja Lozinke"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -14240,42 +14249,42 @@ msgstr "Prošlo Tromjesečje"
#. DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Reset Password Key Generated On"
-msgstr ""
+msgstr "Ključ Poništavanje Lozinke je zadnji put generisan"
#. Label of the datetime_last_run (Datetime) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Last Run"
-msgstr ""
+msgstr "Zadnje Izvođenje"
#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Last Sync On"
-msgstr ""
+msgstr "Zadnja Sinhronizacija"
#. Label of the last_synced_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Last Synced At"
-msgstr ""
+msgstr "Zadnja Sinhronizacija"
#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Last Synced On"
-msgstr ""
+msgstr "Zadnja Sinhronizacija"
#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205
#: frappe/public/js/frappe/model/model.js:130
msgid "Last Updated By"
-msgstr ""
+msgstr "Posljednji put Ažurirano od"
#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204
#: frappe/public/js/frappe/model/model.js:126
msgid "Last Updated On"
-msgstr ""
+msgstr "Zadnji put Ažurirano"
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr ""
+msgstr "Zadnji Korisnik"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -14287,38 +14296,38 @@ msgstr "Prošli Tjedan"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:656
msgid "Last Year"
-msgstr ""
+msgstr "Prošle Godine"
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
-msgstr ""
+msgstr "Zadnja Sinhronizacija {0}"
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
-msgstr ""
+msgstr "Poništi Izgled"
#: frappe/custom/doctype/customize_form/customize_form.js:186
msgid "Layout will be reset to standard layout, are you sure you want to do this?"
-msgstr ""
+msgstr "Izgled će biti vraćen na standardni izgled, jeste li sigurni da želite to učiniti?"
#: frappe/website/web_template/section_with_features/section_with_features.html:26
msgid "Learn more"
-msgstr ""
+msgstr "Saznaj Više"
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr ""
+msgstr "Ostavite prazno da se uvijek ponavlja"
#: frappe/core/doctype/communication/mixins.py:207
#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
-msgstr ""
+msgstr "Napusti ovu konverzaciju"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Ledger"
-msgstr ""
+msgstr "Registar"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
@@ -14327,32 +14336,32 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Left"
-msgstr ""
+msgstr "Lijevo"
#: frappe/printing/page/print_format_builder/print_format_builder.js:483
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155
msgctxt "alignment"
msgid "Left"
-msgstr ""
+msgstr "Lijevo"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Bottom"
-msgstr ""
+msgstr "Lijevo Dno"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Center"
-msgstr ""
+msgstr "Lijevo Centar"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58
msgid "Left this conversation"
-msgstr ""
+msgstr "Napustio je ovaj razgovor"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Legal"
-msgstr ""
+msgstr "Pravno"
#. Label of the length (Int) field in DocType 'DocField'
#. Label of the length (Int) field in DocType 'Custom Field'
@@ -14361,56 +14370,56 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Length"
-msgstr ""
+msgstr "Dužina"
#: frappe/public/js/frappe/ui/chart.js:11
msgid "Length of passed data array is greater than value of maximum allowed label points!"
-msgstr ""
+msgstr "Dužina proslijeđenog niza podataka veća je od vrijednosti maksimalno dopuštenih bodova oznake!"
#: frappe/database/schema.py:134
msgid "Length of {0} should be between 1 and 1000"
-msgstr ""
+msgstr "Dužina {0} bi trebala biti između 1 i 1000"
#: frappe/public/js/frappe/widgets/chart_widget.js:729
msgid "Less"
-msgstr ""
+msgstr "Manje"
#: frappe/public/js/frappe/ui/filters/filter.js:24
msgid "Less Than"
-msgstr ""
+msgstr "Manje Od"
#: frappe/public/js/frappe/ui/filters/filter.js:26
msgid "Less Than Or Equal To"
-msgstr ""
+msgstr "Manje Od ili Jednako"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Let us continue with the onboarding"
-msgstr ""
+msgstr "Nastavimo sa Introdukcijom"
#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94
#: frappe/public/js/frappe/widgets/onboarding_widget.js:597
msgid "Let's Get Started"
-msgstr ""
+msgstr "Hajde da Počnemo"
#: frappe/utils/password_strength.py:111
msgid "Let's avoid repeated words and characters"
-msgstr ""
+msgstr "Hajde da izbjegnemo ponavljane riječi i znakova"
#: frappe/desk/page/setup_wizard/setup_wizard.js:474
msgid "Let's set up your account"
-msgstr ""
+msgstr "Hajde da postavimo vaš račun"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:263
#: frappe/public/js/frappe/widgets/onboarding_widget.js:304
#: frappe/public/js/frappe/widgets/onboarding_widget.js:375
#: frappe/public/js/frappe/widgets/onboarding_widget.js:414
msgid "Let's take you back to onboarding"
-msgstr ""
+msgstr "Hajde da vas vratimo na introdukciju"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr ""
+msgstr "Pismo"
#. Label of the letter_head (Link) field in DocType 'Report'
#. Name of a DocType
@@ -14422,38 +14431,38 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
msgid "Letter Head"
-msgstr ""
+msgstr "Zaglavlje"
#. Label of the source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Based On"
-msgstr ""
+msgstr "Zaglavlje Pisma na Osnovu"
#. Label of the letter_head_image_section (Section Break) field in DocType
#. 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Image"
-msgstr ""
+msgstr "Slika Zaglavlja"
#. Label of the letter_head_name (Data) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198
msgid "Letter Head Name"
-msgstr ""
+msgstr "Naziv Zaglavlja"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Letter Head Scripts"
-msgstr ""
+msgstr "Skripte Zaglavlja"
#: frappe/printing/doctype/letter_head/letter_head.py:48
msgid "Letter Head cannot be both disabled and default"
-msgstr ""
+msgstr "Zaglavlje ne može biti istovremeno onemogućeno i standard"
#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr ""
+msgstr "Zaglavlje u HTML-u"
#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
#. Label of the permlevel (Int) field in DocType 'DocPerm'
@@ -14465,85 +14474,85 @@ msgstr ""
#: frappe/public/js/frappe/roles_editor.js:66
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
-msgstr ""
+msgstr "Nivo"
#: frappe/core/page/permission_manager/permission_manager.js:467
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
-msgstr ""
+msgstr "Nivo 0 je za dozvole na nivou dokumenta, viši nivoi za dozvole na nivou polja."
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94
msgid "Library"
-msgstr ""
+msgstr "Biblioteka"
#. Label of the license (Markdown Editor) field in DocType 'Package'
#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36
msgid "License"
-msgstr ""
+msgstr "Licenca"
#. Label of the license_type (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "License Type"
-msgstr ""
+msgstr "Tip Licence"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Light"
-msgstr ""
+msgstr "Svijetlo"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Light Blue"
-msgstr ""
+msgstr "Svijetlo Plava"
#. Label of the light_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr ""
+msgstr "Svijetla Boja"
#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
-msgstr ""
+msgstr "Svijetla Tema"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
-msgstr ""
+msgstr "Lajk"
#. Label of the like_limit (Int) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit"
-msgstr ""
+msgstr "Ograničenje Lajkova"
#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit per hour"
-msgstr ""
+msgstr "Ograničenje lajkova po satu"
#: frappe/templates/includes/likes/likes.py:30
msgid "Like on {0}: {1}"
-msgstr ""
+msgstr "Lajk na {0}: {1}"
#: frappe/desk/like.py:92
msgid "Liked"
-msgstr ""
+msgstr "Lajk"
#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:134
msgid "Liked By"
-msgstr ""
+msgstr "Lajkad Od"
#. Label of the likes (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Likes"
-msgstr ""
+msgstr "Lajkova"
#. Label of the limit (Int) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Limit"
-msgstr ""
+msgstr "Ograniči"
#: frappe/database/query.py:116
msgid "Limit must be a non-negative integer"
@@ -14552,7 +14561,7 @@ msgstr "Granica mora biti cijeli broj koji nije negativan"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
-msgstr ""
+msgstr "Linija"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -14580,23 +14589,23 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Link"
-msgstr ""
+msgstr "Veza"
#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr ""
+msgstr "Kartice Veza"
#. Label of the link_count (Int) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Count"
-msgstr ""
+msgstr "Broj Veza"
#. Label of the link_details_section (Section Break) field in DocType
#. 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Details"
-msgstr ""
+msgstr "Detalji Veze"
#. Label of the link_doctype (Link) field in DocType 'Activity Log'
#. Label of the link_doctype (Link) field in DocType 'Communication Link'
@@ -14605,28 +14614,28 @@ msgstr ""
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr ""
+msgstr "DocType Veza"
#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Document Type"
-msgstr ""
+msgstr "Veza Tipa Dokumenta"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
msgid "Link Expired"
-msgstr ""
+msgstr "Veza Istekla"
#. Label of the link_field_results_limit (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Link Field Results Limit"
-msgstr ""
+msgstr "Ograničenje Rezultata Polja Veze"
#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr ""
+msgstr "Naziv Polja Veze"
#. Label of the link_filters (JSON) field in DocType 'DocField'
#. Label of the link_filters (JSON) field in DocType 'Custom Field'
@@ -14637,7 +14646,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Link Filters"
-msgstr ""
+msgstr "Filteri Veza"
#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log'
#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link'
@@ -14646,14 +14655,14 @@ msgstr ""
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr ""
+msgstr "Naziv Veze"
#. Label of the link_title (Read Only) field in DocType 'Communication Link'
#. Label of the link_title (Read Only) field in DocType 'Dynamic Link'
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Title"
-msgstr ""
+msgstr "Naziv Veze"
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link'
@@ -14665,11 +14674,11 @@ msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr ""
+msgstr "Poveži Sa"
#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
-msgstr ""
+msgstr "Poveži sa Redom"
#. Label of the link_type (Select) field in DocType 'Workspace'
#. Label of the link_type (Select) field in DocType 'Workspace Link'
@@ -14678,36 +14687,36 @@ msgstr ""
#: frappe/public/js/frappe/views/workspace/workspace.js:410
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
-msgstr ""
+msgstr "Tip Veze"
#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
-msgstr ""
+msgstr "Tip Veze u Redu"
#: frappe/website/doctype/about_us_settings/about_us_settings.js:6
msgid "Link for About Us Page is \"/about\"."
-msgstr ""
+msgstr "Veza za stranicu O nama je \"/about\"."
#. Description of the 'Home Page' (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)"
-msgstr ""
+msgstr "Veza koja je početna stranica web stranice. Standardni linkovi (početna, prijava, proizvodi, blog, o, kontakt)"
#. Description of the 'URL' (Data) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Link to the page you want to open. Leave blank if you want to make it a group parent."
-msgstr ""
+msgstr "Veza do stranice koju želite otvoriti. Ostavite prazno ako želite da bude nadređena grupe."
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
#. Option for the 'Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
msgid "Linked"
-msgstr ""
+msgstr "Povezano"
#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
-msgstr ""
+msgstr "Povezano Sa"
#. Label of the links (Table) field in DocType 'Address'
#. Label of the links (Table) field in DocType 'Contact'
@@ -14722,7 +14731,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Links"
-msgstr ""
+msgstr "Veze"
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
#. Option for the 'View' (Select) field in DocType 'Form Tour'
@@ -14733,23 +14742,23 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/utils/utils.js:923
msgid "List"
-msgstr ""
+msgstr "Lista"
#. Label of the list__search_settings_section (Section Break) field in DocType
#. 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "List / Search Settings"
-msgstr ""
+msgstr "Lista / Postavke Pretrage"
#. Label of the list_columns (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "List Columns"
-msgstr ""
+msgstr "Izlistaj Kolone"
#. Name of a DocType
#: frappe/desk/doctype/list_filter/list_filter.json
msgid "List Filter"
-msgstr ""
+msgstr "Filter Liste"
#. Label of the list_settings_section (Section Break) field in DocType 'User'
#. Label of the section_break_8 (Section Break) field in DocType 'Customize
@@ -14759,73 +14768,73 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "List Settings"
-msgstr ""
+msgstr "Postavke Liste"
#: frappe/public/js/frappe/list/list_view.js:1846
msgctxt "Button in list view menu"
msgid "List Settings"
-msgstr ""
+msgstr "Postavke Liste"
#: frappe/public/js/frappe/list/base_list.js:202
msgid "List View"
-msgstr ""
+msgstr "Prikaz Liste"
#. Name of a DocType
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "List View Settings"
-msgstr ""
+msgstr "Postavke Prikaza Liste"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161
msgid "List a document type"
-msgstr ""
+msgstr "Izlistaj Tip Dokumenta"
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form'
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page'
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr ""
+msgstr "Izlistaj kao [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
#. Description of the 'Send Notification to' (Small Text) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "List of email addresses, separated by comma or new line."
-msgstr ""
+msgstr "Lista adresa e-pošte, odvojenih zarezom ili novim redom."
#. Description of a DocType
#: frappe/core/doctype/patch_log/patch_log.json
msgid "List of patches executed"
-msgstr ""
+msgstr "Lista izvršenih zakrpa"
#. Label of the list_setting_message (HTML) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "List setting message"
-msgstr ""
+msgstr "Poruka podešavanja liste"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542
msgid "Lists"
-msgstr ""
+msgstr "Liste"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr ""
+msgstr "Balansiranje Opterećenja"
#: frappe/public/js/frappe/list/base_list.js:388
#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
-msgstr ""
+msgstr "Učitaj Još"
#: frappe/public/js/frappe/form/footer/form_timeline.js:215
msgctxt "Form timeline"
msgid "Load More Communications"
-msgstr ""
+msgstr "Učitaj još Konverzacije"
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
msgid "Load more"
-msgstr ""
+msgstr "Učitaj više"
#: frappe/core/page/permission_manager/permission_manager.js:172
#: frappe/public/js/frappe/form/controls/multicheck.js:13
@@ -14835,19 +14844,19 @@ msgstr ""
#: frappe/public/js/frappe/ui/listing.html:16
#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
-msgstr ""
+msgstr "Učitava se"
#: frappe/public/js/frappe/widgets/widget_dialog.js:107
msgid "Loading Filters..."
-msgstr ""
+msgstr "Učitavanje Filtera u toku..."
#: frappe/core/doctype/data_import/data_import.js:257
msgid "Loading import file..."
-msgstr ""
+msgstr "Učitavanje datoteke za uvoz..."
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Loading versions..."
-msgstr ""
+msgstr "Učitavanje verzija u toku..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
#: frappe/public/js/frappe/form/sidebar/share.js:51
@@ -14858,67 +14867,67 @@ msgstr ""
#: frappe/public/js/frappe/widgets/number_card_widget.js:176
#: frappe/public/js/frappe/widgets/quick_list_widget.js:129
msgid "Loading..."
-msgstr ""
+msgstr "Učitavanje u toku..."
#. Label of the location (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Location"
-msgstr ""
+msgstr "Lokacija"
#. Label of the log (Code) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Log"
-msgstr ""
+msgstr "Dnevnik"
#. Label of the log_api_requests (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Log API Requests"
-msgstr ""
+msgstr "Zapisuj API Zahtjeve"
#. Label of the log_data_section (Section Break) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Log Data"
-msgstr ""
+msgstr "Podaci dnevnika"
#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Log DocType"
-msgstr ""
+msgstr "DocType Registara Sustava"
#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
-msgstr ""
+msgstr "Prijavite se na {0}"
#. Label of the log_index (Int) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Log Index"
-msgstr ""
+msgstr "Indeks Zapisnika"
#. Name of a DocType
#: frappe/core/doctype/log_setting_user/log_setting_user.json
msgid "Log Setting User"
-msgstr ""
+msgstr "Korisnik Postavki Zapisnika"
#. Name of a DocType
#: frappe/core/doctype/log_settings/log_settings.json
#: frappe/public/js/frappe/logtypes.js:20
msgid "Log Settings"
-msgstr ""
+msgstr "Postavke Zapisnika"
#: frappe/www/app.py:23
msgid "Log in to access this page."
-msgstr ""
+msgstr "Prijavite se da pristupite ovoj stranici."
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.py:182
msgid "Log out"
-msgstr ""
+msgstr "Odjava"
#: frappe/handler.py:118
msgid "Logged Out"
-msgstr ""
+msgstr "Odjavljen"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#. Label of the security_tab (Tab Break) field in DocType 'System Settings'
@@ -14932,90 +14941,90 @@ msgstr ""
#: frappe/website/page_renderers/not_permitted_page.py:24
#: frappe/www/login.html:45
msgid "Login"
-msgstr ""
+msgstr "Prijava"
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr ""
+msgstr "Prijava Nakon"
#. Label of the login_before (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr ""
+msgstr "Prijavia Prije"
#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
-msgstr ""
+msgstr "Prijava nije Uspjela, pokušaj ponovo"
#: frappe/email/doctype/email_account/email_account.py:144
msgid "Login Id is required"
-msgstr ""
+msgstr "Id Prijave je obavezan"
#. Label of the login_methods_section (Section Break) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login Methods"
-msgstr ""
+msgstr "Metode Prijave"
#. Label of the misc_section (Section Break) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Login Page"
-msgstr ""
+msgstr "Stranica Prijave"
#: frappe/www/login.py:156
msgid "Login To {0}"
-msgstr ""
+msgstr "Prijavite se na {0}"
#: frappe/twofactor.py:260
msgid "Login Verification Code from {}"
-msgstr ""
+msgstr "Kod Potvrdu Prijave od {}"
#: frappe/templates/emails/new_message.html:4
msgid "Login and view in Browser"
-msgstr ""
+msgstr "Prijavi se i pregledaj u Pretraživaču"
#: frappe/website/doctype/web_form/web_form.js:367
msgid "Login is required to see web form list view. Enable {0} to see list settings"
-msgstr ""
+msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste"
#: frappe/templates/includes/login/login.js:69
msgid "Login link sent to your email"
-msgstr ""
+msgstr "Veza za prijavu poslana je na vašu e-poštu"
#: frappe/auth.py:339 frappe/auth.py:342
msgid "Login not allowed at this time"
-msgstr ""
+msgstr "Prijava trenutno nije dozvoljena"
#. Label of the login_required (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Login required"
-msgstr ""
+msgstr "Prijava je obavezna"
#: frappe/twofactor.py:164
msgid "Login session expired, refresh page to retry"
-msgstr ""
+msgstr "Sesija prijave je istekla, osvježite stranicu za ponovni pokušaj"
#: frappe/templates/includes/comments/comments.html:110
msgid "Login to comment"
-msgstr ""
+msgstr "Prijavi se za komentar"
#: frappe/templates/includes/comments/comments.html:6
msgid "Login to start a new discussion"
-msgstr ""
+msgstr "Prijavi se da započnete novu diskusiju"
#: frappe/www/login.html:64
msgid "Login to {0}"
-msgstr ""
+msgstr "Prijavi se na {0}"
#: frappe/templates/includes/login/login.js:319
msgid "Login token required"
-msgstr ""
+msgstr "Token je obavezan za prijavu"
#: frappe/www/login.html:126 frappe/www/login.html:210
msgid "Login with Email Link"
-msgstr ""
+msgstr "Prijavi se putem e-mail veze"
#: frappe/www/login.html:116
msgid "Login with Frappe Cloud"
@@ -15023,64 +15032,64 @@ msgstr "Prijavite se s Frappe Cloudom"
#: frappe/www/login.html:49
msgid "Login with LDAP"
-msgstr ""
+msgstr "Prijavi se putem LDAP-a"
#. Label of the login_with_email_link (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link"
-msgstr ""
+msgstr "Prijavi se putem veze e-pošte"
#. Label of the login_with_email_link_expiry (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link expiry (in minutes)"
-msgstr ""
+msgstr "Prijavite se sa istekom veze e-pošte (u minutama)"
#: frappe/auth.py:144
msgid "Login with username and password is not allowed."
-msgstr ""
+msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena."
#: frappe/www/login.html:100
msgid "Login with {0}"
-msgstr ""
+msgstr "Prijavi se sa {0}"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
msgid "Logout"
-msgstr ""
+msgstr "Odjava"
#: frappe/core/doctype/user/user.js:197
msgid "Logout All Sessions"
-msgstr ""
+msgstr "Odjava sa Svih Sesija"
#. Label of the logout_on_password_reset (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr ""
+msgstr "Odjavi sa Svih Sesija pri Poništavanju Lozinke"
#. Label of the logout_all_sessions (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Logout From All Devices After Changing Password"
-msgstr ""
+msgstr "Odjava sa Svih Uređaja nakon Promjene Lozinke"
#. Group in User's connections
#. Label of a Card Break in the Users Workspace
#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Logs"
-msgstr ""
+msgstr "Zapisi"
#. Name of a DocType
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Logs To Clear"
-msgstr ""
+msgstr "Zapisi za Brisanje"
#. Label of the logs_to_clear (Table) field in DocType 'Log Settings'
#: frappe/core/doctype/log_settings/log_settings.json
msgid "Logs to Clear"
-msgstr ""
+msgstr "Zapisi za Brisanje"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -15089,80 +15098,80 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr ""
+msgstr "Dugi Tekst"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
-msgstr ""
+msgstr "Izgleda da niste promijenili vrijednost"
#: frappe/www/third_party_apps.html:59
msgid "Looks like you haven’t added any third party apps."
-msgstr ""
+msgstr "Izgleda da niste dodali nijednu aplikaciju trećih strana."
#: frappe/public/js/frappe/ui/notifications/notifications.js:315
msgid "Looks like you haven’t received any notifications."
-msgstr ""
+msgstr "Izgleda da niste primili nijedno obavještenje."
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:217
msgid "Low"
-msgstr ""
+msgstr "Nisko"
#: frappe/public/js/frappe/utils/number_systems.js:13
msgctxt "Number system"
msgid "M"
-msgstr ""
+msgstr "M"
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "MIT License"
-msgstr ""
+msgstr "MIT Licenca"
#: frappe/desk/page/setup_wizard/install_fixtures.py:48
msgid "Madam"
-msgstr ""
+msgstr "Gospođa"
#. Label of the main_section (Text Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section"
-msgstr ""
+msgstr "Glavna Sekcija"
#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (HTML)"
-msgstr ""
+msgstr "Glavna Sekcija (HTML)"
#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr ""
+msgstr "Glavna Sekcija (Markdown)"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance Manager"
-msgstr ""
+msgstr "Upravitelj Održavanja"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance User"
-msgstr ""
+msgstr "Korisnik Održavanja"
#. Label of the major (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Major"
-msgstr ""
+msgstr "Velika"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Make \"name\" searchable in Global Search"
-msgstr ""
+msgstr "Neka \"ime\" bude pretraživo u globalnoj pretrazi"
#. Label of the make_attachment_public (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Make Attachment Public (by default)"
-msgstr ""
+msgstr "Učini Prilog Javnim (standard)"
#. Label of the make_attachments_public (Check) field in DocType 'DocType'
#. Label of the make_attachments_public (Check) field in DocType 'Customize
@@ -15170,38 +15179,38 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make Attachments Public by Default"
-msgstr ""
+msgstr "Učini Priloge Javnim prema Standard Postavkama"
#. Description of the 'Disable Username/Password Login' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Make sure to configure a Social Login Key before disabling to prevent lockout"
-msgstr ""
+msgstr "Obavezno konfiguriši Društveni Ključ za prijavu prije deaktiviranja kako biste spriječili zaključavanje"
#: frappe/utils/password_strength.py:92
msgid "Make use of longer keyboard patterns"
-msgstr ""
+msgstr "Koristi duže mustre tastature"
#: frappe/public/js/frappe/form/multi_select_dialog.js:87
msgid "Make {0}"
-msgstr ""
+msgstr "Napravi {0}"
#: frappe/website/doctype/web_page/web_page.js:77
msgid "Makes the page public"
-msgstr ""
+msgstr "Čini stranicu javnom"
#: frappe/desk/page/setup_wizard/install_fixtures.py:28
msgid "Male"
-msgstr ""
+msgstr "Muško"
#: frappe/www/me.html:56
msgid "Manage 3rd party apps"
-msgstr ""
+msgstr "Upravljaj aplikacijama trećih strana"
#. Description of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Manage your data"
-msgstr ""
+msgstr "Upravljaj svojim podacima"
#. Label of the reqd (Check) field in DocType 'DocField'
#. Label of the mandatory (Check) field in DocType 'Report Filter'
@@ -15214,7 +15223,7 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Mandatory"
-msgstr ""
+msgstr "Obavezno"
#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field'
#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form
@@ -15224,112 +15233,112 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Mandatory Depends On"
-msgstr ""
+msgstr "Obavezno Zavisi od"
#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Mandatory Depends On (JS)"
-msgstr ""
+msgstr "Obavezno Zavisi od (JS)"
#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
-msgstr ""
+msgstr "Nedostaju obavezne informacije:"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
msgid "Mandatory field: set role for"
-msgstr ""
+msgstr "Obavezno polje: postavi ulogu za"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
msgid "Mandatory field: {0}"
-msgstr ""
+msgstr "Obavezno polje: {0}"
#: frappe/public/js/frappe/form/save.js:120
msgid "Mandatory fields required in table {0}, Row {1}"
-msgstr ""
+msgstr "Obavezna polja u tabeli {0}, red {1}"
#: frappe/public/js/frappe/form/save.js:125
msgid "Mandatory fields required in {0}"
-msgstr ""
+msgstr "Obavezna polja nedostaju u {0}"
#: frappe/public/js/frappe/web_form/web_form.js:234
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
-msgstr ""
+msgstr "Obavezna polja nedostaju:"
#: frappe/core/doctype/data_export/exporter.py:142
msgid "Mandatory:"
-msgstr ""
+msgstr "Obavezno:"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Map"
-msgstr ""
+msgstr "Karta"
#: frappe/public/js/frappe/data_import/import_preview.js:194
#: frappe/public/js/frappe/data_import/import_preview.js:306
msgid "Map Columns"
-msgstr ""
+msgstr "Kolone Karte"
#: frappe/public/js/frappe/list/base_list.js:211
msgid "Map View"
-msgstr ""
+msgstr "Prikaz Karte"
#: frappe/public/js/frappe/data_import/import_preview.js:294
msgid "Map columns from {0} to fields in {1}"
-msgstr ""
+msgstr "Mapiraj kolone od {0} na polja u {1}"
#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Map route parameters into form variables. Example /project/<name>"
-msgstr ""
+msgstr "Mapirajte parametre rute u varijable obrasca. Primjer /project/<name>"
#: frappe/core/doctype/data_import/importer.py:924
msgid "Mapping column {0} to field {1}"
-msgstr ""
+msgstr "Mapiranje kolone {0} u polje {1}"
#. Label of the margin_bottom (Float) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Bottom"
-msgstr ""
+msgstr "Donja Margina"
#. Label of the margin_left (Float) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Left"
-msgstr ""
+msgstr "Lijeva Margina"
#. Label of the margin_right (Float) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
-msgstr ""
+msgstr "Desna Margina"
#. Label of the margin_top (Float) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Top"
-msgstr ""
+msgstr "Gornja Margina"
#. Label of the mariadb_variables_section (Section Break) field in DocType
#. 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "MariaDB Variables"
-msgstr ""
+msgstr "MariaDB Varijable"
#: frappe/public/js/frappe/ui/notifications/notifications.js:45
msgid "Mark all as read"
-msgstr ""
+msgstr "Označi sve kao pročitano"
#: frappe/core/doctype/communication/communication.js:78
#: frappe/core/doctype/communication/communication_list.js:19
msgid "Mark as Read"
-msgstr ""
+msgstr "Označi kao Pročitano"
#: frappe/core/doctype/communication/communication.js:95
msgid "Mark as Spam"
-msgstr ""
+msgstr "Označi kao Neželjenu Poštu"
#: frappe/core/doctype/communication/communication.js:78
#: frappe/core/doctype/communication/communication_list.js:22
msgid "Mark as Unread"
-msgstr ""
+msgstr "Označi kao Nepročitano"
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
@@ -15339,7 +15348,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
msgid "Markdown"
-msgstr ""
+msgstr "Markdown"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -15350,105 +15359,105 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Markdown Editor"
-msgstr ""
+msgstr "Markdown Uređivač"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr ""
+msgstr "Označeno kao Neželjena Pošta"
#. Name of a role
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
msgid "Marketing Manager"
-msgstr ""
+msgstr "Upravitelj Marketinga"
#: frappe/desk/page/setup_wizard/install_fixtures.py:50
msgid "Master"
-msgstr ""
+msgstr "Postavke"
#. Description of the 'Limit' (Int) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Max 500 records at a time"
-msgstr ""
+msgstr "Maksimalno 500 zapisa odjednom"
#. Label of the max_attachments (Int) field in DocType 'DocType'
#. Label of the max_attachments (Int) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr ""
+msgstr "Maksimalni broj Priloga"
#. Label of the max_file_size (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max File Size (MB)"
-msgstr ""
+msgstr "Maksimalna Veličina Datoteke (MB)"
#. Label of the max_height (Data) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
-msgstr ""
+msgstr "Maksimalna Visina"
#. Label of the max_length (Int) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Length"
-msgstr ""
+msgstr "Maksimalna Dužina"
#. Label of the max_report_rows (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max Report Rows"
-msgstr ""
+msgstr "Maksimalan broj redaka izvješća"
#. Label of the max_value (Int) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Value"
-msgstr ""
+msgstr "Maksimalna Vrijednost"
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Max attachment size"
-msgstr ""
+msgstr "Maksimalna Veličina Priloga"
#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
-msgstr ""
+msgstr "Maksimalni broj automatskih izvještaja putem e-pošte po korisniku"
#: frappe/core/doctype/doctype/doctype.py:1342
msgid "Max width for type Currency is 100px in row {0}"
-msgstr ""
+msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr ""
+msgstr "Maksimum"
#: frappe/core/doctype/file/file.py:320
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
-msgstr ""
+msgstr "Maksimalna Granica Priloga {0} je dostignuta za {1} {2}."
#. Label of the total_fields (Select) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Maximum Number of Fields"
-msgstr ""
+msgstr "Maksimalni Broj Polja"
#: frappe/public/js/frappe/form/sidebar/attachments.js:38
msgid "Maximum attachment limit of {0} has been reached."
-msgstr ""
+msgstr "Maksimalno ograničenje priloga od {0} je dostignuto."
#: frappe/model/rename_doc.py:690
msgid "Maximum {0} rows allowed"
-msgstr ""
+msgstr "Maksimalno je dozvoljeno {0} redova"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
msgid "Me"
-msgstr ""
+msgstr "Ja"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
msgid "Meaning of Submit, Cancel, Amend"
-msgstr ""
+msgstr "Značenje Podnesi, Otkaži, Izmjeni"
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
#. Label of the medium (Data) field in DocType 'Web Page View'
@@ -15458,30 +15467,30 @@ msgstr ""
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
-msgstr ""
+msgstr "Srednje"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/core/doctype/communication/communication.json
#: frappe/desk/doctype/event/event.json
msgid "Meeting"
-msgstr ""
+msgstr "Sastanak"
#: frappe/email/doctype/notification/notification.js:196
#: frappe/integrations/doctype/webhook/webhook.js:96
msgid "Meets Condition?"
-msgstr ""
+msgstr "Ispunjava uslove?"
#. Group in Email Group's connections
#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
-msgstr ""
+msgstr "Članovi"
#. Label of the cache_memory_usage (Data) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Memory Usage"
-msgstr ""
+msgstr "Upotreba Memorije"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
msgid "Memory Usage in MB"
@@ -15490,27 +15499,27 @@ msgstr "Upotreba Memorije u MB"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr ""
+msgstr "Spominjanje"
#. Label of the enable_email_mention (Check) field in DocType 'Notification
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr ""
+msgstr "Spominjanja"
#: frappe/public/js/frappe/ui/page.html:41
#: frappe/public/js/frappe/ui/page.js:162
msgid "Menu"
-msgstr ""
+msgstr "Meni"
#: frappe/public/js/frappe/form/toolbar.js:242
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
-msgstr ""
+msgstr "Spoji sa postojećim"
#: frappe/utils/nestedset.py:307
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
-msgstr ""
+msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podređeni"
#. Label of the message (Text) field in DocType 'Auto Repeat'
#. Label of the content (Text Editor) field in DocType 'Activity Log'
@@ -15541,82 +15550,82 @@ msgstr ""
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
-msgstr ""
+msgstr "Poruka"
#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
-msgstr ""
+msgstr "Poruka"
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr ""
+msgstr "Primjeri Poruka"
#. Label of the message_id (Small Text) field in DocType 'Communication'
#. Label of the message_id (Small Text) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Message ID"
-msgstr ""
+msgstr "ID Poruke"
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr ""
+msgstr "Parametar Poruke"
#: frappe/templates/includes/contact.js:36
msgid "Message Sent"
-msgstr ""
+msgstr "Poruka Poslata"
#. Label of the message_type (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Type"
-msgstr ""
+msgstr "Tip Poruke"
#: frappe/public/js/frappe/views/communication.js:950
msgid "Message clipped"
-msgstr ""
+msgstr "Poruka je isječena"
#: frappe/email/doctype/email_account/email_account.py:344
msgid "Message from server: {0}"
-msgstr ""
+msgstr "Poruka sa servera: {0}"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Message not setup"
-msgstr ""
+msgstr "Poruka nije postavljena"
#. Description of the 'Success message' (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Message to be displayed on successful completion"
-msgstr ""
+msgstr "Poruka će se prikazati po uspješnom završetku"
#. Label of the message_id (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr ""
+msgstr "Poruka-id"
#. Label of the messages (Code) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Messages"
-msgstr ""
+msgstr "Poruke"
#. Label of the meta_section (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
-msgstr ""
+msgstr "Meta"
#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
-msgstr ""
+msgstr "Meta Opis"
#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
-msgstr ""
+msgstr "Meta Slika"
#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
@@ -15625,32 +15634,32 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr ""
+msgstr "Meta Oznake"
#. Label of the meta_title (Data) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
-msgstr ""
+msgstr "Meta Naziv"
#. Label of the meta_description (Small Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta description"
-msgstr ""
+msgstr "Meta Opis"
#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta image"
-msgstr ""
+msgstr "Meta Slika"
#. Label of the meta_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta title"
-msgstr ""
+msgstr "Meta Naziv"
#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
-msgstr ""
+msgstr "Meta naslov za SEO"
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
@@ -15669,77 +15678,77 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr ""
+msgstr "Metoda"
#: frappe/__init__.py:680
msgid "Method Not Allowed"
-msgstr ""
+msgstr "Metoda nije Dozvoljena"
#: frappe/desk/doctype/number_card/number_card.py:73
msgid "Method is required to create a number card"
-msgstr ""
+msgstr "Metoda je potrebna za kreiranje numeričke kartice"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mid Center"
-msgstr ""
+msgstr "Sredina Centar"
#. Label of the middle_name (Data) field in DocType 'Contact'
#. Label of the middle_name (Data) field in DocType 'User'
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr ""
+msgstr "Srednje Ime"
#. Name of a DocType
#. Label of a Link in the Tools Workspace
#: frappe/automation/doctype/milestone/milestone.json
#: frappe/automation/workspace/tools/tools.json
msgid "Milestone"
-msgstr ""
+msgstr "Prekretnica"
#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
#: frappe/automation/doctype/milestone/milestone.json
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Milestone Tracker"
-msgstr ""
+msgstr "Praćenje Prekretnice"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr ""
+msgstr "Minimum"
#. Label of the minimum_password_score (Select) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr ""
+msgstr "Minimalna Vrijdnost Lozinke"
#. Label of the minor (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
-msgstr ""
+msgstr "Manja"
#: frappe/public/js/frappe/form/controls/duration.js:30
msgctxt "Duration"
msgid "Minutes"
-msgstr ""
+msgstr "Minuta"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
-msgstr ""
+msgstr "Minuta Poslije"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes Before"
-msgstr ""
+msgstr "Minuta Prije"
#. Label of the minutes_offset (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes Offset"
-msgstr ""
+msgstr "Odstup Minuta"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
@@ -15747,46 +15756,46 @@ msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Misconfigured"
-msgstr ""
+msgstr "Pogrešno konfigurisano"
#: frappe/desk/page/setup_wizard/install_fixtures.py:49
msgid "Miss"
-msgstr ""
+msgstr "Gospođica"
#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
-msgstr ""
+msgstr "Nedostaje DocType"
#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Missing Field"
-msgstr ""
+msgstr "Nedostaje Polje"
#: frappe/public/js/frappe/form/save.js:131
msgid "Missing Fields"
-msgstr ""
+msgstr "Nedostajuća Polja"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
msgid "Missing Filters Required"
-msgstr ""
+msgstr "Obavezni Nedostajući Filteri"
#: frappe/desk/form/assign_to.py:110
msgid "Missing Permission"
-msgstr ""
+msgstr "Nedostaje Dozvola"
#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
msgid "Missing Value"
-msgstr ""
+msgstr "Nedostaje Vrijednost"
#: frappe/public/js/frappe/ui/field_group.js:124
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
msgid "Missing Values Required"
-msgstr ""
+msgstr "Nedostajuće vrijednosti su obavezne"
#: frappe/www/login.py:107
msgid "Mobile"
-msgstr ""
+msgstr "Mobilni Broj"
#. Label of the mobile_no (Data) field in DocType 'Contact'
#. Label of the mobile_no (Data) field in DocType 'User'
@@ -15795,16 +15804,16 @@ msgstr ""
#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91
#: frappe/tests/test_translate.py:94
msgid "Mobile No"
-msgstr ""
+msgstr "Mobilni Broj"
#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
-msgstr ""
+msgstr "Modalni Okidač"
#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
msgid "Modified By"
-msgstr ""
+msgstr "Izmijenio"
#. Label of the module (Data) field in DocType 'Block Module'
#. Label of the module (Link) field in DocType 'DocType'
@@ -15844,7 +15853,7 @@ msgstr ""
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Module"
-msgstr ""
+msgstr "Modul"
#. Label of the module (Link) field in DocType 'Server Script'
#. Label of the module (Link) field in DocType 'Client Script'
@@ -15857,7 +15866,7 @@ msgstr ""
#: frappe/custom/doctype/property_setter/property_setter.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Module (for export)"
-msgstr ""
+msgstr "Modul (za izvoz)"
#. Name of a DocType
#. Label of a Link in the Build Workspace
@@ -15865,26 +15874,26 @@ msgstr ""
#: frappe/core/doctype/module_def/module_def.json
#: frappe/core/workspace/build/build.json
msgid "Module Def"
-msgstr ""
+msgstr "Definicija Modula"
#. Label of the module_html (HTML) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
-msgstr ""
+msgstr "Modul HTML"
#. Label of the module_name (Data) field in DocType 'Module Def'
#. Label of the module_name (Data) field in DocType 'Desktop Icon'
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Module Name"
-msgstr ""
+msgstr "Naziv Modula"
#. Label of a Link in the Build Workspace
#. Name of a DocType
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Module Onboarding"
-msgstr ""
+msgstr "Introdukcija Modula"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
@@ -15892,36 +15901,36 @@ msgstr ""
#: frappe/core/doctype/module_profile/module_profile.json
#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Module Profile"
-msgstr ""
+msgstr "Profil Modula"
#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
-msgstr ""
+msgstr "Naziv Profila Modula"
#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69
msgid "Module onboarding progress reset"
-msgstr ""
+msgstr "Poništavanje introdukcijskog progresa modula"
#: frappe/custom/doctype/customize_form/customize_form.js:250
msgid "Module to Export"
-msgstr ""
+msgstr "Modul za Izvoz"
#: frappe/modules/utils.py:273
msgid "Module {} not found"
-msgstr ""
+msgstr "Modul {} nije pronađen"
#. Group in Package's connections
#. Label of a Card Break in the Build Workspace
#: frappe/core/doctype/package/package.json
#: frappe/core/workspace/build/build.json
msgid "Modules"
-msgstr ""
+msgstr "Moduli"
#. Label of the modules_html (HTML) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr ""
+msgstr "Moduli HTML"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -15937,21 +15946,21 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Monday"
-msgstr ""
+msgstr "Ponedjeljak"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Monitor logs for errors, background jobs, communications, and user activity"
-msgstr ""
+msgstr "Pratite zapisnike radi pogrešaka, pozadinskih poslova, komunikacije i aktivnosti korisnika"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Monospace"
-msgstr ""
+msgstr "Monospace"
#: frappe/public/js/frappe/views/calendar/calendar.js:275
msgid "Month"
-msgstr ""
+msgstr "Mjesec"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -15971,14 +15980,14 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
-msgstr ""
+msgstr "Mjesečno"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr ""
+msgstr "Cijeli Mjesec"
#: frappe/public/js/frappe/form/link_selector.js:39
#: frappe/public/js/frappe/form/multi_select_dialog.js:45
@@ -15989,13 +15998,13 @@ msgstr ""
#: frappe/templates/includes/list/list.html:25
#: frappe/templates/includes/search_template.html:13
msgid "More"
-msgstr ""
+msgstr "Više"
#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission
#. Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "More Info"
-msgstr ""
+msgstr "Više Informacija"
#. Label of the more_info (Section Break) field in DocType 'Contact'
#. Label of the additional_info (Section Break) field in DocType 'Activity Log'
@@ -16007,166 +16016,166 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
msgid "More Information"
-msgstr ""
+msgstr "Više Informacija"
#: frappe/website/doctype/help_article/templates/help_article.html:19
#: frappe/website/doctype/help_article/templates/help_article.html:33
msgid "More articles on {0}"
-msgstr ""
+msgstr "Više Članaka o {0}"
#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr ""
+msgstr "Više sadržaja na dnu stranice."
#: frappe/public/js/frappe/ui/sort_selector.js:193
msgid "Most Used"
-msgstr ""
+msgstr "Najviše Korišten"
#: frappe/utils/password.py:76
msgid "Most probably your password is too long."
-msgstr ""
+msgstr "Najvjerovatnije je vaša lozinka predugačka."
#: frappe/core/doctype/communication/communication.js:86
#: frappe/core/doctype/communication/communication.js:194
#: frappe/core/doctype/communication/communication.js:212
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Move"
-msgstr ""
+msgstr "Premjesti"
#: frappe/public/js/frappe/form/grid_row.js:193
msgid "Move To"
-msgstr ""
+msgstr "Premjesti u"
#: frappe/core/doctype/communication/communication.js:104
msgid "Move To Trash"
-msgstr ""
+msgstr "Premjesti u Smeće"
#: frappe/public/js/form_builder/components/Section.vue:295
msgid "Move current and all subsequent sections to a new tab"
-msgstr ""
+msgstr "Premjestite trenutni i sve naredne sekcije na novu karticu"
#: frappe/public/js/frappe/form/form.js:177
msgid "Move cursor to above row"
-msgstr ""
+msgstr "Pomjerite kursor na gornji red"
#: frappe/public/js/frappe/form/form.js:181
msgid "Move cursor to below row"
-msgstr ""
+msgstr "Pomjerite kursor ispod reda"
#: frappe/public/js/frappe/form/form.js:185
msgid "Move cursor to next column"
-msgstr ""
+msgstr "Pomerite kursor na sledeću kolonu"
#: frappe/public/js/frappe/form/form.js:189
msgid "Move cursor to previous column"
-msgstr ""
+msgstr "Pomjerite kursor na prethodnu kolonu"
#: frappe/public/js/form_builder/components/Section.vue:294
msgid "Move sections to new tab"
-msgstr ""
+msgstr "Premjesti sekciju na novu karticu"
#: frappe/public/js/form_builder/components/Field.vue:237
msgid "Move the current field and the following fields to a new column"
-msgstr ""
+msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu"
#: frappe/public/js/frappe/form/grid_row.js:168
msgid "Move to Row Number"
-msgstr ""
+msgstr "Pomjeri na Red Broj"
#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Move to next step when clicked inside highlighted area."
-msgstr ""
+msgstr "Prijeđi na sljedeći korak kada kliknete unutar označenog područja."
#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form
#. Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround"
-msgstr ""
+msgstr "Mozilla ne podržava :has() tako da ovdje možete proslijediti nadređeni birač kao zaobilazno rješenje"
#: frappe/desk/page/setup_wizard/install_fixtures.py:43
msgid "Mr"
-msgstr ""
+msgstr "Gosp"
#: frappe/desk/page/setup_wizard/install_fixtures.py:47
msgid "Mrs"
-msgstr ""
+msgstr "Gđa."
#: frappe/desk/page/setup_wizard/install_fixtures.py:44
msgid "Ms"
-msgstr ""
+msgstr "Gđa"
#: frappe/utils/nestedset.py:331
msgid "Multiple root nodes not allowed."
-msgstr ""
+msgstr "Više početnih članova nije dozvoljeno."
#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr ""
+msgstr "Mora biti javno dostupan URL Google Sheet"
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
-msgstr ""
+msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za korisničko/prijavno ime. tj (&(objectclass=user)(uid={0}))"
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr ""
+msgstr "Mora biti tipa \"Priloži Sliku\""
#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
-msgstr ""
+msgstr "Mora imati dozvolu za pristup ovom izvještaju."
#: frappe/core/doctype/report/report.py:151
msgid "Must specify a Query to run"
-msgstr ""
+msgstr "Mora se navesti Upit za pokretanje"
#. Label of the mute_sounds (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr ""
+msgstr "Utišaj Zvuk"
#: frappe/desk/page/setup_wizard/install_fixtures.py:45
msgid "Mx"
-msgstr ""
+msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
-msgstr ""
+msgstr "Moj Račun"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57
msgid "My Device"
-msgstr ""
+msgstr "Moj Uređaj"
#: frappe/public/js/frappe/ui/apps_switcher.js:71
msgid "My Workspaces"
-msgstr ""
+msgstr "Moj Radni Prostor"
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "MyISAM"
-msgstr ""
+msgstr "MyISAM"
#: frappe/workflow/doctype/workflow/workflow.js:19
msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
-msgstr ""
+msgstr "NAPOMENA: Ako dodate stanja ili tranzicije u tablicu, to će se odraziti u Alatu Razvoja Radnog Toka, ali ćete ih morati ručno pozicionirati. Takođe Alat Razvoja Radnog Toka je trenutno u BETA verziji."
#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
-msgstr ""
+msgstr "NAPOMENA: Ovo polje je zbog starih postavki. Ponovo podesite LDAP za rad sa novijim postavkama"
#. Label of the fieldname (Data) field in DocType 'DocField'
#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
@@ -16183,35 +16192,35 @@ msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
-msgstr ""
+msgstr "Naziv"
#: frappe/integrations/doctype/webhook/webhook.js:29
msgid "Name (Doc Name)"
-msgstr ""
+msgstr "Naziv (Naziv dokumenta)"
#: frappe/desk/utils.py:22
msgid "Name already taken, please set a new name"
-msgstr ""
+msgstr "Naziv je već zauzet, postavite novi naziv"
#: frappe/model/naming.py:504
msgid "Name cannot contain special characters like {0}"
-msgstr ""
+msgstr "Naziv ne može sadržavati posebne znakove poput {0}"
#: frappe/custom/doctype/custom_field/custom_field.js:91
msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
-msgstr ""
+msgstr "Naziv tipa dokumenta (DocType) sa kojim želite da se ovo polje poveže. npr. Kupac"
#: frappe/printing/page/print_format_builder/print_format_builder.js:117
msgid "Name of the new Print Format"
-msgstr ""
+msgstr "Naziv novog formata za ispisivanje"
#: frappe/model/naming.py:499
msgid "Name of {0} cannot be {1}"
-msgstr ""
+msgstr "Naziv {0} ne može biti {1}"
#: frappe/utils/password_strength.py:174
msgid "Names and surnames by themselves are easy to guess."
-msgstr ""
+msgstr "Imena i prezimena sama po sebi je lako pogoditi."
#. Label of the sb1 (Tab Break) field in DocType 'DocType'
#. Label of the naming_section (Section Break) field in DocType 'Document
@@ -16222,31 +16231,33 @@ msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr ""
+msgstr "Imenovanje"
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Options:\n"
"
"
-msgstr ""
+msgstr "Opcije imenovanja:\n"
+"
"
#. Label of the naming_rule (Select) field in DocType 'DocType'
#. Label of the naming_rule (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
-msgstr ""
+msgstr "Pravilo Imenovanja"
#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Naming Series"
-msgstr ""
+msgstr "Imenovanje Serije"
#: frappe/model/naming.py:260
msgid "Naming Series mandatory"
-msgstr ""
+msgstr "Imenovanje Serije Obavezno"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
@@ -16254,73 +16265,73 @@ msgstr ""
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar"
-msgstr ""
+msgstr "Navigacijska Traka"
#. Name of a DocType
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Navbar Item"
-msgstr ""
+msgstr "Stavka Navigacijske Trake"
#. Name of a DocType
#. Label of a Link in the Build Workspace
#: frappe/core/doctype/navbar_settings/navbar_settings.json
#: frappe/core/workspace/build/build.json
msgid "Navbar Settings"
-msgstr ""
+msgstr "Postavke Navigacijske Trake"
#. Label of the navbar_template (Link) field in DocType 'Website Settings'
#. Label of the navbar_template_section (Section Break) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template"
-msgstr ""
+msgstr "Šablon Navigacijske Trake"
#. Label of the navbar_template_values (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template Values"
-msgstr ""
+msgstr "Vrijednosti Šablona Navigacijske Trake"
#: frappe/public/js/frappe/list/list_view.js:1237
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
-msgstr ""
+msgstr "Kreći se po listi prema dolje"
#: frappe/public/js/frappe/list/list_view.js:1244
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
-msgstr ""
+msgstr "Kreći se po listi prema gore"
#: frappe/public/js/frappe/ui/page.js:175
msgid "Navigate to main content"
-msgstr ""
+msgstr "Idi na glavni sadržaj"
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
-msgstr ""
+msgstr "Postavke Navigacije"
#: frappe/desk/doctype/workspace/workspace.py:319
msgid "Need Workspace Manager role to edit private workspace of other users"
-msgstr ""
+msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika"
#: frappe/model/document.py:792
msgid "Negative Value"
-msgstr ""
+msgstr "Negativna Vrijednost"
#: frappe/database/query.py:333
msgid "Nested filters must be provided as a list or tuple."
-msgstr ""
+msgstr "Ugniježđeni filtri moraju biti navedeni kao popis ili torka."
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
-msgstr ""
+msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora."
#. Name of a DocType
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Network Printer Settings"
-msgstr ""
+msgstr "Postavke Mrežnog Pisača"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
@@ -16335,169 +16346,169 @@ msgstr ""
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
msgid "New"
-msgstr ""
+msgstr "Novi"
#: frappe/public/js/frappe/views/interaction.js:15
msgid "New Activity"
-msgstr ""
+msgstr "Nova Aktivnost"
#: frappe/public/js/frappe/form/templates/address_list.html:3
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5
#: frappe/public/js/frappe/utils/address_and_contact.js:71
msgid "New Address"
-msgstr ""
+msgstr "Nova Adresa"
#: frappe/public/js/frappe/widgets/widget_dialog.js:58
msgid "New Chart"
-msgstr ""
+msgstr "Novi Grafikon"
#: frappe/templates/includes/comments/comments.py:62
msgid "New Comment on {0}: {1}"
-msgstr ""
+msgstr "Novi Komentar {0}: {1}"
#: frappe/public/js/frappe/form/templates/contact_list.html:3
msgid "New Contact"
-msgstr ""
+msgstr "Novi Kontakt"
#: frappe/public/js/frappe/widgets/widget_dialog.js:70
msgid "New Custom Block"
-msgstr ""
+msgstr "Novi Prilagođeni Blok"
#: frappe/printing/page/print/print.js:295
#: frappe/printing/page/print/print.js:342
msgid "New Custom Print Format"
-msgstr ""
+msgstr "Novi Prilagođeni Format Ispisa"
#. Label of the new_document_form (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "New Document Form"
-msgstr ""
+msgstr "Nova Forma Dokumenta"
#: frappe/desk/doctype/notification_log/notification_log.py:154
msgid "New Document Shared {0}"
-msgstr ""
+msgstr "Novi Dokument Dijeljen {0}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:27
#: frappe/public/js/frappe/views/communication.js:23
msgid "New Email"
-msgstr ""
+msgstr "Nova e-pošta"
#: frappe/public/js/frappe/list/list_view_select.js:98
#: frappe/public/js/frappe/views/inbox/inbox_view.js:177
msgid "New Email Account"
-msgstr ""
+msgstr "Novi Račun e-pošte"
#: frappe/public/js/frappe/form/footer/form_timeline.js:47
msgid "New Event"
-msgstr ""
+msgstr "Novi Događaj"
#: frappe/public/js/frappe/views/file/file_view.js:94
msgid "New Folder"
-msgstr ""
+msgstr "Nova Mapa"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
-msgstr ""
+msgstr "Nova Oglasna Tabla"
#: frappe/public/js/frappe/widgets/widget_dialog.js:62
msgid "New Links"
-msgstr ""
+msgstr "Nove Veze"
#: frappe/desk/doctype/notification_log/notification_log.py:152
msgid "New Mention on {0}"
-msgstr ""
+msgstr "Novo Spominjanje {0}"
#: frappe/www/contact.py:61
msgid "New Message from Website Contact Page"
-msgstr ""
+msgstr "Nova Pruka sa Kontaktne Web Stranice"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
#: frappe/public/js/frappe/form/toolbar.js:218
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
-msgstr ""
+msgstr "Novo Ime"
#: frappe/email/doctype/email_group/email_group.js:67
msgid "New Newsletter"
-msgstr ""
+msgstr "Novi Bilten"
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
-msgstr ""
+msgstr "Novo Obavještenje"
#: frappe/public/js/frappe/widgets/widget_dialog.js:64
msgid "New Number Card"
-msgstr ""
+msgstr "Nova Numerička Kartica"
#: frappe/public/js/frappe/widgets/widget_dialog.js:66
msgid "New Onboarding"
-msgstr ""
+msgstr "Nova Introdukcija"
#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
msgid "New Password"
-msgstr ""
+msgstr "Nova Lozinka"
#: frappe/printing/page/print/print.js:267
#: frappe/printing/page/print/print.js:321
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
-msgstr ""
+msgstr "Novo Ime Formata Ispisa"
#: frappe/public/js/frappe/widgets/widget_dialog.js:68
msgid "New Quick List"
-msgstr ""
+msgstr "Nova Brza Lista"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
-msgstr ""
+msgstr "Novi Naziv Izvještaja"
#. Label of the new_role (Data) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
msgid "New Role"
-msgstr ""
+msgstr "Nova Uloga"
#: frappe/public/js/frappe/widgets/widget_dialog.js:60
msgid "New Shortcut"
-msgstr ""
+msgstr "Nova Prečica"
#. Label of the new_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "New Users (Last 30 days)"
-msgstr ""
+msgstr "Novi Korisnici (posljednjih 30 dana)"
#: frappe/core/doctype/version/version_view.html:14
#: frappe/core/doctype/version/version_view.html:76
msgid "New Value"
-msgstr ""
+msgstr "Nova Vrijednost"
#: frappe/workflow/page/workflow_builder/workflow_builder.js:61
msgid "New Workflow Name"
-msgstr ""
+msgstr "Novi Naziv Radnog Toka"
#: frappe/public/js/frappe/views/workspace/workspace.js:390
msgid "New Workspace"
-msgstr ""
+msgstr "Novi Radni Prostor"
#: frappe/www/update-password.html:79
msgid "New password cannot be same as old password"
-msgstr ""
+msgstr "Nova lozinka ne može biti ista kao stara lozinka"
#: frappe/utils/change_log.py:389
msgid "New updates are available"
-msgstr ""
+msgstr "Dostupna su nova ažuriranja"
#. Description of the 'Disable signups' (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "New users will have to be manually registered by system managers."
-msgstr ""
+msgstr "Nove korisnike će morati manualno registrovati sistemski menadžeri."
#. Description of the 'Set Value' (Small Text) field in DocType 'Property
#. Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "New value to be set"
-msgstr ""
+msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/form/quick_entry.js:179
#: frappe/public/js/frappe/form/toolbar.js:37
@@ -16513,38 +16524,38 @@ msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
-msgstr ""
+msgstr "Novi {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
-msgstr ""
+msgstr "Novi {0} Kreiran"
#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
-msgstr ""
+msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}"
#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
-msgstr ""
+msgstr "Novi {0} {1} kreiran"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385
msgid "New {0}: {1}"
-msgstr ""
+msgstr "Novi {0}: {1}"
#: frappe/utils/change_log.py:375
msgid "New {} releases for the following apps are available"
-msgstr ""
+msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije"
#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
-msgstr ""
+msgstr "Novokreirani korisnik {0} nema omogućene uloge."
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
-msgstr ""
+msgstr "Upravitelj Biltena"
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
@@ -16554,100 +16565,100 @@ msgstr ""
#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258
#: frappe/website/web_template/slideshow/slideshow.html:44
msgid "Next"
-msgstr ""
+msgstr "Sljedeća"
#: frappe/public/js/frappe/ui/slides.js:359
msgctxt "Go to next slide"
msgid "Next"
-msgstr ""
+msgstr "Sljedeći"
#: frappe/public/js/frappe/ui/filters/filter.js:684
msgid "Next 14 Days"
-msgstr ""
+msgstr "Sljedećih 14 Dana"
#: frappe/public/js/frappe/ui/filters/filter.js:688
msgid "Next 30 Days"
-msgstr ""
+msgstr "Sljedećih 30 Dana"
#: frappe/public/js/frappe/ui/filters/filter.js:704
msgid "Next 6 Months"
-msgstr ""
+msgstr "Sljedećih 6 Mjeseci"
#: frappe/public/js/frappe/ui/filters/filter.js:680
msgid "Next 7 Days"
-msgstr ""
+msgstr "Sljedećih 7 Dana"
#. Label of the next_action_email_template (Link) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr ""
+msgstr "Šablon Sljedeće Akcije e-pošte"
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
-msgstr ""
+msgstr "HTML Sljedeće Akcije"
#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Next Execution"
-msgstr ""
+msgstr "Sljedeće Izvršenje"
#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Form Tour"
-msgstr ""
+msgstr "Sljedeća Intrudukcija Forme"
#: frappe/public/js/frappe/ui/filters/filter.js:696
msgid "Next Month"
-msgstr ""
+msgstr "Sljedeći Mjesec"
#: frappe/public/js/frappe/ui/filters/filter.js:700
msgid "Next Quarter"
-msgstr ""
+msgstr "Sljedeći Kvartal"
#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Next Schedule Date"
-msgstr ""
+msgstr "Datum Sljedećeg Rasporeda"
#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
msgid "Next Scheduled Date"
-msgstr ""
+msgstr "Sljedeći Zakazani Datum"
#. Label of the next_state (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr ""
+msgstr "Sljedeće Stanje"
#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Step Condition"
-msgstr ""
+msgstr "Uslov Sljedećeg Koraka"
#. Label of the next_sync_token (Password) field in DocType 'Google Calendar'
#. Label of the next_sync_token (Password) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Next Sync Token"
-msgstr ""
+msgstr "Sljedeći Token Sinhronizacije"
#: frappe/public/js/frappe/ui/filters/filter.js:692
msgid "Next Week"
-msgstr ""
+msgstr "Sljedeći Tjedan"
#: frappe/public/js/frappe/ui/filters/filter.js:708
msgid "Next Year"
-msgstr ""
+msgstr "Sljedeće Godine"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Next actions"
-msgstr ""
+msgstr "Sljedeće Akcije"
#. Label of the next_on_click (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next on Click"
-msgstr ""
+msgstr "Dalje na klik"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
@@ -16665,21 +16676,21 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
-msgstr ""
+msgstr "Ne"
#: frappe/public/js/frappe/ui/filters/filter.js:546
msgctxt "Checkbox is not checked"
msgid "No"
-msgstr ""
+msgstr "Ne"
#: frappe/public/js/frappe/ui/messages.js:37
msgctxt "Dismiss confirmation dialog"
msgid "No"
-msgstr ""
+msgstr "Ne"
#: frappe/www/third_party_apps.html:56
msgid "No Active Sessions"
-msgstr ""
+msgstr "Nema Aktivnih Sesija"
#. Label of the no_copy (Check) field in DocType 'DocField'
#. Label of the no_copy (Check) field in DocType 'Custom Field'
@@ -16688,7 +16699,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr ""
+msgstr "Ne Kopiraj"
#: frappe/core/doctype/data_export/exporter.py:162
#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
@@ -16698,43 +16709,43 @@ msgstr ""
#: frappe/public/js/frappe/utils/datatable.js:10
#: frappe/public/js/frappe/widgets/chart_widget.js:57
msgid "No Data"
-msgstr ""
+msgstr "Nema Podataka"
#: frappe/public/js/frappe/widgets/quick_list_widget.js:134
msgid "No Data..."
-msgstr ""
+msgstr "Nema Podataka..."
#: frappe/public/js/frappe/views/inbox/inbox_view.js:176
msgid "No Email Account"
-msgstr ""
+msgstr "Nema Računa e-pošte"
#: frappe/public/js/frappe/views/inbox/inbox_view.js:196
msgid "No Email Accounts Assigned"
-msgstr ""
+msgstr "Nema dodeljenih naloga e-pošte"
#: frappe/public/js/frappe/views/inbox/inbox_view.js:183
msgid "No Emails"
-msgstr ""
+msgstr "Nema e-pošte"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361
msgid "No Entry for the User {0} found within LDAP!"
-msgstr ""
+msgstr "Nema Unosa pronađenog za korisnika {0} unutar LDAP-a!"
#: frappe/public/js/frappe/widgets/chart_widget.js:407
msgid "No Filters Set"
-msgstr ""
+msgstr "Nema Postavljenih Filtera"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:372
msgid "No Google Calendar Event to sync."
-msgstr ""
+msgstr "Nema Događaja Google Kalendara za sinhronizaciju."
#: frappe/public/js/frappe/ui/capture.js:262
msgid "No Images"
-msgstr ""
+msgstr "Nema Slika"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363
msgid "No LDAP User found for email: {0}"
-msgstr ""
+msgstr "Nije pronađen LDAP Korisnik za e-poštu: {0}"
#: frappe/public/js/form_builder/components/EditableInput.vue:11
#: frappe/public/js/form_builder/components/EditableInput.vue:14
@@ -16745,7 +16756,7 @@ msgstr ""
#: frappe/public/js/workflow_builder/components/StateNode.vue:47
#: frappe/public/js/workflow_builder/store.js:51
msgid "No Label"
-msgstr ""
+msgstr "Nema Oznake"
#: frappe/printing/page/print/print.js:703
#: frappe/printing/page/print/print.js:784
@@ -16753,282 +16764,282 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
-msgstr ""
+msgstr "Bez Zaglavlja"
#: frappe/model/naming.py:481
msgid "No Name Specified for {0}"
-msgstr ""
+msgstr "Nije Navedeno Ime za {0}"
#: frappe/public/js/frappe/ui/notifications/notifications.js:315
msgid "No New notifications"
-msgstr ""
+msgstr "Nema Novih obavještenja"
#: frappe/core/doctype/doctype/doctype.py:1743
msgid "No Permissions Specified"
-msgstr ""
+msgstr "Nema Navedenih Dozvola"
#: frappe/core/page/permission_manager/permission_manager.js:199
msgid "No Permissions set for this criteria."
-msgstr ""
+msgstr "Nisu ostavljene Dozvole za ovaj kriterij."
#: frappe/core/page/dashboard_view/dashboard_view.js:93
msgid "No Permitted Charts"
-msgstr ""
+msgstr "Nema Dozvoljenih Grafikona"
#: frappe/core/page/dashboard_view/dashboard_view.js:92
msgid "No Permitted Charts on this Dashboard"
-msgstr ""
+msgstr "Nema Dozvoljenih Grafikona na ovoj Nadzornoj Tabli"
#: frappe/printing/doctype/print_settings/print_settings.js:13
msgid "No Preview"
-msgstr ""
+msgstr "Nema Pregleda"
#: frappe/printing/page/print/print.js:707
msgid "No Preview Available"
-msgstr ""
+msgstr "Pregled nije Dostupan"
#: frappe/printing/page/print/print.js:862
msgid "No Printer is Available."
-msgstr ""
+msgstr "Nijedan Pisač nije Dostupan."
#: frappe/core/doctype/rq_worker/rq_worker_list.js:3
msgid "No RQ Workers connected. Try restarting the bench."
-msgstr ""
+msgstr "RQ Radnici nisu priključeni. Pokušaj ponovo pokrenuti bench."
#: frappe/public/js/frappe/form/link_selector.js:135
msgid "No Results"
-msgstr ""
+msgstr "Nema Rezultata"
#: frappe/public/js/frappe/ui/toolbar/search.js:51
msgid "No Results found"
-msgstr ""
+msgstr "Nema Rezultata"
#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
-msgstr ""
+msgstr "Nisu Navedene Uloge"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
-msgstr ""
+msgstr "Nije Pronađeno Odabirno Polje"
#: frappe/core/doctype/recorder/recorder.py:179
msgid "No Suggestions"
-msgstr ""
+msgstr "Nema Prijedloga"
#: frappe/desk/reportview.py:672
msgid "No Tags"
-msgstr ""
+msgstr "Nema Oznaka"
#: frappe/public/js/frappe/ui/notifications/notifications.js:442
msgid "No Upcoming Events"
-msgstr ""
+msgstr "Nema Nadolazećih Događaja"
#: frappe/public/js/frappe/form/templates/address_list.html:43
msgid "No address added yet."
-msgstr ""
+msgstr "Adresa još nije dodana."
#: frappe/email/doctype/notification/notification.js:229
msgid "No alerts for today"
-msgstr ""
+msgstr "Nema upozorenja za danas"
#: frappe/core/doctype/recorder/recorder.py:178
msgid "No automatic optimization suggestions available."
-msgstr ""
+msgstr "Nema dostupnih prijedloga za automatsku optimizaciju."
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
-msgstr ""
+msgstr "Nema promjena u dokumentu"
#: frappe/public/js/frappe/views/workspace/workspace.js:662
msgid "No changes made"
-msgstr ""
+msgstr "Nisu napravljene promjene"
#: frappe/model/rename_doc.py:369
msgid "No changes made because old and new name are the same."
-msgstr ""
+msgstr "Nema promjena jer su stari i novi naziv isti."
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59
msgid "No changes to sync"
-msgstr ""
+msgstr "Nema promjena za sinhronizaciju"
#: frappe/core/doctype/data_import/importer.py:298
msgid "No changes to update"
-msgstr ""
+msgstr "Nema promjena za ažuriranje"
#: frappe/website/doctype/blog_post/blog_post.py:378
msgid "No comments yet"
-msgstr ""
+msgstr "Još nema komentara"
#: frappe/templates/includes/comments/comments.html:4
msgid "No comments yet. "
-msgstr ""
+msgstr "Još nema komentara. "
#: frappe/public/js/frappe/form/templates/contact_list.html:91
msgid "No contacts added yet."
-msgstr ""
+msgstr "Još nema dodanih kontakata."
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
msgid "No contacts linked to document"
-msgstr ""
+msgstr "Nema kontakata povezanih s dokumentom"
#: frappe/desk/query_report.py:343
msgid "No data to export"
-msgstr ""
+msgstr "Nema podataka za izvoz"
#: frappe/contacts/doctype/address/address.py:246
msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template."
-msgstr ""
+msgstr "Nije pronađen standard Šablon Adrese. Kreiraj novi iz Postavljanje > Ispisivanje i Brendiranje > Šablon Adrese."
#: frappe/public/js/frappe/ui/toolbar/search.js:71
msgid "No documents found tagged with {0}"
-msgstr ""
+msgstr "Nije pronađen nijedan dokument označen sa {0}"
#: frappe/public/js/frappe/views/inbox/inbox_view.js:21
msgid "No email account associated with the User. Please add an account under User > Email Inbox."
-msgstr ""
+msgstr "Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun pod Korisnik > Pristigla pošta."
#: frappe/core/doctype/data_import/data_import.js:478
msgid "No failed logs"
-msgstr ""
+msgstr "Nema neuspjelih zapisa"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
-msgstr ""
+msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"."
#: frappe/utils/file_manager.py:143
msgid "No file attached"
-msgstr ""
+msgstr "Nema priložene datoteke"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134
msgid "No filters found"
-msgstr ""
+msgstr "Nije pronađen nijedan filter"
#: frappe/public/js/frappe/ui/filters/filter_list.js:299
msgid "No filters selected"
-msgstr ""
+msgstr "Nijedan filter nije odabran"
#: frappe/desk/form/utils.py:111
msgid "No further records"
-msgstr ""
+msgstr "Nema daljnjih zapisa"
#: frappe/templates/includes/search_template.html:49
msgid "No matching records. Search something new"
-msgstr ""
+msgstr "Nema podudarnih zapisa. Traži nešto novo"
#: frappe/public/js/frappe/web_form/web_form_list.js:161
msgid "No more items to display"
-msgstr ""
+msgstr "Nema više artikala za prikaz"
#: frappe/utils/password_strength.py:45
msgid "No need for symbols, digits, or uppercase letters."
-msgstr ""
+msgstr "Nema potrebe za simbolima, ciframa ili velikim slovima."
#: frappe/integrations/doctype/google_contacts/google_contacts.py:195
msgid "No new Google Contacts synced."
-msgstr ""
+msgstr "Nema novih sinhroniziranih Google Kontakata."
#: frappe/public/js/frappe/ui/toolbar/navbar.html:46
msgid "No new notifications"
-msgstr ""
+msgstr "Nema novih obavijesti"
#: frappe/printing/page/print_format_builder/print_format_builder.js:415
msgid "No of Columns"
-msgstr ""
+msgstr "Broj Kolona"
#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Requested SMS"
-msgstr ""
+msgstr "Broj Traženih SMS-ova"
#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "No of Rows (Max 500)"
-msgstr ""
+msgstr "Broj Redova (Max. 500)"
#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
-msgstr ""
+msgstr "Broj Poslanih SMS-ova"
#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
-msgstr ""
+msgstr "Nema dozvole za {0}"
#: frappe/public/js/frappe/form/form.js:1142
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
-msgstr ""
+msgstr "Nema dozvole za '{0}' {1}"
#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
-msgstr ""
+msgstr "Nema dozvole za čitanje {0}"
#: frappe/share.py:220
msgid "No permission to {0} {1} {2}"
-msgstr ""
+msgstr "Nema dozvole za {0} {1} {2}"
#: frappe/core/doctype/user_permission/user_permission_list.js:175
msgid "No records deleted"
-msgstr ""
+msgstr "Nema izbrisanih zapisa"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
msgid "No records present in {0}"
-msgstr ""
+msgstr "Nema zapisa u {0}"
#: frappe/public/js/frappe/list/list_sidebar_stat.html:3
msgid "No records tagged."
-msgstr ""
+msgstr "Nema označenih zapisa."
#: frappe/public/js/frappe/data_import/data_exporter.js:225
msgid "No records will be exported"
-msgstr ""
+msgstr "Nijedan zapis neće biti izvezen"
#: frappe/public/js/frappe/form/grid.js:66
msgid "No rows"
-msgstr ""
+msgstr "Nema redova"
#: frappe/email/doctype/notification/notification.py:129
msgid "No subject"
-msgstr ""
+msgstr "Nema predmeta"
#: frappe/www/printview.py:472
msgid "No template found at path: {0}"
-msgstr ""
+msgstr "Nije pronađen šablon na putu: {0}"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:262
msgid "No values to show"
-msgstr ""
+msgstr "Nema vrijednosti za prikaz"
#: frappe/website/web_template/discussions/discussions.html:2
msgid "No {0}"
-msgstr ""
+msgstr "Bez {0}"
#: frappe/public/js/frappe/list/list_view_select.js:157
msgid "No {0} Found"
-msgstr ""
+msgstr "Nije pronađeno {0}"
#: frappe/public/js/frappe/web_form/web_form_list.js:233
msgid "No {0} found"
-msgstr ""
+msgstr "Nije pronađeno {0}"
#: frappe/public/js/frappe/list/list_view.js:494
msgid "No {0} found with matching filters. Clear filters to see all {0}."
-msgstr ""
+msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obrišite filtere da vidite sve {0}."
#: frappe/public/js/frappe/views/inbox/inbox_view.js:171
msgid "No {0} mail"
-msgstr ""
+msgstr "Nema {0} pošte"
#: frappe/public/js/form_builder/utils.js:117
#: frappe/public/js/frappe/form/grid_row.js:256
msgctxt "Title of the 'row number' column"
msgid "No."
-msgstr ""
+msgstr "Broj."
#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Nomatim"
-msgstr ""
+msgstr "Nomatim"
#. Label of the non_negative (Check) field in DocType 'DocField'
#. Label of the non_negative (Check) field in DocType 'Custom Field'
@@ -17037,72 +17048,72 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr ""
+msgstr "Nije Negativno"
#: frappe/desk/page/setup_wizard/install_fixtures.py:33
msgid "Non-Conforming"
-msgstr ""
+msgstr "Neusklađen"
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
-msgstr ""
+msgstr "Ništa: Kraj Radnog Toka"
#. Label of the normalized_copies (Int) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Copies"
-msgstr ""
+msgstr "Normalizovane Kopije"
#. Label of the normalized_query (Data) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Query"
-msgstr ""
+msgstr "Normalizovani Upit"
#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
-msgstr ""
+msgstr "Nije Dozvoljeno"
#: frappe/templates/includes/login/login.js:259
msgid "Not Allowed: Disabled User"
-msgstr ""
+msgstr "Nije Dozvoljeno: Onemogućen Korisnik"
#: frappe/public/js/frappe/ui/filters/filter.js:36
msgid "Not Ancestors Of"
-msgstr ""
+msgstr "Nisu Nadređeni Od"
#: frappe/public/js/frappe/ui/filters/filter.js:34
msgid "Not Descendants Of"
-msgstr ""
+msgstr "Nisu Podređeni Od"
#: frappe/public/js/frappe/ui/filters/filter.js:17
msgid "Not Equals"
-msgstr ""
+msgstr "Nije Jednako"
#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
-msgstr ""
+msgstr "Nije Pronađeno"
#. Label of the not_helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Not Helpful"
-msgstr ""
+msgstr "Nije Korisno"
#: frappe/public/js/frappe/ui/filters/filter.js:21
msgid "Not In"
-msgstr ""
+msgstr "Nije u"
#: frappe/public/js/frappe/ui/filters/filter.js:19
msgid "Not Like"
-msgstr ""
+msgstr "Nije Kao"
#: frappe/public/js/frappe/form/linked_with.js:45
msgid "Not Linked to any record"
-msgstr ""
+msgstr "Nije povezano ni sa jednim zapisom"
#. Label of the not_nullable (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Not Nullable"
-msgstr ""
+msgstr "Nemože se Nulirati"
#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
@@ -17111,17 +17122,17 @@ msgstr ""
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
msgid "Not Permitted"
-msgstr ""
+msgstr "Nije Dozvoljeno"
#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
-msgstr ""
+msgstr "Nije Dozvoljeno čitati {0}"
#: frappe/website/doctype/blog_post/blog_post_list.js:7
#: frappe/website/doctype/web_form/web_form_list.js:7
#: frappe/website/doctype/web_page/web_page_list.js:7
msgid "Not Published"
-msgstr ""
+msgstr "Nije Objavljeno"
#: frappe/public/js/frappe/form/toolbar.js:285
#: frappe/public/js/frappe/form/toolbar.js:813
@@ -17131,83 +17142,83 @@ msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
-msgstr ""
+msgstr "Nespremljeno"
#: frappe/core/doctype/error_log/error_log_list.js:7
msgid "Not Seen"
-msgstr ""
+msgstr "Nije Viđeno"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Not Sent"
-msgstr ""
+msgstr "Nije Poslano"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219
msgid "Not Set"
-msgstr ""
+msgstr "Nije Postavljeno"
#: frappe/public/js/frappe/ui/filters/filter.js:608
msgctxt "Field value is not set"
msgid "Not Set"
-msgstr ""
+msgstr "Nije Postavljeno"
#: frappe/utils/csvutils.py:102
msgid "Not a valid Comma Separated Value (CSV File)"
-msgstr ""
+msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)"
#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
-msgstr ""
+msgstr "Nije važeća Korisnička slika."
#: frappe/model/workflow.py:114
msgid "Not a valid Workflow Action"
-msgstr ""
+msgstr "Nije važeća Akcija Radnog Toka"
#: frappe/templates/includes/login/login.js:255
msgid "Not a valid user"
-msgstr ""
+msgstr "Nije važeći korisnik"
#: frappe/workflow/doctype/workflow/workflow_list.js:7
msgid "Not active"
-msgstr ""
+msgstr "Nije aktivno"
#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
-msgstr ""
+msgstr "Nije dozvoljeno za {0}: {1}"
#: frappe/email/doctype/notification/notification.py:595
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
-msgstr ""
+msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa"
#: frappe/core/doctype/doctype/doctype.py:335
msgid "Not allowed to create custom Virtual DocType."
-msgstr ""
+msgstr "Nije dozvoljeno kreirati prilagođeni Virtualni DocType."
#: frappe/www/printview.py:165
msgid "Not allowed to print cancelled documents"
-msgstr ""
+msgstr "Nije dozvoljen ispis otkazanih dokumenata"
#: frappe/www/printview.py:162
msgid "Not allowed to print draft documents"
-msgstr ""
+msgstr "Nije dozvoljen ispis nacrta dokumenata"
#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
-msgstr ""
+msgstr "Nije dozvoljeno putem provjere dozvole kontrolora"
#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
msgid "Not found"
-msgstr ""
+msgstr "Nije pronađeno"
#: frappe/core/doctype/page/page.py:62
msgid "Not in Developer Mode"
-msgstr ""
+msgstr "Nije u načinu rada za programere"
#: frappe/core/doctype/doctype/doctype.py:330
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
-msgstr ""
+msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili napravi 'Prilagođen' DocType."
#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
@@ -17217,11 +17228,11 @@ msgstr ""
#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
-msgstr ""
+msgstr "Nije dozvoljeno"
#: frappe/public/js/frappe/list/list_view.js:50
msgid "Not permitted to view {0}"
-msgstr ""
+msgstr "Nije dozvoljen pregled {0}"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -17229,60 +17240,60 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/note/note.json
msgid "Note"
-msgstr ""
+msgstr "Napomena"
#. Name of a DocType
#: frappe/desk/doctype/note_seen_by/note_seen_by.json
msgid "Note Seen By"
-msgstr ""
+msgstr "Napomena Viđena Od"
#: frappe/www/confirm_workflow_action.html:8
msgid "Note:"
-msgstr ""
+msgstr "Napomena:"
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
-msgstr ""
+msgstr "Napomena: Promjena naziva stranice će prekinuti prethodni URL na ovu stranicu."
#: frappe/core/doctype/user/user.js:35
msgid "Note: Etc timezones have their signs reversed."
-msgstr ""
+msgstr "Napomena: Etc vremenske zone imaju obrnuti predznak."
#. Description of the 'sb0' (Section Break) field in DocType 'Website
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Note: For best results, images must be of the same size and width must be greater than height."
-msgstr ""
+msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a širina mora biti veća od visine."
#. Description of the 'Allow only one session per user' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Note: Multiple sessions will be allowed in case of mobile device"
-msgstr ""
+msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja"
#: frappe/core/doctype/user/user.js:393
msgid "Note: This will be shared with user."
-msgstr ""
+msgstr "Napomena: Ovo će biti podijeljeno s korisnikom."
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8
msgid "Note: Your request for account deletion will be fulfilled within {0} hours."
-msgstr ""
+msgstr "Napomena: Vaš zahtjev za brisanje računa će biti ispunjen u roku od {0} sati."
#: frappe/core/doctype/data_export/exporter.py:183
msgid "Notes:"
-msgstr ""
+msgstr "Napomene:"
#: frappe/public/js/frappe/ui/notifications/notifications.js:492
msgid "Nothing New"
-msgstr ""
+msgstr "Ništa Novo"
#: frappe/public/js/frappe/form/undo_manager.js:43
msgid "Nothing left to redo"
-msgstr ""
+msgstr "Ništa nije ostalo za ponoviti"
#: frappe/public/js/frappe/form/undo_manager.js:33
msgid "Nothing left to undo"
-msgstr ""
+msgstr "Ništa nije ostalo za poništiti"
#: frappe/public/js/frappe/list/base_list.js:372
#: frappe/public/js/frappe/views/reports/query_report.js:105
@@ -17290,11 +17301,11 @@ msgstr ""
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
-msgstr ""
+msgstr "Ništa za pokazati"
#: frappe/core/doctype/user_permission/user_permission_list.js:129
msgid "Nothing to update"
-msgstr ""
+msgstr "Ništa za ažuriranje"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
@@ -17304,17 +17315,17 @@ msgstr ""
#: frappe/core/doctype/communication/mixins.py:142
#: frappe/email/doctype/notification/notification.json
msgid "Notification"
-msgstr ""
+msgstr "Obavještenje"
#. Name of a DocType
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Notification Log"
-msgstr ""
+msgstr "Zapisnik Obavještenja"
#. Name of a DocType
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Notification Recipient"
-msgstr ""
+msgstr "Primalac Obaveštenja"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -17322,109 +17333,109 @@ msgstr ""
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/public/js/frappe/ui/notifications/notifications.js:37
msgid "Notification Settings"
-msgstr ""
+msgstr "Postavke Obaveštenja"
#. Name of a DocType
#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
msgid "Notification Subscribed Document"
-msgstr ""
+msgstr "Obavijest Pretplaćeni Dokument"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
-msgstr ""
+msgstr "Obavještenje je poslano za"
#: frappe/email/doctype/notification/notification.py:500
msgid "Notification: customer {0} has no Mobile number set"
-msgstr ""
+msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona"
#: frappe/email/doctype/notification/notification.py:486
msgid "Notification: document {0} has no {1} number set (field: {2})"
-msgstr ""
+msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})"
#: frappe/email/doctype/notification/notification.py:495
msgid "Notification: user {0} has no Mobile number set"
-msgstr ""
+msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona"
#. Label of the notifications (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
#: frappe/public/js/frappe/ui/notifications/notifications.js:50
#: frappe/public/js/frappe/ui/notifications/notifications.js:187
msgid "Notifications"
-msgstr ""
+msgstr "Obavještenja"
#: frappe/public/js/frappe/ui/notifications/notifications.js:299
msgid "Notifications Disabled"
-msgstr ""
+msgstr "Obavještenja Onemogućena"
#. Description of the 'Default Outgoing' (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr ""
+msgstr "Obavještenja i masovne poruke će se slati sa ovog odlaznog servera."
#. Label of the notify_on_every_login (Check) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Notify Users On Every Login"
-msgstr ""
+msgstr "Obavijesti Korisnike o Svakoj Prijavi"
#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Notify by Email"
-msgstr ""
+msgstr "Obavijesti putem e-pošte"
#. Label of the notify_by_email (Check) field in DocType 'DocShare'
#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr ""
+msgstr "Obavijesti putem e-pošte"
#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied"
-msgstr ""
+msgstr "Obavijesti ako nema odgovora"
#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied for (in mins)"
-msgstr ""
+msgstr "Obavijesti ako nema odgovora za (u minutama)"
#. Label of the notify_on_login (Check) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Notify users with a popup when they log in"
-msgstr ""
+msgstr "Obavijestite korisnike skočnim prozorom kada se prijave"
#: frappe/public/js/frappe/form/controls/datetime.js:25
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
-msgstr ""
+msgstr "Sad"
#. Label of the phone (Data) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr ""
+msgstr "Broj"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
-msgstr ""
+msgstr "Numerička Kartica"
#. Name of a DocType
#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Number Card Link"
-msgstr ""
+msgstr "Veza Kartice sa brojem"
#. Label of the number_card_name (Link) field in DocType 'Workspace Number
#. Card'
#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Number Card Name"
-msgstr ""
+msgstr "Naziv Numeričke Kartice"
#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace'
#. Label of the number_cards (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
-msgstr ""
+msgstr "Numeričke Kartice"
#. Label of the number_format (Select) field in DocType 'Language'
#. Label of the number_format (Select) field in DocType 'System Settings'
@@ -17433,403 +17444,403 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr ""
+msgstr "Format Broja"
#. Label of the backup_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of Backups"
-msgstr ""
+msgstr "Broj Sigurnosnih Kopija"
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
-msgstr ""
+msgstr "Broj Grupa"
#. Label of the number_of_queries (Int) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Number of Queries"
-msgstr ""
+msgstr "Broj Upita"
#: frappe/core/doctype/doctype/doctype.py:442
#: frappe/public/js/frappe/doctype/index.js:59
msgid "Number of attachment fields are more than {}, limit updated to {}."
-msgstr ""
+msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}."
#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
-msgstr ""
+msgstr "Broj Sigurnosnih Kopija mora biti veći od nule."
#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field'
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)"
-msgstr ""
+msgstr "Broj kolona za polje u Mreži (Ukupni Broj Kolona u mreži trebao bi biti manji od 11)"
#. Description of the 'Columns' (Int) field in DocType 'DocField'
#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr ""
+msgstr "Broj kolona za polje u Prikazu Liste ili Mreži (Ukupni Broj Kolona bi trebao biti manji od 11)"
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of days after which the document Web View link shared on email will be expired"
-msgstr ""
+msgstr "Broj dana nakon kojih će veza Web Prikaza dokumenta podijeljena putem e-pošte isteći"
#. Label of the cache_keys (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Number of keys"
-msgstr ""
+msgstr "Broj ključeva"
#. Label of the onsite_backups (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Number of onsite backups"
-msgstr ""
+msgstr "Broj lokalnih Sigurnosnih Kopija"
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "OAuth"
-msgstr ""
+msgstr "OAuth"
#. Name of a DocType
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "OAuth Authorization Code"
-msgstr ""
+msgstr "OAuth Autorizacijski Kod"
#. Name of a DocType
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "OAuth Bearer Token"
-msgstr ""
+msgstr "OAuth Token Nosioca"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Client"
-msgstr ""
+msgstr "OAuth Klijent"
#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr ""
+msgstr "OAuth ID Klijenta"
#. Name of a DocType
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
msgid "OAuth Client Role"
-msgstr ""
+msgstr "OAuth Uloga Klijenta"
#: frappe/email/oauth.py:30
msgid "OAuth Error"
-msgstr ""
+msgstr "OAuth Greška"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Provider Settings"
-msgstr ""
+msgstr "OAuth Postavke Dobavljača"
#. Name of a DocType
#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "OAuth Scope"
-msgstr ""
+msgstr "OAuth Opseg"
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
-msgstr ""
+msgstr "OAuth je omogućen, ali nije ovlašten. Koristi dugme \"Odobri API Pristup\" da učinite isto."
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "OPTIONS"
-msgstr ""
+msgstr "OPCIJE"
#: frappe/public/js/form_builder/components/Tabs.vue:190
msgid "OR"
-msgstr ""
+msgstr "ILI"
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr ""
+msgstr "OTP Aplikacija"
#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr ""
+msgstr "Naziv OTP Izdavaoca"
#: frappe/twofactor.py:445
msgid "OTP Secret Reset - {0}"
-msgstr ""
+msgstr "OTP Poništavanje Tajne - {0}"
#: frappe/twofactor.py:464
msgid "OTP Secret has been reset. Re-registration will be required on next login."
-msgstr ""
+msgstr "OTP Tajna je resetovana. Ponovna registracija će biti potrebna prilikom sljedeće prijave."
#: frappe/templates/includes/login/login.js:355
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
-msgstr ""
+msgstr "Postavljanje OTP pomoću OTP Aplikacije nije završeno. Kontaktiraj Administratora."
#. Label of the occurrences (Int) field in DocType 'System Health Report
#. Errors'
#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
msgid "Occurrences"
-msgstr ""
+msgstr "Ponavljanja"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr ""
+msgstr "Isključen"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr ""
+msgstr "Ured"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Office 365"
-msgstr ""
+msgstr "Office 365"
#: frappe/core/doctype/server_script/server_script.js:36
msgid "Official Documentation"
-msgstr ""
+msgstr "Službena Dokumentacija"
#. Label of the offset_x (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset X"
-msgstr ""
+msgstr "Pomak X"
#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
-msgstr ""
+msgstr "Pomak Y"
#: frappe/database/query.py:121
msgid "Offset must be a non-negative integer"
-msgstr ""
+msgstr "Pomak mora biti cijeli broj koji nije negativan"
#: frappe/www/update-password.html:38
msgid "Old Password"
-msgstr ""
+msgstr "Stara Lozinka"
#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Old and new fieldnames are same."
-msgstr ""
+msgstr "Stari i novi nazivi polja su isti."
#. Description of the 'Number of Backups' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr ""
+msgstr "Starije sigurnosne kopije će se automatski izbrisati"
#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Oldest Unscheduled Job"
-msgstr ""
+msgstr "Najstariji Neraspoređeni Posao"
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "On Hold"
-msgstr ""
+msgstr "Na Čekanju"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Authorization"
-msgstr ""
+msgstr "Pri Autorizaciji Plaćanja"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Charge Processed"
-msgstr ""
+msgstr "Pri Plaćanju Obrađene Naknade"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Failed"
-msgstr ""
+msgstr "Pri Slučaju Neuspjelog Plaćanja"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Mandate Acquisition Processed"
-msgstr ""
+msgstr "Pri Naloga Plaćanja Obrađeno Preuzimanje"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Mandate Charge Processed"
-msgstr ""
+msgstr "Pri Naloga Plaćanja Obrađena Naknada"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Paid"
-msgstr ""
+msgstr "Pri Izvršenoj Uplati"
#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "On checking this option, URL will be treated like a jinja template string"
-msgstr ""
+msgstr "Kada označite ovu opciju, URL će se tretirati kao niz jinja šablona"
#: frappe/public/js/frappe/ui/filters/filter.js:66
#: frappe/public/js/frappe/ui/filters/filter.js:72
msgid "On or After"
-msgstr ""
+msgstr "Na ili Poslije"
#: frappe/public/js/frappe/ui/filters/filter.js:65
#: frappe/public/js/frappe/ui/filters/filter.js:71
msgid "On or Before"
-msgstr ""
+msgstr "Na ili Prije"
#: frappe/public/js/frappe/views/communication.js:960
msgid "On {0}, {1} wrote:"
-msgstr ""
+msgstr "{0}, {1} je napisao:"
#. Label of the onboard (Check) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
-msgstr ""
+msgstr "Introdukcija"
#: frappe/public/js/frappe/widgets/widget_dialog.js:232
msgid "Onboarding Name"
-msgstr ""
+msgstr "Naziv Introdukcije"
#. Name of a DocType
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
msgid "Onboarding Permission"
-msgstr ""
+msgstr "Dozvola Introdukcije"
#. Label of the onboarding_status (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Onboarding Status"
-msgstr ""
+msgstr "Status Introdukcije"
#. Name of a DocType
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Onboarding Step"
-msgstr ""
+msgstr "Korak Introdukcije"
#. Name of a DocType
#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Onboarding Step Map"
-msgstr ""
+msgstr "Mapa Koraka Introdukcije"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:264
msgid "Onboarding complete"
-msgstr ""
+msgstr "Introdukcija Završena"
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype_list.js:42
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
-msgstr ""
+msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti."
#: frappe/core/page/permission_manager/permission_manager_help.html:35
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
-msgstr ""
+msgstr "Nakon što ovo postavite, korisnici će moći pristupiti samo dokumentima (npr. Blog Post) gdje postoji veza (npr. Blogger)."
#: frappe/www/complete_signup.html:7
msgid "One Last Step"
-msgstr ""
+msgstr "Posljednji Korak"
#: frappe/twofactor.py:278
msgid "One Time Password (OTP) Registration Code from {}"
-msgstr ""
+msgstr "Jednokratna Lozinka (OTP) registracijski kod od {}"
#: frappe/core/doctype/data_export/exporter.py:331
msgid "One of"
-msgstr ""
+msgstr "Jedan od"
#: frappe/client.py:213
msgid "Only 200 inserts allowed in one request"
-msgstr ""
+msgstr "Dozvoljeno je samo 200 umetanja u jednom zahtjevu"
#: frappe/email/doctype/email_queue/email_queue.py:87
msgid "Only Administrator can delete Email Queue"
-msgstr ""
+msgstr "Samo Administrator može izbrisati red čekanja e-pošte"
#: frappe/core/doctype/page/page.py:66
msgid "Only Administrator can edit"
-msgstr ""
+msgstr "Samo Administrator može uređivati"
#: frappe/core/doctype/report/report.py:75
msgid "Only Administrator can save a standard report. Please rename and save."
-msgstr ""
+msgstr "Samo Administrator može spremiti standardni izvještaj. Preimenuj i spremi."
#: frappe/recorder.py:316
msgid "Only Administrator is allowed to use Recorder"
-msgstr ""
+msgstr "Samo Administrator može koristiti Snimač"
#. Label of the allow_edit (Link) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Only Allow Edit For"
-msgstr ""
+msgstr "Dozvoli samo uređivanje za"
#: frappe/core/doctype/doctype/doctype.py:1620
msgid "Only Options allowed for Data field are:"
-msgstr ""
+msgstr "Jedine dopuštene opcije za polje podataka su:"
#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Only Send Records Updated in Last X Hours"
-msgstr ""
+msgstr "Pošalji Zapise Ažurirane u Posljednjih X Sati"
#: frappe/desk/doctype/workspace/workspace.js:32
msgid "Only Workspace Manager can edit public workspaces"
-msgstr ""
+msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
#: frappe/modules/utils.py:65
msgid "Only allowed to export customizations in developer mode"
-msgstr ""
+msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere"
#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
-msgstr ""
+msgstr "Mogu se odbaciti samo nacrti dokumenata"
#. Label of the only_for (Link) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
-msgstr ""
+msgstr "Samo za"
#: frappe/core/doctype/data_export/exporter.py:192
msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish."
-msgstr ""
+msgstr "Za nove zapise neophodna su samo obavezna polja. Ako želite, možete izbrisati neobavezne kolone."
#: frappe/contacts/doctype/contact/contact.py:131
#: frappe/contacts/doctype/contact/contact.py:158
msgid "Only one {0} can be set as primary."
-msgstr ""
+msgstr "Samo jedan {0} može biti postavljen kao primarni."
#: frappe/desk/reportview.py:357
msgid "Only reports of type Report Builder can be deleted"
-msgstr ""
+msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja"
#: frappe/desk/reportview.py:328
msgid "Only reports of type Report Builder can be edited"
-msgstr ""
+msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja"
#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
-msgstr ""
+msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje."
#: frappe/model/delete_doc.py:240
msgid "Only the Administrator can delete a standard DocType."
-msgstr ""
+msgstr "Samo Administrator može izbrisati standardni DocType."
#: frappe/desk/form/assign_to.py:198
msgid "Only the assignee can complete this to-do."
-msgstr ""
+msgstr "Samo dodjeljeni može izvršiti ovu obavezu."
#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
msgid "Only {0} emailed reports are allowed per user."
-msgstr ""
+msgstr "Dozvoljeni su samo {0} izvještaja poslatih e-poštom po korisniku."
#: frappe/templates/includes/login/login.js:291
msgid "Oops! Something went wrong."
-msgstr ""
+msgstr "Ups! Nešto je pošlo po zlu."
#. Option for the 'Status' (Select) field in DocType 'Contact'
#. Option for the 'Status' (Select) field in DocType 'Communication'
@@ -17843,86 +17854,86 @@ msgstr ""
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Open"
-msgstr ""
+msgstr "Otvori"
#: frappe/desk/doctype/todo/todo_list.js:14
msgctxt "Access"
msgid "Open"
-msgstr ""
+msgstr "Otvori"
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
-msgstr ""
+msgstr "Otvori Awesomebar"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97
msgid "Open Communication"
-msgstr ""
+msgstr "Otvori Konverzaciju"
#: frappe/templates/emails/new_notification.html:10
msgid "Open Document"
-msgstr ""
+msgstr "Otvori Dokument"
#. Label of the subscribed_documents (Table MultiSelect) field in DocType
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr ""
+msgstr "Otvori Dokumente"
#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
-msgstr ""
+msgstr "Otvori Pomoć"
#. Label of the open_reference_document (Button) field in DocType 'Notification
#. Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr ""
+msgstr "Otvori Referentni Dokument"
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
-msgstr ""
+msgstr "Otvori Postavke"
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Open Source Applications for the Web"
-msgstr ""
+msgstr "Aplikacije otvorenog koda za Web"
#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Open URL in a New Tab"
-msgstr ""
+msgstr "Otvori URL u novoj kartici"
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
-msgstr ""
+msgstr "Otvorite dijalog sa obaveznim poljima da brzo kreirate novi zapis. Mora postojati barem jedno obavezno polje za prikaz u dijalogu."
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176
msgid "Open a module or tool"
-msgstr ""
+msgstr "Otvori modul ili alat"
#: frappe/public/js/frappe/ui/keyboard.js:366
msgid "Open console"
-msgstr ""
+msgstr "Otvori konzolu"
#: frappe/public/js/print_format_builder/Preview.vue:17
msgid "Open in a new tab"
-msgstr ""
+msgstr "Otvori u novoj kartici"
#: frappe/public/js/frappe/list/list_view.js:1290
msgctxt "Description of a list view shortcut"
msgid "Open list item"
-msgstr ""
+msgstr "Otvorite stavku liste"
#: frappe/core/doctype/error_log/error_log.js:15
msgid "Open reference document"
-msgstr ""
+msgstr "Otvorite referentni dokument"
#: frappe/www/qrcode.html:13
msgid "Open your authentication app on your mobile phone."
-msgstr ""
+msgstr "Otvorite aplikaciju za autentifikaciju na svom mobilnom telefonu."
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
@@ -17934,67 +17945,67 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
msgid "Open {0}"
-msgstr ""
+msgstr "Otvori {0}"
#. Label of the openid_configuration (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
-msgstr ""
+msgstr "OpenID konfiguracija"
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
-msgstr ""
+msgstr "OpenLDAP"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr ""
+msgstr "Otvoreno"
#. Label of the operation (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Operation"
-msgstr ""
+msgstr "Operacija"
#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
-msgstr ""
+msgstr "Operator mora biti jedan od {0}"
#: frappe/core/doctype/file/file.js:34
#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28
msgid "Optimize"
-msgstr ""
+msgstr "Optimiziraj"
#: frappe/core/doctype/file/file.js:105
msgid "Optimizing image..."
-msgstr ""
+msgstr "Optimiziranje slike u toku..."
#: frappe/custom/doctype/custom_field/custom_field.js:100
msgid "Option 1"
-msgstr ""
+msgstr "Opcija 1"
#: frappe/custom/doctype/custom_field/custom_field.js:102
msgid "Option 2"
-msgstr ""
+msgstr "Opcija 2"
#: frappe/custom/doctype/custom_field/custom_field.js:104
msgid "Option 3"
-msgstr ""
+msgstr "Opcija 3"
#: frappe/core/doctype/doctype/doctype.py:1638
msgid "Option {0} for field {1} is not a child table"
-msgstr ""
+msgstr "Opcija {0} za polje {1} nije podređena tabela"
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr ""
+msgstr "Opcija: Uvijek šaljite na ove Id-ove. Svaka adresa e-pošte u novom redu"
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr ""
+msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan"
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -18012,58 +18023,58 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
-msgstr ""
+msgstr "Opcije"
#: frappe/core/doctype/doctype/doctype.py:1366
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
-msgstr ""
+msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze s opcijama kao 'DocType'"
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr ""
+msgstr "Pomoć Opcija"
#: frappe/core/doctype/doctype/doctype.py:1660
msgid "Options for Rating field can range from 3 to 10"
-msgstr ""
+msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10"
#: frappe/custom/doctype/custom_field/custom_field.js:96
msgid "Options for select. Each option on a new line."
-msgstr ""
+msgstr "Opcije za odabir. Svaka opcija u novom redu."
#: frappe/core/doctype/doctype/doctype.py:1383
msgid "Options for {0} must be set before setting the default value."
-msgstr ""
+msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednosti."
#: frappe/public/js/form_builder/store.js:182
msgid "Options is required for field {0} of type {1}"
-msgstr ""
+msgstr "Opcije su potrebne za polje {0} tipa {1}"
#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
-msgstr ""
+msgstr "Opcije nisu postavljene za polje veze {0}"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Orange"
-msgstr ""
+msgstr "Narandžasta"
#. Label of the order (Code) field in DocType 'Kanban Board Column'
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Order"
-msgstr ""
+msgstr "Red"
#: frappe/database/query.py:767
msgid "Order By must be a string"
-msgstr ""
+msgstr "Sortiraj Po mora biti niz"
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History"
-msgstr ""
+msgstr "Istorija"
#. Label of the company_history_heading (Data) field in DocType 'About Us
#. Settings'
@@ -18073,12 +18084,12 @@ msgstr "Naslov Povijesti Organizacije"
#: frappe/public/js/frappe/form/print_utils.js:28
msgid "Orientation"
-msgstr ""
+msgstr "Orijentacija"
#: frappe/core/doctype/version/version_view.html:13
#: frappe/core/doctype/version/version_view.html:75
msgid "Original Value"
-msgstr ""
+msgstr "Originalna Vrijednost"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#. Option for the 'Type' (Select) field in DocType 'Communication'
@@ -18090,46 +18101,46 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr ""
+msgstr "Ostalo"
#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing"
-msgstr ""
+msgstr "Odlazeća"
#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing (SMTP) Settings"
-msgstr ""
+msgstr "Odlazne Postavke (SMTP)"
#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Outgoing Emails (Last 7 days)"
-msgstr ""
+msgstr "Odlazna e-pošta (Zadnjih 7 dana)"
#. Label of the smtp_server (Data) field in DocType 'Email Account'
#. Label of the smtp_server (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
-msgstr ""
+msgstr "Odlazni Server"
#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
#. Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Settings"
-msgstr ""
+msgstr "Odlazne Postavke"
#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
-msgstr ""
+msgstr "Odlazni račun e-pošte nije ispravan"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outlook.com"
-msgstr ""
+msgstr "Outlook.com"
#. Label of the output (Code) field in DocType 'Permission Inspector'
#. Label of the output (Code) field in DocType 'System Console'
@@ -18138,30 +18149,30 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr ""
+msgstr "Izlaz"
#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
msgid "Overview"
-msgstr ""
+msgstr "Pregled"
#: frappe/core/report/transaction_log_report/transaction_log_report.py:100
msgid "Owner"
-msgstr ""
+msgstr "Vlasnik"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "PATCH"
-msgstr ""
+msgstr "ZAKRPA"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
msgid "PDF Generation in Progress"
-msgstr ""
+msgstr "PDF Generisanje u toku"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -18171,57 +18182,57 @@ msgstr "PDF Generator"
#. Label of the pdf_page_height (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Height (in mm)"
-msgstr ""
+msgstr "PDF Visina Stranice (u mm)"
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr ""
+msgstr "PDF Veličina Stranice"
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
-msgstr ""
+msgstr "PDF Širina Stranice (u mm)"
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr ""
+msgstr "PDF Postavke"
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
-msgstr ""
+msgstr "PDF Generisanje nije uspjelo"
#: frappe/utils/pdf.py:106
msgid "PDF generation failed because of broken image links"
-msgstr ""
+msgstr "PDF Generisanje nije uspjelo zbog neispravnih veza slika"
#: frappe/printing/page/print/print.js:616
msgid "PDF generation may not work as expected."
-msgstr ""
+msgstr "PDF Generisanje možda neće raditi kako se očekuje."
#: frappe/printing/page/print/print.js:534
msgid "PDF printing via \"Raw Print\" is not supported."
-msgstr ""
+msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano."
#. Label of the pid (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "PID"
-msgstr ""
+msgstr "PID"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "POST"
-msgstr ""
+msgstr "POST"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "PUT"
-msgstr ""
+msgstr "PUT"
#. Label of the package (Link) field in DocType 'Module Def'
#. Name of a DocType
@@ -18232,34 +18243,34 @@ msgstr ""
#: frappe/core/doctype/package_release/package_release.json
#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34
msgid "Package"
-msgstr ""
+msgstr "Applikacija"
#. Name of a DocType
#. Label of a Link in the Build Workspace
#: frappe/core/doctype/package_import/package_import.json
#: frappe/core/workspace/build/build.json
msgid "Package Import"
-msgstr ""
+msgstr "Uvoz Aplikacije"
#. Label of the package_name (Data) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Package Name"
-msgstr ""
+msgstr "Naziv Aplikacije"
#. Name of a DocType
#: frappe/core/doctype/package_release/package_release.json
msgid "Package Release"
-msgstr ""
+msgstr "Izdanje Aplikacije"
#. Label of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Packages"
-msgstr ""
+msgstr "Aplikacije"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI"
-msgstr ""
+msgstr "Applikacije su lagane aplikacije (zbirka Module Defs) koje se mogu izraditi, uvesti ili objaviti izravno iz korisničkog sučelja"
#. Label of the page (Link) field in DocType 'Custom Role'
#. Name of a DocType
@@ -18281,217 +18292,217 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Page"
-msgstr ""
+msgstr "Stranica"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Page Break"
-msgstr ""
+msgstr "Prijelom stranice"
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
msgid "Page Builder"
-msgstr ""
+msgstr "Izrada Stranica"
#. Label of the page_blocks (Table) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Page Building Blocks"
-msgstr ""
+msgstr "Elementi Stranice"
#. Label of the page_html (Section Break) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr ""
+msgstr "HTML Stranice"
#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
-msgstr ""
+msgstr "Visina Stranice (u mm)"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5
msgid "Page Margins"
-msgstr ""
+msgstr "Margine Stranice"
#. Label of the page_name (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page Name"
-msgstr ""
+msgstr "Naziv Stranice"
#. Label of the page_number (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63
msgid "Page Number"
-msgstr ""
+msgstr "Broj Stranice"
#. Label of the page_route (Small Text) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Page Route"
-msgstr ""
+msgstr "Ruta Stranice"
#. Label of the view_link_in_email (Section Break) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Page Settings"
-msgstr ""
+msgstr "Postavke Stranice"
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
-msgstr ""
+msgstr "Prečice Stranice"
#: frappe/public/js/frappe/list/bulk_operations.js:66
msgid "Page Size"
-msgstr ""
+msgstr "Veličina Stranice"
#. Label of the page_title (Data) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Page Title"
-msgstr ""
+msgstr "Naslov Stranice"
#: frappe/public/js/frappe/list/bulk_operations.js:80
msgid "Page Width (in mm)"
-msgstr ""
+msgstr "Širina Stranice (u mm)"
#: frappe/www/qrcode.py:35
msgid "Page has expired!"
-msgstr ""
+msgstr "Stranica je istekla!"
#: frappe/printing/doctype/print_settings/print_settings.py:70
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
-msgstr ""
+msgstr "Visina i širina stranice ne mogu biti nula"
#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23
msgid "Page not found"
-msgstr ""
+msgstr "Stranica nije pronađena"
#. Description of a DocType
#: frappe/website/doctype/web_page/web_page.json
msgid "Page to show on the website\n"
-msgstr ""
+msgstr "Stranica za prikaz na web stranici\n"
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
#: frappe/public/js/frappe/web_form/web_form.js:264
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
-msgstr ""
+msgstr "Stranica {0} od {1}"
#. Label of the parameter (Data) field in DocType 'SMS Parameter'
#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "Parameter"
-msgstr ""
+msgstr "Parametar"
#: frappe/public/js/frappe/model/model.js:142
#: frappe/public/js/frappe/views/workspace/workspace.js:434
msgid "Parent"
-msgstr ""
+msgstr "Nadređeni"
#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
-msgstr ""
+msgstr "Nadređeni DocType"
#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
#. Label of the parent_document_type (Link) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
-msgstr ""
+msgstr "Nadređeni Tip Dokumenta"
#: frappe/desk/doctype/number_card/number_card.py:65
msgid "Parent Document Type is required to create a number card"
-msgstr ""
+msgstr "Nadređeni Dokument Tip je obavezan za kreiranje numeričke kartice"
#. Label of the parent_element_selector (Data) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Element Selector"
-msgstr ""
+msgstr "Birač Nadređenog Elementa"
#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Field"
-msgstr ""
+msgstr "Nadređeno Polje"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype.py:933
msgid "Parent Field (Tree)"
-msgstr ""
+msgstr "Nadređeno Polje (Stablo)"
#: frappe/core/doctype/doctype/doctype.py:939
msgid "Parent Field must be a valid fieldname"
-msgstr ""
+msgstr "Nadređeno Polje mora biti važeće ime polja"
#. Label of the parent_label (Select) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Parent Label"
-msgstr ""
+msgstr "Nadređena Oznaka"
#: frappe/core/doctype/doctype/doctype.py:1197
msgid "Parent Missing"
-msgstr ""
+msgstr "Nedostaje Nadređeni"
#. Label of the parent_page (Link) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Parent Page"
-msgstr ""
+msgstr "Nadređena Stranica"
#: frappe/core/doctype/data_export/exporter.py:24
msgid "Parent Table"
-msgstr ""
+msgstr "Nadređena Tabela"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
msgid "Parent document type is required to create a dashboard chart"
-msgstr ""
+msgstr "Tip nadređenog dokumenta je obavezan za kreiranje grafikona nadzorne table"
#: frappe/core/doctype/data_export/exporter.py:253
msgid "Parent is the name of the document to which the data will get added to."
-msgstr ""
+msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
#: frappe/public/js/frappe/ui/group_by/group_by.js:251
msgid "Parent-to-child or child-to-parent grouping is not allowed."
-msgstr ""
+msgstr "Grupiranje roditelj-djetetu ili dijete-roditelju nije dopušteno."
#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
-msgstr ""
+msgstr "Nadređeno polje nije navedeno u {0}: {1}"
#: frappe/client.py:467
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
-msgstr ""
+msgstr "Za umetanje podređenog zapisa potrebni su nadređeni tip, nadređeni i nadređeno polje"
#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step'
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Partial"
-msgstr ""
+msgstr "Djelimično"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Partial Success"
-msgstr ""
+msgstr "Djelimičan Uspjeh"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Partially Sent"
-msgstr ""
+msgstr "Djelimično Poslano"
#. Label of the participants (Section Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
-msgstr ""
+msgstr "Učesnici"
#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Pass"
-msgstr ""
+msgstr "Uspješno"
#. Option for the 'Status' (Select) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr ""
+msgstr "Pasivno"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the password_settings (Section Break) field in DocType 'System
@@ -18512,89 +18523,89 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/www/login.html:22
msgid "Password"
-msgstr ""
+msgstr "Lozinka"
#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
-msgstr ""
+msgstr "E-pošta s lozinkom poslana"
#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
-msgstr ""
+msgstr "Poništavanje Lozinke"
#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr ""
+msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu"
#: frappe/public/js/frappe/form/grid_row.js:880
msgid "Password cannot be filtered"
-msgstr ""
+msgstr "Lozinka se ne može filtrirati"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357
msgid "Password changed successfully."
-msgstr ""
+msgstr "Lozinka je uspješno promijenjena."
#. Label of the password (Password) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Password for Base DN"
-msgstr ""
+msgstr "Lozinka za Osnovni DN"
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
-msgstr ""
+msgstr "Lozinka je obavezna ili odaberi Čekam Lozinku"
#: frappe/public/js/frappe/desk.js:212
msgid "Password missing in Email Account"
-msgstr ""
+msgstr "Nedostaje Lozinka za Račun e-pošte"
#: frappe/utils/password.py:47
msgid "Password not found for {0} {1} {2}"
-msgstr ""
+msgstr "Lozinka nije pronađena za {0} {1} {2}"
#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
-msgstr ""
+msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
#: frappe/www/update-password.html:166
msgid "Password set"
-msgstr ""
+msgstr "Lozinka postavljena"
#: frappe/auth.py:258
msgid "Password size exceeded the maximum allowed size"
-msgstr ""
+msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
-msgstr ""
+msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
#: frappe/www/update-password.html:80
msgid "Passwords do not match"
-msgstr ""
+msgstr "Lozinke se ne podudaraju"
#: frappe/core/doctype/user/user.js:205
msgid "Passwords do not match!"
-msgstr ""
+msgstr "Lozinke se ne podudaraju!"
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
-msgstr ""
+msgstr "Zalijepi"
#. Label of the patch (Int) field in DocType 'Package Release'
#. Label of the patch (Code) field in DocType 'Patch Log'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr ""
+msgstr "Zakrpa"
#. Name of a DocType
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch Log"
-msgstr ""
+msgstr "Zapisnik Zakrpa"
#: frappe/modules/patch_handler.py:136
msgid "Patch type {} not found in patches.txt"
-msgstr ""
+msgstr "Tip Zakrpe {} nije pronađen u patches.txt"
#. Label of the path (Data) field in DocType 'API Request Log'
#. Label of the path (Small Text) field in DocType 'Package Release'
@@ -18608,37 +18619,37 @@ msgstr ""
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:35
msgid "Path"
-msgstr ""
+msgstr "Put"
#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to CA Certs File"
-msgstr ""
+msgstr "Put do datoteke CA certifikata"
#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr ""
+msgstr "Put do Certifikata Servera"
#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to private Key File"
-msgstr ""
+msgstr "Put do Datoteke Privatnog Ključa"
#: frappe/website/path_resolver.py:208
msgid "Path {0} it not a valid path"
-msgstr ""
+msgstr "Put {0} nije važeći put"
#. Label of the payload_count (Int) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Payload Count"
-msgstr ""
+msgstr "Broj Nosivosti"
#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Peak Memory Usage"
-msgstr ""
+msgstr "Maksimalna Upotreba Memorije"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
@@ -18648,30 +18659,30 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Pending"
-msgstr ""
+msgstr "Na Čekanju"
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr ""
+msgstr "Na čekanju na Odobrenje"
#. Label of the pending_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Pending Emails"
-msgstr ""
+msgstr "E-pošta na Čekanju"
#. Label of the pending_jobs (Int) field in DocType 'System Health Report
#. Queue'
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Pending Jobs"
-msgstr ""
+msgstr "Poslovi na Čekanju"
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr ""
+msgstr "Čeka se Verifikacija"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -18680,91 +18691,91 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Percent"
-msgstr ""
+msgstr "Procenat"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr ""
+msgstr "Procenat"
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Period"
-msgstr ""
+msgstr "Razdoblje"
#. Label of the permlevel (Int) field in DocType 'DocField'
#. Label of the permlevel (Int) field in DocType 'Customize Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr ""
+msgstr "Nivo Dozvola"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
-msgstr ""
+msgstr "Trajno"
#: frappe/public/js/frappe/form/form.js:1028
msgid "Permanently Cancel {0}?"
-msgstr ""
+msgstr "Trajno Otkaži {0}?"
#: frappe/public/js/frappe/form/form.js:1074
msgid "Permanently Discard {0}?"
-msgstr ""
+msgstr "Trajno Odbaci {0}?"
#: frappe/public/js/frappe/form/form.js:861
msgid "Permanently Submit {0}?"
-msgstr ""
+msgstr "Trajno Podnesi {0}?"
#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
-msgstr ""
+msgstr "Trajno izbriši {0}?"
#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
-msgstr ""
+msgstr "Greška Dozvole"
#. Name of a DocType
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Inspector"
-msgstr ""
+msgstr "Inspektor Dozvola"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
#: frappe/core/page/permission_manager/permission_manager.js:463
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
-msgstr ""
+msgstr "Nivo Dozvole"
#: frappe/core/page/permission_manager/permission_manager_help.html:22
msgid "Permission Levels"
-msgstr ""
+msgstr "Nivoi Dozvola"
#. Name of a DocType
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Permission Log"
-msgstr ""
+msgstr "Zapisnik Dozvola"
#. Label of a shortcut in the Users Workspace
#: frappe/core/workspace/users/users.json
msgid "Permission Manager"
-msgstr ""
+msgstr "Upravitelj Dozvola"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
-msgstr ""
+msgstr "Upit za Dozvolu"
#. Label of the permission_rules (Section Break) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "Permission Rules"
-msgstr ""
+msgstr "Pravila Dozvole"
#. Label of the permission_type (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Type"
-msgstr ""
+msgstr "Tip Dozvole"
#. Label of the section_break_4 (Section Break) field in DocType 'Custom
#. DocPerm'
@@ -18787,65 +18798,65 @@ msgstr ""
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
-msgstr ""
+msgstr "Dozvole"
#: frappe/core/doctype/doctype/doctype.py:1834
#: frappe/core/doctype/doctype/doctype.py:1844
msgid "Permissions Error"
-msgstr ""
+msgstr "Greška Dozvola"
#: frappe/core/page/permission_manager/permission_manager_help.html:10
msgid "Permissions are automatically applied to Standard Reports and searches."
-msgstr ""
+msgstr "Dozvole se automatski primjenjuju na Standardne Izvještaje i pretrage."
#: frappe/core/page/permission_manager/permission_manager_help.html:5
msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
-msgstr ""
+msgstr "Dozvole se postavljaju za uloge i Tip Dokumenata (zvane DocTypes) postavljanjem prava kao što su čitanje, pisanje, kreiranje, brisanje, slanje, poništavanje, izmjena, izvještaj, uvoz, izvoz, ispisivanje, slanje e-pošte i postavljanje korisničkih dozvola."
#: frappe/core/page/permission_manager/permission_manager_help.html:26
msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles."
-msgstr ""
+msgstr "Dozvole na višim nivoima su dozvole na nivou polja. Sva polja imaju postavljen nivo dozvole i pravila definisana u tim dozvolama važe za polje. Ovo je korisno u slučaju da želite sakriti ili učiniti određeno polje samo za čitanje za određene uloge."
#: frappe/core/page/permission_manager/permission_manager_help.html:24
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
-msgstr ""
+msgstr "Dozvole na nivou 0 su dozvole na nivou dokumenta, tj. primarne su za pristup dokumentu."
#: frappe/core/page/permission_manager/permission_manager_help.html:6
msgid "Permissions get applied on Users based on what Roles they are assigned."
-msgstr ""
+msgstr "Dozvole se primjenjuju na korisnike na osnovu uloga koje su im dodijeljene."
#. Name of a report
#. Label of a Link in the Users Workspace
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json
#: frappe/core/workspace/users/users.json
msgid "Permitted Documents For User"
-msgstr ""
+msgstr "Dozvoljeni Dokumenti za Korisnika"
#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow
#. Action'
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Permitted Roles"
-msgstr ""
+msgstr "Dozvoljene Uloge"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr ""
+msgstr "Lična"
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Personal Data Deletion Request"
-msgstr ""
+msgstr "Zahtjev Brisanja Ličnih Podataka"
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Personal Data Deletion Step"
-msgstr ""
+msgstr "Korak Brisanja Ličnih Podataka"
#. Name of a DocType
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Personal Data Download Request"
-msgstr ""
+msgstr "Zahtjev Preuzimanje Ličnih Podataka"
#. Label of the phone (Data) field in DocType 'Address'
#. Label of the phone (Data) field in DocType 'Contact'
@@ -18866,39 +18877,39 @@ msgstr ""
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Phone"
-msgstr ""
+msgstr "Telefon"
#. Label of the phone_no (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
-msgstr ""
+msgstr "Broj Telefona."
#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
-msgstr ""
+msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
#: frappe/public/js/frappe/form/print_utils.js:40
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
-msgstr ""
+msgstr "Odaberi Kolone"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr ""
+msgstr "Okrugli"
#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Pincode"
-msgstr ""
+msgstr "Mobilni Broj"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Pink"
-msgstr ""
+msgstr "Roza"
#. Label of the placeholder (Data) field in DocType 'DocField'
#. Label of the placeholder (Data) field in DocType 'Custom Field'
@@ -18907,129 +18918,129 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Placeholder"
-msgstr ""
+msgstr "Rezervisano"
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Plain Text"
-msgstr ""
+msgstr "Obični Tekst"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr ""
+msgstr "Pogon"
#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
-msgstr ""
+msgstr "Ovlasti OAuth za račun e-pošte {0}"
#: frappe/email/oauth.py:29
msgid "Please Authorize OAuth for Email Account {}"
-msgstr ""
+msgstr "Ovlastite OAuth za račun e-pošte {}"
#: frappe/website/doctype/website_theme/website_theme.py:77
msgid "Please Duplicate this Website Theme to customize."
-msgstr ""
+msgstr "Kopiraj ovu Temu Web Stranice kako biste je prilagodili."
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162
msgid "Please Install the ldap3 library via pip to use ldap functionality."
-msgstr ""
+msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcionalnost."
#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
-msgstr ""
+msgstr "Postavi Grafikon"
#: frappe/core/doctype/sms_settings/sms_settings.py:84
msgid "Please Update SMS Settings"
-msgstr ""
+msgstr "Ažuriraj SMS Postavke"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582
msgid "Please add a subject to your email"
-msgstr ""
+msgstr "Dodaj predmet e-pošti"
#: frappe/templates/includes/comments/comments.html:168
msgid "Please add a valid comment."
-msgstr ""
+msgstr "Dodaj relevantan komentar."
#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
-msgstr ""
+msgstr "Zamoli administratora da potvrdi vašu registraciju"
#: frappe/public/js/frappe/form/controls/select.js:101
msgid "Please attach a file first."
-msgstr ""
+msgstr "Priloži datoteku."
#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Please attach an image file to set HTML for Footer."
-msgstr ""
+msgstr "Priloži datoteku slike da postavite HTML za Podnožje."
#: frappe/printing/doctype/letter_head/letter_head.py:64
msgid "Please attach an image file to set HTML for Letter Head."
-msgstr ""
+msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje."
#: frappe/core/doctype/package_import/package_import.py:39
msgid "Please attach the package"
-msgstr ""
+msgstr "Priloži Applikaciju"
#: frappe/integrations/doctype/connected_app/connected_app.js:19
msgid "Please check OpenID Configuration URL"
-msgstr ""
+msgstr "Provjerite URL konfiguracije OpenID-a"
#: frappe/utils/dashboard.py:58
msgid "Please check the filter values set for Dashboard Chart: {}"
-msgstr ""
+msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
-msgstr ""
+msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}"
#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
-msgstr ""
+msgstr "Provjeri e-poštu za potvrdu"
#: frappe/email/smtp.py:134
msgid "Please check your email login credentials."
-msgstr ""
+msgstr "Provjeri akreditive za prijavu putem e-pošte."
#: frappe/twofactor.py:243
msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it."
-msgstr ""
+msgstr "Provjeri registrovanu adresu e-pošte za upute kako postupiti. Ne zatvarajte ovaj prozor jer ćete se morati vratiti na njega."
#: frappe/desk/doctype/workspace/workspace.js:23
msgid "Please click Edit on the Workspace for best results"
-msgstr ""
+msgstr "Kliknite Uredi na radnom prostoru za najbolje rezultate"
#: frappe/core/doctype/data_import/data_import.js:158
msgid "Please click on 'Export Errored Rows', fix the errors and import again."
-msgstr ""
+msgstr "Klikni na 'Izvezi Redove s Greškom', popravi greške i ponovo uvezi."
#: frappe/twofactor.py:286
msgid "Please click on the following link and follow the instructions on the page. {0}"
-msgstr ""
+msgstr "Klikni na sljedeću vezu i slijedi upute na stranici. {0}"
#: frappe/templates/emails/password_reset.html:2
msgid "Please click on the following link to set your new password"
-msgstr ""
+msgstr "Klikni na sljedeću vezu da postavite novu lozinku"
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
-msgstr ""
+msgstr "Potvrdi akciju {0} ovog dokumenta."
#: frappe/printing/page/print/print.js:618
msgid "Please contact your system manager to install correct version."
-msgstr ""
+msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju."
#: frappe/desk/doctype/number_card/number_card.js:44
msgid "Please create Card first"
-msgstr ""
+msgstr "Kreiraj Numeričku Karticu"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42
msgid "Please create chart first"
-msgstr ""
+msgstr "Kreiraj Grafikon"
#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
-msgstr ""
+msgstr "Izbriši polje iz {0} ili dodaj traženi dokument."
#: frappe/core/doctype/data_export/exporter.py:184
msgid "Please do not change the template headings."
@@ -19037,11 +19048,11 @@ msgstr "Ne mijenjaj Naslove Predložaka."
#: frappe/printing/doctype/print_format/print_format.js:18
msgid "Please duplicate this to make changes"
-msgstr ""
+msgstr "Kopiraj ovo da izvršite promjene"
#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
-msgstr ""
+msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP ili se prijavite putem veze e-pošte prije nego što onemogućite prijavu zasnovanu na korisničkom imenu/lozinki."
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
@@ -19050,219 +19061,219 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:161
#: frappe/public/js/frappe/utils/utils.js:1431
msgid "Please enable pop-ups"
-msgstr ""
+msgstr "Omogući iskačuće prozore"
#: frappe/public/js/frappe/microtemplate.js:162
#: frappe/public/js/frappe/microtemplate.js:177
msgid "Please enable pop-ups in your browser"
-msgstr ""
+msgstr "Omogući iskačuće prozore u vašem pretraživaču"
#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
-msgstr ""
+msgstr "Omogući {} prije nego nastavite."
#: frappe/utils/oauth.py:191
msgid "Please ensure that your profile has an email address"
-msgstr ""
+msgstr "Potvrdi da vaš profil ima adresu e-pošte"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
msgid "Please enter Access Token URL"
-msgstr ""
+msgstr "Unesi URL Pristupnog Tokena"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
msgid "Please enter Authorize URL"
-msgstr ""
+msgstr "Unesi URL Autorizacije"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
msgid "Please enter Base URL"
-msgstr ""
+msgstr "Unesi Osnovni URL"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
msgid "Please enter Client ID before social login is enabled"
-msgstr ""
+msgstr "Unesi ID Klijenta prije nego što se omogući prijava na društvene mreže"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
msgid "Please enter Client Secret before social login is enabled"
-msgstr ""
+msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim mrežama"
#: frappe/integrations/doctype/connected_app/connected_app.js:8
msgid "Please enter OpenID Configuration URL"
-msgstr ""
+msgstr "Unesi URL Konfiguracije OpenID-a"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
msgid "Please enter Redirect URL"
-msgstr ""
+msgstr "Unesi URL Preusmjeravanja"
#: frappe/templates/includes/comments/comments.html:163
msgid "Please enter a valid email address."
-msgstr ""
+msgstr "Unesite ispravnu adresu e-pošte."
#: frappe/templates/includes/contact.js:15
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
-msgstr ""
+msgstr "Unesi vašu e-poštu i poruku kako bismo vam mogli odgovoriti. Hvala!"
#: frappe/www/update-password.html:234
msgid "Please enter the password"
-msgstr ""
+msgstr "Unesi Lozinku"
#: frappe/public/js/frappe/desk.js:217
msgctxt "Email Account"
msgid "Please enter the password for: {0}"
-msgstr ""
+msgstr "Unesi Lozinku za: {0}"
#: frappe/core/doctype/sms_settings/sms_settings.py:43
msgid "Please enter valid mobile nos"
-msgstr ""
+msgstr "Unesi važeće brojeve mobitela"
#: frappe/www/update-password.html:117
msgid "Please enter your new password."
-msgstr ""
+msgstr "Unesi novu lozinku."
#: frappe/www/update-password.html:110
msgid "Please enter your old password."
-msgstr ""
+msgstr "Unesi staru lozinku."
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413
msgid "Please find attached {0}: {1}"
-msgstr ""
+msgstr "Ppronađi priloženo {0}: {1}"
#: frappe/templates/includes/comments/comments.py:31
msgid "Please login to post a comment."
-msgstr ""
+msgstr "Prijavi se da biste objavili komentar."
#: frappe/core/doctype/communication/communication.py:186
msgid "Please make sure the Reference Communication Docs are not circularly linked."
-msgstr ""
+msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani."
#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
-msgstr ""
+msgstr "Osvježi da dobijete najnoviji dokument."
#: frappe/printing/page/print/print.js:535
msgid "Please remove the printer mapping in Printer Settings and try again."
-msgstr ""
+msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo."
#: frappe/public/js/frappe/form/form.js:358
msgid "Please save before attaching."
-msgstr ""
+msgstr "Spremi prije prilaganja."
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
-msgstr ""
+msgstr "Spremi dokument prije dodjele"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:72
msgid "Please save the document before removing assignment"
-msgstr ""
+msgstr "Spremi dokument prije uklanjanja dodjele"
#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
-msgstr ""
+msgstr "Prvo spremi izvještaj"
#: frappe/website/doctype/web_template/web_template.js:22
msgid "Please save to edit the template."
-msgstr ""
+msgstr "Spremi da uredite šablon."
#: frappe/printing/doctype/print_format/print_format.js:30
msgid "Please select DocType first"
-msgstr ""
+msgstr "Odaberi DocType"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
msgid "Please select Entity Type first"
-msgstr ""
+msgstr "Odaberi Tip Entiteta"
#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
-msgstr ""
+msgstr "Odaberi Minimalnu Vrijednost Lozinke"
#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
-msgstr ""
+msgstr "Odaberi X i Y polja"
#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
-msgstr ""
+msgstr "Odaberi pozivni broj zemlje za polje {1}."
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506
msgid "Please select a file first."
-msgstr ""
+msgstr "Odaberi datoteku."
#: frappe/utils/file_manager.py:50
msgid "Please select a file or url"
-msgstr ""
+msgstr "Odaberi datoteku ili url"
#: frappe/model/rename_doc.py:685
msgid "Please select a valid csv file with data"
-msgstr ""
+msgstr "Odaberi važeću csv datoteku sa podacima"
#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
-msgstr ""
+msgstr "Odaberi važeći filter datuma"
#: frappe/core/doctype/user_permission/user_permission_list.js:203
msgid "Please select applicable Doctypes"
-msgstr ""
+msgstr "Odaberi primjenjive Dokumente"
#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
-msgstr ""
+msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214
msgid "Please select prefix first"
-msgstr ""
+msgstr "Odaberi Prefiks"
#: frappe/core/doctype/data_export/data_export.js:42
msgid "Please select the Document Type."
-msgstr ""
+msgstr "Odaberi Tip Dokumenta."
#. Description of the 'Directory Server' (Select) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Please select the LDAP Directory being used"
-msgstr ""
+msgstr "Odaberite LDAP mapu koja se koristi"
#: frappe/website/doctype/website_settings/website_settings.js:100
msgid "Please select {0}"
-msgstr ""
+msgstr "Odaberi {0}"
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
-msgstr ""
+msgstr "Postavi adresu e-pošte"
#: frappe/printing/page/print/print.js:549
msgid "Please set a printer mapping for this print format in the Printer Settings"
-msgstr ""
+msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača"
#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
-msgstr ""
+msgstr "Postavi filtere"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
msgid "Please set filters value in Report Filter table."
-msgstr ""
+msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja."
#: frappe/model/naming.py:572
msgid "Please set the document name"
-msgstr ""
+msgstr "Molimo postavite naziv dokumenta"
#: frappe/desk/doctype/dashboard/dashboard.py:120
msgid "Please set the following documents in this Dashboard as standard first."
-msgstr ""
+msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne."
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120
msgid "Please set the series to be used."
-msgstr ""
+msgstr "Postavi seriju imenovanja koja će se koristiti."
#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
-msgstr ""
+msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Please setup a message first"
-msgstr ""
+msgstr "Postavi Poruku"
#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
-msgstr ""
+msgstr "Podesi standard odlazni račun e-pošte iz Podešavanja > Račun e-pošte"
#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
@@ -19270,65 +19281,65 @@ msgstr "Postavi zadani račun odlazne e-pošte iz Alati > Račun e-pošte"
#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
-msgstr ""
+msgstr "Navedi"
#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
-msgstr ""
+msgstr "Navedi važeći nadređeni DocType za {0}"
#: frappe/email/doctype/notification/notification.py:154
msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler"
-msgstr ""
+msgstr "Navedi najmanje 10 minuta zbog ritma okidača raspoređivača"
#: frappe/email/doctype/notification/notification.py:151
msgid "Please specify the minutes offset"
-msgstr ""
+msgstr "Molimo navedite pomak minuta"
#: frappe/email/doctype/notification/notification.py:145
msgid "Please specify which date field must be checked"
-msgstr ""
+msgstr "Navedi koje polje datuma mora biti označeno"
#: frappe/email/doctype/notification/notification.py:149
msgid "Please specify which datetime field must be checked"
-msgstr ""
+msgstr "Navedi koje polje datuma i vremena mora biti označeno"
#: frappe/email/doctype/notification/notification.py:158
msgid "Please specify which value field must be checked"
-msgstr ""
+msgstr "Navedi koje polje vrijednosti mora biti označeno"
#: frappe/public/js/frappe/request.js:187
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
-msgstr ""
+msgstr "Pokušaj ponovo"
#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
-msgstr ""
+msgstr "Ažuriraj {} prije nego nastavite."
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Please use a valid LDAP search filter"
-msgstr ""
+msgstr "Koristi važeći LDAP filter za pretraživanje"
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
-msgstr ""
+msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key."
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Polling"
-msgstr ""
+msgstr "Polling"
#. Label of the popover_element (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover Element"
-msgstr ""
+msgstr "Iskačući Prozor"
#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover or Modal Description"
-msgstr ""
+msgstr "Iskačići ili Modalni Opis"
#. Label of the smtp_port (Data) field in DocType 'Email Account'
#. Label of the incoming_port (Data) field in DocType 'Email Account'
@@ -19339,33 +19350,33 @@ msgstr ""
#: frappe/email/doctype/email_domain/email_domain.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr ""
+msgstr "Port"
#. Label of the menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr ""
+msgstr "Meni Portala"
#. Name of a DocType
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Portal Menu Item"
-msgstr ""
+msgstr "Stavka Menija Portala"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/portal_settings/portal_settings.json
#: frappe/website/workspace/website/website.json
msgid "Portal Settings"
-msgstr ""
+msgstr "Postavke Portala"
#: frappe/public/js/frappe/form/print_utils.js:31
msgid "Portrait"
-msgstr ""
+msgstr "Portret"
#. Label of the position (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Position"
-msgstr ""
+msgstr "Pozicija"
#: frappe/templates/discussions/comment_box.html:29
#: frappe/templates/discussions/reply_card.html:15
@@ -19373,38 +19384,38 @@ msgstr ""
#: frappe/templates/discussions/reply_section.html:53
#: frappe/templates/discussions/topic_modal.html:11
msgid "Post"
-msgstr ""
+msgstr "Objava"
#: frappe/templates/discussions/reply_section.html:40
msgid "Post it here, our mentors will help you out."
-msgstr ""
+msgstr "Objavi to ovdje, naši mentori će vam pomoći."
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Postal"
-msgstr ""
+msgstr "Pošte"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Postal Code"
-msgstr ""
+msgstr "Broj Pošte"
#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed'
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
msgid "Posting Timestamp"
-msgstr ""
+msgstr "Vremenska Oznaka"
#: frappe/website/doctype/blog_post/blog_post.py:264
msgid "Posts by {0}"
-msgstr ""
+msgstr "Objave od {0}"
#: frappe/website/doctype/blog_post/blog_post.py:256
msgid "Posts filed under {0}"
-msgstr ""
+msgstr "Objave zavedene pod {0}"
#: frappe/database/query.py:1518
msgid "Potentially dangerous content in string literal: {0}"
-msgstr ""
+msgstr "Potencijalno opasan sadržaj u nizu literala: {0}"
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
@@ -19415,29 +19426,29 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr ""
+msgstr "Preciznost"
#: frappe/core/doctype/doctype/doctype.py:1400
msgid "Precision should be between 1 and 6"
-msgstr ""
+msgstr "Preciznost bi trebala biti između 1 i 6"
#: frappe/utils/password_strength.py:187
msgid "Predictable substitutions like '@' instead of 'a' don't help very much."
-msgstr ""
+msgstr "Predvidljive zamjene poput '@' umjesto 'a' ne pomažu mnogo."
#: frappe/desk/page/setup_wizard/install_fixtures.py:34
msgid "Prefer not to say"
-msgstr ""
+msgstr "Radije neću reći"
#. Label of the is_primary_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr ""
+msgstr "Željena Adresa za Fakturu"
#. Label of the is_shipping_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr ""
+msgstr "Željena Adresa za Dostavu"
#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
@@ -19445,7 +19456,7 @@ msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr ""
+msgstr "Prefiks"
#. Name of a DocType
#. Label of the prepared_report (Check) field in DocType 'Report'
@@ -19453,7 +19464,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32
msgid "Prepared Report"
-msgstr ""
+msgstr "Pripremljen Izvještaj"
#. Name of a report
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
@@ -19463,27 +19474,27 @@ msgstr "Analitika Pripremljenog Izvješća"
#. Name of a role
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Prepared Report User"
-msgstr ""
+msgstr "Korisnik Pripremljenog Izvještaja"
#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
-msgstr ""
+msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
#: frappe/public/js/frappe/views/reports/query_report.js:472
msgid "Preparing Report"
-msgstr ""
+msgstr "Priprema Izvještaja"
#: frappe/public/js/frappe/views/communication.js:428
msgid "Prepend the template to the email message"
-msgstr ""
+msgstr "Priloži šablon poruci e-pošte"
#: frappe/public/js/frappe/ui/keyboard.js:139
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
-msgstr ""
+msgstr "Pritisni Alt taster da pokrenete dodatne prečice u Meniju i Bočnoj Traci"
#: frappe/public/js/frappe/list/list_filter.js:141
msgid "Press Enter to save"
-msgstr ""
+msgstr "Pritisni Enter da spremite"
#. Label of the section_import_preview (Section Break) field in DocType 'Data
#. Import'
@@ -19501,46 +19512,46 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
#: frappe/public/js/frappe/ui/capture.js:236
msgid "Preview"
-msgstr ""
+msgstr "Pregled"
#. Label of the preview_html (HTML) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr ""
+msgstr "Pregled HTML"
#. Label of the preview_image (Attach Image) field in DocType 'Blog Category'
#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Preview Image"
-msgstr ""
+msgstr "Pregled Slike"
#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr ""
+msgstr "Pregled Poruke"
#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
-msgstr ""
+msgstr "Način Pregleda"
#. Label of the series_preview (Text) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Preview of generated names"
-msgstr ""
+msgstr "Pregled generisanih imena"
#: frappe/public/js/frappe/views/render_preview.js:19
msgid "Preview on {0}"
-msgstr ""
+msgstr "Pregled {0}"
#: frappe/public/js/print_format_builder/Preview.vue:103
msgid "Preview type"
-msgstr ""
+msgstr "Pregled Tip"
#: frappe/email/doctype/email_group/email_group.js:90
msgid "Preview:"
-msgstr ""
+msgstr "Pregled:"
#: frappe/public/js/frappe/form/form_tour.js:15
#: frappe/public/js/frappe/web_form/web_form.js:95
@@ -19548,56 +19559,56 @@ msgstr ""
#: frappe/templates/includes/slideshow.html:34
#: frappe/website/web_template/slideshow/slideshow.html:40
msgid "Previous"
-msgstr ""
+msgstr "Prethodna"
#: frappe/public/js/frappe/ui/slides.js:351
msgctxt "Go to previous slide"
msgid "Previous"
-msgstr ""
+msgstr "Prethodna"
#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Previous Hash"
-msgstr ""
+msgstr "Prethodni Hash"
#: frappe/public/js/frappe/form/form.js:2214
msgid "Previous Submission"
-msgstr ""
+msgstr "Prethodno Podnošenje"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr ""
+msgstr "Primarni"
#: frappe/public/js/frappe/form/templates/address_list.html:27
msgid "Primary Address"
-msgstr ""
+msgstr "Primarna Adresa"
#. Label of the primary_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr ""
+msgstr "Primarna Boja"
#: frappe/public/js/frappe/form/templates/contact_list.html:23
msgid "Primary Contact"
-msgstr ""
+msgstr "Primarni Kontakt"
#: frappe/public/js/frappe/form/templates/contact_list.html:69
msgid "Primary Email"
-msgstr ""
+msgstr "Primarna e-pošta"
#: frappe/public/js/frappe/form/templates/contact_list.html:49
msgid "Primary Mobile"
-msgstr ""
+msgstr "Primarni Mobitel"
#: frappe/public/js/frappe/form/templates/contact_list.html:41
msgid "Primary Phone"
-msgstr ""
+msgstr "Primarni Telefon"
#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199
#: frappe/database/sqlite/schema.py:141
msgid "Primary key of doctype {0} can not be changed as there are existing values."
-msgstr ""
+msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje postojeće vrijednosti."
#. Label of the print (Check) field in DocType 'Custom DocPerm'
#. Label of the print (Check) field in DocType 'DocPerm'
@@ -19616,16 +19627,16 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
-msgstr ""
+msgstr "Ispiši"
#: frappe/public/js/frappe/list/list_view.js:2019
msgctxt "Button in list view actions menu"
msgid "Print"
-msgstr ""
+msgstr "Ispiši"
#: frappe/public/js/frappe/list/bulk_operations.js:48
msgid "Print Documents"
-msgstr ""
+msgstr "Ispiši Dokumente"
#. Label of the print_format (Link) field in DocType 'Auto Repeat'
#. Label of a Link in the Build Workspace
@@ -19641,7 +19652,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
-msgstr ""
+msgstr "Format za ispisivanje"
#. Label of a Link in the Tools Workspace
#. Label of the print_format_builder (Check) field in DocType 'Print Format'
@@ -19651,41 +19662,41 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:67
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4
msgid "Print Format Builder"
-msgstr ""
+msgstr "Konstruktor Formata Ispisa"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Print Format Builder (New)"
-msgstr ""
+msgstr "Konstruktor Formata Ispisa (Novo)"
#. Label of the print_format_builder_beta (Check) field in DocType 'Print
#. Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Builder Beta"
-msgstr ""
+msgstr "Konstruktor Formata Ispisa Beta"
#: frappe/utils/pdf.py:63
msgid "Print Format Error"
-msgstr ""
+msgstr "Greška u Ispis Formatu"
#. Name of a DocType
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Print Format Field Template"
-msgstr ""
+msgstr "Šablon Polja Ispis Formata"
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
-msgstr ""
+msgstr "Pomoć Ispis Formata"
#. Label of the print_format_type (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Type"
-msgstr ""
+msgstr "Tip Ispis Formata"
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
-msgstr ""
+msgstr "Ispis Format {0} je onemogućen"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -19702,7 +19713,7 @@ msgstr "Naslov Ispisa"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide"
-msgstr ""
+msgstr "Sakrij"
#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField'
#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field'
@@ -19712,21 +19723,21 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide If No Value"
-msgstr ""
+msgstr "Sakrij ispis ako nema vrijednost"
#: frappe/public/js/frappe/views/communication.js:165
msgid "Print Language"
-msgstr ""
+msgstr "Jezik Ispisa"
#: frappe/public/js/frappe/form/print_utils.js:197
msgid "Print Sent to the printer!"
-msgstr ""
+msgstr "Ispis Poslan na pisač!"
#. Label of the server_printer (Section Break) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr ""
+msgstr "Ispisni Server"
#. Label of a Link in the Tools Workspace
#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
@@ -19739,7 +19750,7 @@ msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
-msgstr ""
+msgstr "Postavke Ispisa"
#. Label of the print_style_section (Section Break) field in DocType 'Print
#. Settings'
@@ -19748,17 +19759,17 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.json
msgid "Print Style"
-msgstr ""
+msgstr "Ispisni Stil"
#. Label of the print_style_name (Data) field in DocType 'Print Style'
#: frappe/printing/doctype/print_style/print_style.json
msgid "Print Style Name"
-msgstr ""
+msgstr "Naziv Ispisnog Stila"
#. Label of the print_style_preview (HTML) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Style Preview"
-msgstr ""
+msgstr "Pregled Ispisnog Stila"
#. Label of the print_width (Data) field in DocType 'DocField'
#. Label of the print_width (Data) field in DocType 'Custom Field'
@@ -19767,53 +19778,53 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr ""
+msgstr "Ispisna Širina"
#. Description of the 'Print Width' (Data) field in DocType 'Customize Form
#. Field'
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width of the field, if the field is a column in a table"
-msgstr ""
+msgstr "Ispis Širine polja, ako je polje kolona u tabeli"
#: frappe/public/js/frappe/form/form.js:170
msgid "Print document"
-msgstr ""
+msgstr "Ispiši Dokument"
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr ""
+msgstr "Ispiši sa Zaglavljem"
#: frappe/printing/page/print/print.js:830
msgid "Printer"
-msgstr ""
+msgstr "Pisač"
#: frappe/printing/page/print/print.js:807
msgid "Printer Mapping"
-msgstr ""
+msgstr "Mapiranje Pisača"
#. Label of the printer_name (Select) field in DocType 'Network Printer
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr ""
+msgstr "Naziv Pisača"
#: frappe/printing/page/print/print.js:799
msgid "Printer Settings"
-msgstr ""
+msgstr "Postavke Pisača"
#: frappe/printing/page/print/print.js:548
msgid "Printer mapping not set."
-msgstr ""
+msgstr "Mapiranje pisača nije postavljeno."
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Printing"
-msgstr ""
+msgstr "Ispisivanje"
#: frappe/utils/print_format.py:291
msgid "Printing failed"
-msgstr ""
+msgstr "Neuspješno Ispisivanje"
#. Label of the priority (Int) field in DocType 'Assignment Rule'
#. Label of the priority (Int) field in DocType 'Document Naming Rule'
@@ -19827,7 +19838,7 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:211
#: frappe/website/doctype/web_page/web_page.json
msgid "Priority"
-msgstr ""
+msgstr "Prioritet"
#. Label of the private (Check) field in DocType 'Custom HTML Block'
#. Option for the 'Event Type' (Select) field in DocType 'Event'
@@ -19838,52 +19849,52 @@ msgstr ""
#: frappe/desk/doctype/note/note_list.js:8
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35
msgid "Private"
-msgstr ""
+msgstr "Privatno"
#. Label of the private_files_size (Float) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Private Files (MB)"
-msgstr ""
+msgstr "Privatne datoteke (MB)"
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr ""
+msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name }} da pošaljete referencu dokumenta"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
-msgstr ""
+msgstr "Nastavi"
#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
-msgstr ""
+msgstr "Svejedno Nastavi"
#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
-msgstr ""
+msgstr "Obrađuje se"
#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
-msgstr ""
+msgstr "Obrada u toku..."
#: frappe/desk/page/setup_wizard/install_fixtures.py:51
msgid "Prof"
-msgstr ""
+msgstr "Prof"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr ""
+msgstr "Profil"
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr ""
+msgstr "Napredak"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
-msgstr ""
+msgstr "Projekat"
#. Label of the property (Data) field in DocType 'Property Setter'
#: frappe/core/doctype/version/version_view.html:12
@@ -19891,7 +19902,7 @@ msgstr ""
#: frappe/core/doctype/version/version_view.html:74
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
-msgstr ""
+msgstr "Svojstvo"
#. Label of the property_depends_on_section (Section Break) field in DocType
#. 'Customize Form Field'
@@ -19900,22 +19911,22 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr ""
+msgstr "Svojstvo Zavisi Od"
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
-msgstr ""
+msgstr "Postavljač Svojstva"
#. Description of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter overrides a standard DocType or Field property"
-msgstr ""
+msgstr "Postavljač Svojstva nadjačava standardno svojstvo DocType ili Polja"
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr ""
+msgstr "Tip Svojstva"
#. Label of the protect_attached_files (Check) field in DocType 'DocType'
#. Label of the protect_attached_files (Check) field in DocType 'Customize
@@ -19923,24 +19934,24 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Protect Attached Files"
-msgstr ""
+msgstr "Zaštiti Priložene Datoteke"
#: frappe/core/doctype/file/file.py:501
msgid "Protected File"
-msgstr ""
+msgstr "Zaštićena Datoteka"
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG"
-msgstr ""
+msgstr "Navedi popis dopuštenih ekstenzija datoteka za učitavanje datoteka. Svaki red treba sadržavati jedan dopušteni tip datoteke. Ako nije postavljeno, dopuštene su sve ekstenzije datoteka. Primjer:
CSV
JPG
PNG"
#. Label of the provider (Data) field in DocType 'User Social Login'
#. Label of the provider (Select) field in DocType 'Geolocation Settings'
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr ""
+msgstr "Dostavljač"
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -19949,7 +19960,7 @@ msgstr ""
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Provider Name"
-msgstr ""
+msgstr "Naziv Dostavljača Servisa"
#. Option for the 'Event Type' (Select) field in DocType 'Event'
#. Label of the public (Check) field in DocType 'Note'
@@ -19960,13 +19971,13 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:78
#: frappe/public/js/frappe/views/workspace/workspace.js:440
msgid "Public"
-msgstr ""
+msgstr "Javno"
#. Label of the public_files_size (Float) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Public Files (MB)"
-msgstr ""
+msgstr "Javne Datoteke (MB)"
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -19974,7 +19985,7 @@ msgstr ""
#: frappe/website/doctype/blog_post/blog_post.js:36
#: frappe/website/doctype/web_form/web_form.js:86
msgid "Publish"
-msgstr ""
+msgstr "Objavi"
#. Label of the published (Check) field in DocType 'Comment'
#. Label of the published (Check) field in DocType 'Blog Category'
@@ -19995,121 +20006,121 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page/web_page_list.js:5
msgid "Published"
-msgstr ""
+msgstr "Objavljeno"
#. Label of the published_on (Date) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Published On"
-msgstr ""
+msgstr "Objavljeno"
#: frappe/website/doctype/blog_post/templates/blog_post.html:59
msgid "Published on"
-msgstr ""
+msgstr "Objavljeno"
#. Label of the publishing_dates_section (Section Break) field in DocType 'Web
#. Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Publishing Dates"
-msgstr ""
+msgstr "Datumi Objavljivanja"
#: frappe/email/doctype/email_account/email_account.js:208
msgid "Pull Emails"
-msgstr ""
+msgstr "Preuzmi e-poštu"
#. Label of the pull_from_google_calendar (Check) field in DocType 'Google
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr ""
+msgstr "Preuzmi iz Google Kalendara"
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr ""
+msgstr "Preuzmi iz Google kontakata"
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr ""
+msgstr "Preuzeto iz Google Kalendara"
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr ""
+msgstr "Preuzeto iz Google Kontakata"
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
-msgstr ""
+msgstr "Preuzma se e-pošta..."
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Manager"
-msgstr ""
+msgstr "Upravitelj Nabave"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Master Manager"
-msgstr ""
+msgstr "Glavni Upravitelj Nabave"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Purchase User"
-msgstr ""
+msgstr "Korisnik Nabave"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Purple"
-msgstr ""
+msgstr "Ljubičasta"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Push Notification Settings"
-msgstr ""
+msgstr "Postavke Guranih Obavještenja"
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Push Notifications"
-msgstr ""
+msgstr "Gurana Obavještenja"
#. Label of the push_to_google_calendar (Check) field in DocType 'Google
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr ""
+msgstr "Gurni u Google Kalendar"
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr ""
+msgstr "Gurni u Google Kontakte"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
-msgstr ""
+msgstr "Stavi na Čekanje"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Python"
-msgstr ""
+msgstr "Python"
#: frappe/www/qrcode.html:3
msgid "QR Code"
-msgstr ""
+msgstr "QR Kod"
#: frappe/www/qrcode.html:6
msgid "QR Code for Login Verification"
-msgstr ""
+msgstr "QR Kod za Provjeru Prijave"
#: frappe/public/js/frappe/form/print_utils.js:206
msgid "QZ Tray Failed: "
-msgstr ""
+msgstr "QZ Tray neuspješan: "
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
@@ -20128,46 +20139,46 @@ msgstr "Tromjesečno"
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr ""
+msgstr "Upit"
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr ""
+msgstr "Upit / Skripta"
#. Label of the query_options (Small Text) field in DocType 'Contact Us
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr ""
+msgstr "Opcije Upita"
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/query_parameters/query_parameters.json
msgid "Query Parameters"
-msgstr ""
+msgstr "Parametri Upita"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
#: frappe/public/js/frappe/views/reports/query_report.js:17
msgid "Query Report"
-msgstr ""
+msgstr "Izvještaj Upita"
#: frappe/core/doctype/recorder/recorder.py:188
msgid "Query analysis complete. Check suggested indexes."
-msgstr ""
+msgstr "Analiza Upita završena. Provjeri predložene indekse."
#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
-msgstr ""
+msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
#. Label of the queue (Select) field in DocType 'RQ Job'
#. Label of the queue (Data) field in DocType 'System Health Report Queue'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
-msgstr ""
+msgstr "Red"
#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
@@ -20176,28 +20187,28 @@ msgstr "Red Čekanja Preopterećen"
#. Label of the queue_status (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Queue Status"
-msgstr ""
+msgstr "Status Reda"
#. Label of the queue_type (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
-msgstr ""
+msgstr "Tip Reda"
#. Label of the queue_in_background (Check) field in DocType 'DocType'
#. Label of the queue_in_background (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Queue in Background (BETA)"
-msgstr ""
+msgstr "Red u pozadini (BETA)"
#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
-msgstr ""
+msgstr "Red bi trebao biti jedan od {0}"
#. Label of the queue (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
-msgstr ""
+msgstr "Red(ovi)"
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
@@ -20206,106 +20217,106 @@ msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
-msgstr ""
+msgstr "U Redu"
#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued At"
-msgstr ""
+msgstr "U Redu"
#. Label of the queued_by (Data) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued By"
-msgstr ""
+msgstr "U Redu Od"
#: frappe/core/doctype/submission_queue/submission_queue.py:174
msgid "Queued for Submission. You can track the progress over {0}."
-msgstr ""
+msgstr "U Redu za Podnošenje. Možete pratiti napredak preko {0}."
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
-msgstr ""
+msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzimanje"
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
-msgstr ""
+msgstr "Redovi"
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
-msgstr ""
+msgstr "U redu za Podnošenje {0}"
#. Label of the quick_entry (Check) field in DocType 'DocType'
#. Label of the quick_entry (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Quick Entry"
-msgstr ""
+msgstr "Brzi Unos"
#: frappe/core/page/permission_manager/permission_manager_help.html:3
msgid "Quick Help for Setting Permissions"
-msgstr ""
+msgstr "Brza Pomoć Postavljanje Dozvola"
#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick
#. List'
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Quick List Filter"
-msgstr ""
+msgstr "Filter Brze Liste"
#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace'
#. Label of the quick_lists (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Quick Lists"
-msgstr ""
+msgstr "Brze Liste"
#: frappe/public/js/frappe/views/reports/report_utils.js:304
msgid "Quoting must be between 0 and 3"
-msgstr ""
+msgstr "Ponuda mora biti između 0 i 3"
#. Label of the raw_information_log_section (Section Break) field in DocType
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr ""
+msgstr "RAW dnevnik informacija"
#. Name of a DocType
#: frappe/core/doctype/rq_job/rq_job.json
msgid "RQ Job"
-msgstr ""
+msgstr "RQ Posao"
#. Name of a DocType
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "RQ Worker"
-msgstr ""
+msgstr "RQ Radnik"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Random"
-msgstr ""
+msgstr "Nasumično"
#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
-msgstr ""
+msgstr "Raspon"
#. Label of the rate_limiting_section (Section Break) field in DocType 'Server
#. Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Rate Limiting"
-msgstr ""
+msgstr "Ograniči"
#. Label of the section_break_12 (Section Break) field in DocType 'Blog
#. Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Rate Limits"
-msgstr ""
+msgstr "Ograniči"
#. Label of the rate_limit_email_link_login (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rate limit for email link login"
-msgstr ""
+msgstr "Ograničenje stope za prijavu putem e-pošte"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -20316,18 +20327,18 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Rating"
-msgstr ""
+msgstr "Ocjena"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:89
msgid "Raw Commands"
-msgstr ""
+msgstr "Direktne Naredbe"
#. Label of the raw (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Raw Email"
-msgstr ""
+msgstr "Neobrađena e-pošta"
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
@@ -20335,29 +20346,29 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Raw Printing"
-msgstr ""
+msgstr "Direktno Ispisivanje"
#: frappe/printing/page/print/print.js:165
msgid "Raw Printing Setting"
-msgstr ""
+msgstr "Postavka Direktnog Ispisivanja"
#: frappe/public/js/frappe/form/templates/print_layout.html:37
msgid "Raw Printing Settings"
-msgstr ""
+msgstr "Postavka Direktnog Ispisivanja"
#: frappe/desk/doctype/console_log/console_log.js:6
msgid "Re-Run in Console"
-msgstr ""
+msgstr "Ponovo Pokreni u Konzoli"
#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
-msgstr ""
+msgstr "Od:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
#: frappe/public/js/frappe/views/communication.js:364
msgid "Re: {0}"
-msgstr ""
+msgstr "Od: {0}"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Label of the read (Check) field in DocType 'Custom DocPerm'
@@ -20374,7 +20385,7 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Read"
-msgstr ""
+msgstr "Čitaj"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the read_only (Check) field in DocType 'DocField'
@@ -20389,7 +20400,7 @@ msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:83
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only"
-msgstr ""
+msgstr "Samo za čitanje"
#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field'
#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form
@@ -20399,115 +20410,115 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only Depends On"
-msgstr ""
+msgstr "Samo za Čitanje zavisi o"
#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Read Only Depends On (JS)"
-msgstr ""
+msgstr "Samo za Čitanje zavisi o (JS)"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:16
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
-msgstr ""
+msgstr "Samo za čitanje Način"
#. Label of the read_time (Int) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Read Time"
-msgstr ""
+msgstr "Vrijeme Čitanja"
#. Label of the read_by_recipient (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr ""
+msgstr "Primatelj Pročitao"
#. Label of the read_by_recipient_on (Datetime) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient On"
-msgstr ""
+msgstr "Čitanje Primatelja Omogućeno"
#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
-msgstr ""
+msgstr "Način Čitanja"
#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
-msgstr ""
+msgstr "Pročitaj dokumentaciju da biste saznali više"
#. Label of the readme (Markdown Editor) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Readme"
-msgstr ""
+msgstr "Pročitaj"
#. Label of the realtime_socketio_section (Section Break) field in DocType
#. 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Realtime (SocketIO)"
-msgstr ""
+msgstr "Realno Vrijeme (SocketIO)"
#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Reason"
-msgstr ""
+msgstr "Razlog"
#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
-msgstr ""
+msgstr "Obnovi"
#: frappe/public/js/frappe/views/treeview.js:509
msgid "Rebuild Tree"
-msgstr ""
+msgstr "Obnovi Stablo"
#: frappe/utils/nestedset.py:177
msgid "Rebuilding of tree is not supported for {}"
-msgstr ""
+msgstr "Obnova Stabla nije podržana za {}"
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Received"
-msgstr ""
+msgstr "Primljeno"
#: frappe/integrations/doctype/token_cache/token_cache.py:49
msgid "Received an invalid token type."
-msgstr ""
+msgstr "Primljen je nevažeći tip tokena."
#. Label of the receiver_by_document_field (Select) field in DocType
#. 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr ""
+msgstr "Primljeno prema Polju Dokumenta"
#. Label of the receiver_by_role (Link) field in DocType 'Notification
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Role"
-msgstr ""
+msgstr "Primljeno po Ulozi"
#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr ""
+msgstr "Parametar prijemnika"
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
-msgstr ""
+msgstr "Lako je pogoditi posljednje godine."
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532
msgid "Recents"
-msgstr ""
+msgstr "Skorašnji"
#. Label of the recipients (Table) field in DocType 'Email Queue'
#. Label of the recipient (Data) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr ""
+msgstr "Primatelj"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr ""
+msgstr "Primatelj Odjavljen"
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -20515,105 +20526,105 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr ""
+msgstr "Primatelji"
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
msgid "Recorder"
-msgstr ""
+msgstr "Snimač"
#. Name of a DocType
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Recorder Query"
-msgstr ""
+msgstr "Upit Snimača"
#. Name of a DocType
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
msgid "Recorder Suggested Index"
-msgstr ""
+msgstr "Predloženi Indeks Snimača"
#: frappe/core/doctype/user_permission/user_permission_help.html:2
msgid "Records for following doctypes will be filtered"
-msgstr ""
+msgstr "Zapisi za sljedeće tipove dokumenata bit će filtrirani"
#: frappe/core/doctype/doctype/doctype.py:1608
msgid "Recursive Fetch From"
-msgstr ""
+msgstr "Rekurzivno Preuzimanje Iz"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Red"
-msgstr ""
+msgstr "Crvena"
#. Label of the redirect_http_status (Select) field in DocType 'Website Route
#. Redirect'
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Redirect HTTP Status"
-msgstr ""
+msgstr "Preusmjeri HTTP Status"
#. Label of the redirect_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
-msgstr ""
+msgstr "Preusmjeri URI"
#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
#. DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr ""
+msgstr "Preusmjeri URI vezan za Kod Autentifikacije"
#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr ""
+msgstr "Preusmjeri URI"
#. Label of the redirect_url (Small Text) field in DocType 'User'
#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr ""
+msgstr "URL Preusmjeravanja"
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
msgid "Redirect to the selected app after login"
-msgstr ""
+msgstr "Preusmjeri na odabranu aplikaciju nakon prijave"
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
-msgstr ""
+msgstr "Preusmjeri na ovaj URL nakon uspješne potvrde."
#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Redirects"
-msgstr ""
+msgstr "Preusmjeravanja"
#: frappe/sessions.py:149
msgid "Redis cache server not running. Please contact Administrator / Tech support"
-msgstr ""
+msgstr "Redis server ne radi. Kontaktiraj Administratora/Tehničku podršku"
#: frappe/public/js/frappe/form/toolbar.js:527
msgid "Redo"
-msgstr ""
+msgstr "Ponovi"
#: frappe/public/js/frappe/form/form.js:164
#: frappe/public/js/frappe/form/toolbar.js:535
msgid "Redo last action"
-msgstr ""
+msgstr "Ponovi posljednju radnju"
#. Label of the ref_doctype (Link) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr ""
+msgstr "Referentni DocType"
#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
-msgstr ""
+msgstr "Referentni Doctype i Naziv Nadzorne Table ne mogu se koristiti istovremeno."
#. Label of the linked_with (Section Break) field in DocType 'Address'
#. Label of the contact_details (Section Break) field in DocType 'Contact'
@@ -20635,33 +20646,33 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/public/js/frappe/views/interaction.js:54
msgid "Reference"
-msgstr ""
+msgstr "Referenca"
#. Label of the date_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Reference Date"
-msgstr ""
+msgstr "Referentni Datum"
#. Label of the datetime_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Reference Datetime"
-msgstr ""
+msgstr "Referentni Datum i Vrijeme"
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr ""
+msgstr "Referentni Naziv Dokumenta"
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/error_log/error_log.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr ""
+msgstr "Referentni DocType"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
-msgstr ""
+msgstr "Referentni DocType i Referentni naziv su obavezni"
#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
@@ -20669,7 +20680,7 @@ msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr ""
+msgstr "Referentni naziv dokumenta"
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -20679,7 +20690,7 @@ msgstr ""
#: frappe/public/js/frappe/views/render_preview.js:34
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Doctype"
-msgstr ""
+msgstr "Referentni Doctype"
#. Label of the reference_document (Dynamic Link) field in DocType 'Auto
#. Repeat'
@@ -20695,7 +20706,7 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Reference Document"
-msgstr ""
+msgstr "Referentni Dokument"
#. Label of the reference_docname (Dynamic Link) field in DocType 'Document
#. Share Key'
@@ -20704,7 +20715,7 @@ msgstr ""
#: frappe/core/doctype/document_share_key/document_share_key.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Reference Document Name"
-msgstr ""
+msgstr "Referentni Dokument Naziv"
#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat'
#. Label of the reference_doctype (Link) field in DocType 'Activity Log'
@@ -20747,7 +20758,7 @@ msgstr ""
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Document Type"
-msgstr ""
+msgstr "Referentni Tip Dokumenta"
#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log'
#. Label of the reference_name (Dynamic Link) field in DocType 'Comment'
@@ -20773,7 +20784,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Name"
-msgstr ""
+msgstr "Referentni Naziv"
#. Label of the reference_owner (Read Only) field in DocType 'Activity Log'
#. Label of the reference_owner (Data) field in DocType 'Comment'
@@ -20782,7 +20793,7 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr ""
+msgstr "Referentni Vlasnik"
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -20791,29 +20802,29 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr ""
+msgstr "Referentni izvještaj"
#. Label of the reference_type (Link) field in DocType 'Permission Log'
#. Label of the reference_type (Link) field in DocType 'ToDo'
#: frappe/core/doctype/permission_log/permission_log.json
#: frappe/desk/doctype/todo/todo.json
msgid "Reference Type"
-msgstr ""
+msgstr "Referentni Tip"
#. Label of the reference_name (Dynamic Link) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Reference name"
-msgstr ""
+msgstr "Referentni Naziv"
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
-msgstr ""
+msgstr "Referenca: {0} {1}"
#. Label of the referrer (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:37
msgid "Referrer"
-msgstr ""
+msgstr "Preporučitelj"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:556
@@ -20826,16 +20837,16 @@ msgstr ""
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
#: frappe/public/js/print_format_builder/Preview.vue:24
msgid "Refresh"
-msgstr ""
+msgstr "Osvježi"
#: frappe/core/page/dashboard_view/dashboard_view.js:177
msgid "Refresh All"
-msgstr ""
+msgstr "Osvježi Sve"
#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr ""
+msgstr "Osvježite Google Sheet"
#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
@@ -20846,83 +20857,83 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr ""
+msgstr "Osvježi Token"
#: frappe/public/js/frappe/list/list_view.js:531
msgctxt "Document count in list view"
msgid "Refreshing"
-msgstr ""
+msgstr "Osvježava se"
#: frappe/core/doctype/system_settings/system_settings.js:57
#: frappe/core/doctype/user/user.js:368
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
-msgstr ""
+msgstr "Osvježavanje u toku..."
#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
-msgstr ""
+msgstr "Registrovan, ali onemogućen"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/translation/translation.json
msgid "Rejected"
-msgstr ""
+msgstr "Odbijeno"
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
msgid "Relay Server URL missing"
-msgstr ""
+msgstr "Nedostaje URL Relejnog Servera"
#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
#. Notification Settings'
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Relay Settings"
-msgstr ""
+msgstr "Postavke Releja"
#. Group in Package's connections
#: frappe/core/doctype/package/package.json
msgid "Release"
-msgstr ""
+msgstr "Izdanje"
#. Label of the release_notes (Markdown Editor) field in DocType 'Package
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr ""
+msgstr "Napomena Izdanja"
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
msgid "Relink"
-msgstr ""
+msgstr "Poveži ponovo"
#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr ""
+msgstr "Ponovo poveži Konverzaciju"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr ""
+msgstr "Ponovno povezano"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
#: frappe/public/js/frappe/form/toolbar.js:444
msgid "Reload"
-msgstr ""
+msgstr "Ponovo Učitaj"
#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Reload File"
-msgstr ""
+msgstr "Ponovo Učitaj Datoteku"
#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
-msgstr ""
+msgstr "Ponovno Učitaj Listu"
#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
-msgstr ""
+msgstr "Ponovno Učitaj Izvještaj"
#. Label of the remember_last_selected_value (Check) field in DocType
#. 'DocField'
@@ -20931,92 +20942,92 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr ""
+msgstr "Zapamti Posljednju Odabranu Vrijednost"
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/public/js/frappe/form/reminders.js:33
msgid "Remind At"
-msgstr ""
+msgstr "Podsjeti"
#: frappe/public/js/frappe/form/toolbar.js:476
msgid "Remind Me"
-msgstr ""
+msgstr "Podsjeti Me"
#: frappe/public/js/frappe/form/reminders.js:13
msgid "Remind Me In"
-msgstr ""
+msgstr "Podsjeti me za"
#. Name of a DocType
#: frappe/automation/doctype/reminder/reminder.json
msgid "Reminder"
-msgstr ""
+msgstr "Podsjetnik"
#: frappe/automation/doctype/reminder/reminder.py:39
msgid "Reminder cannot be created in past."
-msgstr ""
+msgstr "Podsjetnik se ne može kreirati u prošlosti."
#: frappe/public/js/frappe/form/reminders.js:96
msgid "Reminder set at {0}"
-msgstr ""
+msgstr "Podsjetnik postavljen na {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
#: frappe/public/js/frappe/ui/group_by/group_by.html:4
msgid "Remove"
-msgstr ""
+msgstr "Ukloni"
#: frappe/core/doctype/rq_job/rq_job_list.js:8
msgid "Remove Failed Jobs"
-msgstr ""
+msgstr "Ukloni neuspjele poslove"
#: frappe/printing/page/print_format_builder/print_format_builder.js:493
msgid "Remove Field"
-msgstr ""
+msgstr "Ukloni Polje"
#: frappe/printing/page/print_format_builder/print_format_builder.js:427
msgid "Remove Section"
-msgstr ""
+msgstr "Ukloni Sekciju"
#: frappe/custom/doctype/customize_form/customize_form.js:138
msgid "Remove all customizations?"
-msgstr ""
+msgstr "Ukloni sve prilagodbe?"
#: frappe/public/js/form_builder/components/Section.vue:286
msgid "Remove all fields in the column"
-msgstr ""
+msgstr "Ukloni sva polja u koloni"
#: frappe/public/js/form_builder/components/Section.vue:278
#: frappe/public/js/frappe/utils/datatable.js:9
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120
msgid "Remove column"
-msgstr ""
+msgstr "Ukloni kolonu"
#: frappe/public/js/form_builder/components/Field.vue:260
msgid "Remove field"
-msgstr ""
+msgstr "Ukloni polje"
#: frappe/public/js/form_builder/components/Section.vue:279
msgid "Remove last column"
-msgstr ""
+msgstr "Ukloni posljednju kolonu"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
msgid "Remove page break"
-msgstr ""
+msgstr "Ukloni prijelom stranice"
#: frappe/public/js/form_builder/components/Section.vue:266
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135
msgid "Remove section"
-msgstr ""
+msgstr "Ukloni sekciju"
#: frappe/public/js/form_builder/components/Tabs.vue:140
msgid "Remove tab"
-msgstr ""
+msgstr "Ukloni karticu"
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Removed"
-msgstr ""
+msgstr "Uklonjeno"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
@@ -21025,111 +21036,111 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
-msgstr ""
+msgstr "Preimenuj"
#: frappe/custom/doctype/custom_field/custom_field.js:116
#: frappe/custom/doctype/custom_field/custom_field.js:136
msgid "Rename Fieldname"
-msgstr ""
+msgstr "Preimenuj naziv polja"
#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
-msgstr ""
+msgstr "Preimenuj {0}"
#: frappe/core/doctype/doctype/doctype.py:698
msgid "Renamed files and replaced code in controllers, please check!"
-msgstr ""
+msgstr "Preimenovane datoteke i zamijenjen kod u kontrolerima, provjerite!"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
msgid "Render labels to the left and values to the right in this section"
-msgstr ""
+msgstr "Prikaži oznake lijevo i vrijednosti desno u ovom odjeljku"
#: frappe/core/doctype/communication/communication.js:43
#: frappe/desk/doctype/todo/todo.js:36
msgid "Reopen"
-msgstr ""
+msgstr "Ponovo otvori"
#: frappe/public/js/frappe/form/toolbar.js:544
msgid "Repeat"
-msgstr ""
+msgstr "Ponovi"
#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Repeat Header and Footer"
-msgstr ""
+msgstr "Ponovi Zaglavlje i Podnožje"
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr ""
+msgstr "Ponovi"
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr ""
+msgstr "Ponavljaj Do"
#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Day"
-msgstr ""
+msgstr "Ponovi Dnevno"
#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Days"
-msgstr ""
+msgstr "Dani Ponavljanja"
#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Last Day of the Month"
-msgstr ""
+msgstr "Ponovi Posljednjeg Dana u Mjesecu"
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr ""
+msgstr "Ponovi ovaj Događaj"
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
-msgstr ""
+msgstr "Ponavljanja poput \"aaa\" je lako pogoditi"
#: frappe/utils/password_strength.py:105
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
-msgstr ""
+msgstr "Ponavljanja poput \"abcabcabc\" samo su malo teža za pogoditi od \"abc\""
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
-msgstr ""
+msgstr "Ponavlja se {0}"
#: frappe/core/doctype/role_replication/role_replication.js:7
#: frappe/core/doctype/role_replication/role_replication.js:14
msgid "Replicate"
-msgstr ""
+msgstr "Repliciraj"
#: frappe/core/doctype/role_replication/role_replication.js:8
msgid "Replicating..."
-msgstr ""
+msgstr "Replicira se..."
#: frappe/core/doctype/role_replication/role_replication.js:13
msgid "Replication completed."
-msgstr ""
+msgstr "Replikacija je završena."
#. Option for the 'Status' (Select) field in DocType 'Contact'
#. Option for the 'Status' (Select) field in DocType 'Communication'
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/communication/communication.json
msgid "Replied"
-msgstr ""
+msgstr "Odgovoreno"
#. Label of the reply (Text Editor) field in DocType 'Discussion Reply'
#: frappe/core/doctype/communication/communication.js:57
#: frappe/public/js/frappe/form/footer/form_timeline.js:563
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Reply"
-msgstr ""
+msgstr "Odgovor"
#: frappe/core/doctype/communication/communication.js:62
msgid "Reply All"
-msgstr ""
+msgstr "Odgovori Svima"
#. Label of the report (Check) field in DocType 'Custom DocPerm'
#. Label of the report (Link) field in DocType 'Custom Role'
@@ -21167,7 +21178,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:615
#: frappe/public/js/frappe/utils/utils.js:920
msgid "Report"
-msgstr ""
+msgstr "Izvještaj"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
@@ -21175,32 +21186,32 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/list/list_view_select.js:66
msgid "Report Builder"
-msgstr ""
+msgstr "Konstruktor Izvještaja"
#. Name of a DocType
#: frappe/core/doctype/report_column/report_column.json
msgid "Report Column"
-msgstr ""
+msgstr "Kolona Izvještaja"
#. Label of the report_description (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr ""
+msgstr "Opis Izvještaja"
#: frappe/core/doctype/report/report.py:151
msgid "Report Document Error"
-msgstr ""
+msgstr "Prijavi Grešku Dokumenta"
#. Name of a DocType
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Report Filter"
-msgstr ""
+msgstr "Filter izvještaja"
#. Label of the report_filters (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr ""
+msgstr "Izvještajni Filteri"
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21209,19 +21220,19 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr ""
+msgstr "Sakrij Izvještaj"
#. Label of the report_information_section (Section Break) field in DocType
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Report Information"
-msgstr ""
+msgstr "Informacija Izvještaja"
#. Name of a role
#: frappe/core/doctype/report/report.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Manager"
-msgstr ""
+msgstr "Upravitelj izvještaja"
#. Label of the report_name (Data) field in DocType 'Access Log'
#. Label of the report_name (Data) field in DocType 'Prepared Report'
@@ -21236,24 +21247,24 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
-msgstr ""
+msgstr "Naziv Izvještaja"
#: frappe/desk/doctype/number_card/number_card.py:69
msgid "Report Name, Report Field and Fucntion are required to create a number card"
-msgstr ""
+msgstr "Naziv Izvještaja, Polje Izvještaja i Funkcija su obevezni za kreiranje numeričke kartice"
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Report Ref DocType"
-msgstr ""
+msgstr "Referentni Tip Dokumenta Izvještaja"
#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr ""
+msgstr "Referentni Tip Dokumenta Izvještaja"
#. Label of the report_type (Select) field in DocType 'Report'
#. Label of the report_type (Data) field in DocType 'Onboarding Step'
@@ -21262,270 +21273,270 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr ""
+msgstr "Tip izvještaja"
#: frappe/public/js/frappe/list/base_list.js:203
msgid "Report View"
-msgstr ""
+msgstr "Pregled iIvještaja"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:26
msgid "Report bug"
-msgstr ""
+msgstr "Prijavi Grešku"
#: frappe/core/doctype/doctype/doctype.py:1809
msgid "Report cannot be set for Single types"
-msgstr ""
+msgstr "Izvještaj se ne može postaviti za Singl tipove"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:191
msgid "Report has no data, please modify the filters or change the Report Name"
-msgstr ""
+msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvještaja"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
#: frappe/desk/doctype/number_card/number_card.js:186
msgid "Report has no numeric fields, please change the Report Name"
-msgstr ""
+msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
-msgstr ""
+msgstr "Izvještaj je pokrenut, klikni da vidite status"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Report limit reached"
-msgstr ""
+msgstr "Granica Izvještaja Dostignuta"
#: frappe/core/doctype/prepared_report/prepared_report.py:223
msgid "Report timed out."
-msgstr ""
+msgstr "Izvještaj je istekao."
#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
-msgstr ""
+msgstr "Izvještaj je uspješno ažuriran"
#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
-msgstr ""
+msgstr "Izvještaj nije spremljen (bilo je grešaka)"
#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
-msgstr ""
+msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada."
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252
msgid "Report {0}"
-msgstr ""
+msgstr "Izvještaj {0}"
#: frappe/desk/reportview.py:364
msgid "Report {0} deleted"
-msgstr ""
+msgstr "Izvještaj {0} izbrisan"
#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
-msgstr ""
+msgstr "Izvještaj {0} je onemogućen"
#: frappe/desk/reportview.py:341
msgid "Report {0} saved"
-msgstr ""
+msgstr "Izvještaj {0} spremljen"
#: frappe/public/js/frappe/views/reports/report_view.js:20
msgid "Report:"
-msgstr ""
+msgstr "Izvještaj:"
#. Label of the prepared_report_section (Section Break) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547
msgid "Reports"
-msgstr ""
+msgstr "Izvještaji"
#: frappe/patches/v14_0/update_workspace2.py:50
msgid "Reports & Masters"
-msgstr ""
+msgstr "Izvještaji & Masters"
#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
-msgstr ""
+msgstr "Izvještaji su već u redu čekanja"
#. Description of a DocType
#: frappe/core/doctype/user/user.json
msgid "Represents a User in the system."
-msgstr ""
+msgstr "Predstavlja korisnika u sistemu."
#. Description of a DocType
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Represents the states allowed in one document and role assigned to change the state."
-msgstr ""
+msgstr "Predstavlja stanja dozvoljena u jednom dokumentu i ulogu koja je dodijeljena za promjenu stanja."
#: frappe/integrations/doctype/webhook/webhook.js:101
msgid "Request Body"
-msgstr ""
+msgstr "Zahtjev od"
#. Label of the data (Code) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Data"
-msgstr ""
+msgstr "Zatraži Podatke"
#. Label of the request_description (Data) field in DocType 'Integration
#. Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Description"
-msgstr ""
+msgstr "Opis Zahtjeva"
#. Label of the request_headers (Code) field in DocType 'Recorder'
#. Label of the request_headers (Code) field in DocType 'Integration Request'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Headers"
-msgstr ""
+msgstr "Zaglavlja Zahtjeva"
#. Label of the request_id (Data) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request ID"
-msgstr ""
+msgstr "ID Zahtjeva"
#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Request Limit"
-msgstr ""
+msgstr "Ograničenje Zahtjeva"
#. Label of the request_method (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
-msgstr ""
+msgstr "Metoda Zahtjeva"
#. Label of the request_structure (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr ""
+msgstr "Struktura Zahtjeva"
#: frappe/public/js/frappe/request.js:231
msgid "Request Timed Out"
-msgstr ""
+msgstr "Zahtjev Istekao"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/request.js:244
msgid "Request Timeout"
-msgstr ""
+msgstr "Zahtjev Istekao"
#. Label of the request_url (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr ""
+msgstr "URL Zahtjeva"
#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
-msgstr ""
+msgstr "Traženi Brojevi"
#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr ""
+msgstr "Zahtijevaj Pouzdani Certifikat"
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com"
-msgstr ""
+msgstr "Zahtijeva bilo koju važeću fdn putanju. tj. ou=grupe,dc=primjer,dc=com"
#. Description of the 'LDAP search path for Users' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
-msgstr ""
+msgstr "Zahtijeva bilo koju važeću fdn put. tj. ou=users,dc=example,dc=com"
#: frappe/core/doctype/communication/communication.js:279
msgid "Res: {0}"
-msgstr ""
+msgstr "Od: {0}"
#: frappe/desk/doctype/form_tour/form_tour.js:101
#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19
#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17
#: frappe/website/doctype/portal_settings/portal_settings.js:19
msgid "Reset"
-msgstr ""
+msgstr "Poništi"
#: frappe/custom/doctype/customize_form/customize_form.js:136
msgid "Reset All Customizations"
-msgstr ""
+msgstr "Resetuj Sva Prilagođavanja"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37
msgid "Reset Changes"
-msgstr ""
+msgstr "Poništi Promjene"
#: frappe/public/js/frappe/widgets/chart_widget.js:306
msgid "Reset Chart"
-msgstr ""
+msgstr "Poništi Grafikon"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39
msgid "Reset Dashboard Customizations"
-msgstr ""
+msgstr "Poništi Prilagođavanja Nadzorne Table"
#: frappe/public/js/frappe/list/list_settings.js:230
msgid "Reset Fields"
-msgstr ""
+msgstr "Poništi Polja"
#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182
msgid "Reset LDAP Password"
-msgstr ""
+msgstr "Poništi LDAP Lozinku"
#: frappe/custom/doctype/customize_form/customize_form.js:128
msgid "Reset Layout"
-msgstr ""
+msgstr "Poništi Izgled"
#: frappe/core/doctype/user/user.js:230
msgid "Reset OTP Secret"
-msgstr ""
+msgstr "Poništi OTP Tajnu"
#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199
#: frappe/www/me.html:48 frappe/www/update-password.html:3
#: frappe/www/update-password.html:32
msgid "Reset Password"
-msgstr ""
+msgstr "Poništi Lozinku"
#. Label of the reset_password_key (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr ""
+msgstr "Poništi Ključ Lozinke"
#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Link Expiry Duration"
-msgstr ""
+msgstr "Poništi Vrijeme Trajanja Veze Lozinke"
#. Label of the reset_password_template (Link) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
-msgstr ""
+msgstr "Šablon Poništavanja Lozinke"
#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
-msgstr ""
+msgstr "Poništi Dozvole za {0}?"
#: frappe/public/js/form_builder/components/Field.vue:114
msgid "Reset To Default"
-msgstr ""
+msgstr "Vrati na Standard"
#: frappe/public/js/frappe/utils/datatable.js:8
msgid "Reset sorting"
-msgstr ""
+msgstr "Poništi Sortiranje"
#: frappe/public/js/frappe/form/grid_row.js:417
msgid "Reset to default"
-msgstr ""
+msgstr "Vrati na Standard"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
msgid "Reset to defaults"
-msgstr ""
+msgstr "Vrati na Standard Postavke"
#: frappe/templates/emails/password_reset.html:3
msgid "Reset your password"
-msgstr ""
+msgstr "Poništi Lozinku"
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
@@ -21535,48 +21546,48 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr ""
+msgstr "Odgovor"
#. Label of the response_html (Code) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
msgid "Response "
-msgstr ""
+msgstr "Odgovor "
#. Label of the response_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr ""
+msgstr "Tip Odgovora"
#: frappe/public/js/frappe/ui/notifications/notifications.js:414
msgid "Rest of the day"
-msgstr ""
+msgstr "Ostatak dana"
#: frappe/core/doctype/deleted_document/deleted_document.js:11
#: frappe/core/doctype/deleted_document/deleted_document_list.js:48
msgid "Restore"
-msgstr ""
+msgstr "Vrati"
#: frappe/core/page/permission_manager/permission_manager.js:509
msgid "Restore Original Permissions"
-msgstr ""
+msgstr "Vrati Originalne Dozvole"
#: frappe/website/doctype/portal_settings/portal_settings.js:20
msgid "Restore to default settings?"
-msgstr ""
+msgstr "Vrati na standard postavke?"
#. Label of the restored (Check) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr ""
+msgstr "Vraćeno"
#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
-msgstr ""
+msgstr "Vraćanje Izbrisanog Dokumenta u toku"
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr ""
+msgstr "Ograniči IP"
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -21586,71 +21597,71 @@ msgstr ""
#: frappe/core/doctype/module_def/module_def.json
#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json
msgid "Restrict To Domain"
-msgstr ""
+msgstr "Ograniči na Domenu"
#. Label of the restrict_to_domain (Link) field in DocType 'Workspace'
#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Restrict to Domain"
-msgstr ""
+msgstr "Ograniči na Domenu"
#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)"
-msgstr ""
+msgstr "Ograniči korisnika samo sa ove IP adrese. Više IP adresa može se dodati odvajanjem zarezima. Također se prihvaćaju djelomične IP adrese poput (111.111.111)"
#: frappe/public/js/frappe/list/list_view.js:196
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
-msgstr ""
+msgstr "Ograničenja"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
msgid "Result"
-msgstr ""
+msgstr "Rezultat"
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Resume Sending"
-msgstr ""
+msgstr "Nastavi Slanje"
#. Label of the retry (Int) field in DocType 'Email Queue'
#: frappe/core/doctype/data_import/data_import.js:110
#: frappe/desk/page/setup_wizard/setup_wizard.js:297
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Retry"
-msgstr ""
+msgstr "Pokušaj Ponovno"
#: frappe/email/doctype/email_queue/email_queue_list.js:47
msgid "Retry Sending"
-msgstr ""
+msgstr "Ponovi Slanje"
#: frappe/www/qrcode.html:15
msgid "Return to the Verification screen and enter the code displayed by your authentication app"
-msgstr ""
+msgstr "Vratite se na ekran za provjeru i unesite kod koji prikazuje vaša aplikacija za autentifikaciju"
#. Label of the reverse (Check) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Reverse Icon Color"
-msgstr ""
+msgstr "Obrnute Boje Ikone"
#: frappe/database/schema.py:161
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
-msgstr ""
+msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine kao {3} će uzrokovati skraćivanje podataka."
#. Label of the revocation_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Revocation URI"
-msgstr ""
+msgstr "URI Opoziva"
#: frappe/www/third_party_apps.html:47
msgid "Revoke"
-msgstr ""
+msgstr "Opozovi"
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr ""
+msgstr "Opozvano"
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
@@ -21658,7 +21669,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
msgid "Rich Text"
-msgstr ""
+msgstr "Rich Text"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
@@ -21667,28 +21678,28 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Right"
-msgstr ""
+msgstr "Desno"
#: frappe/printing/page/print_format_builder/print_format_builder.js:484
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156
msgctxt "alignment"
msgid "Right"
-msgstr ""
+msgstr "Desno"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Bottom"
-msgstr ""
+msgstr "Desno Dno"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Center"
-msgstr ""
+msgstr "Desno Centar"
#. Label of the robots_txt (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Robots.txt"
-msgstr ""
+msgstr "Robots.txt"
#. Label of the role (Link) field in DocType 'Custom DocPerm'
#. Label of the roles (Table) field in DocType 'Custom Role'
@@ -21719,47 +21730,47 @@ msgstr ""
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Role"
-msgstr ""
+msgstr "Uloga"
#: frappe/core/doctype/role/role.js:8
msgid "Role 'All' will be given to all system + website users."
-msgstr ""
+msgstr "Uloga 'Svi' će biti dodijeljena svim korisnicima sistema + web stranice."
#: frappe/core/doctype/role/role.js:13
msgid "Role 'Desk User' will be given to all system users."
-msgstr ""
+msgstr "Uloga 'Korisnik Radne Površine' će biti dodijeljena svim korisnicima sistema."
#. Label of the role_name (Data) field in DocType 'Role'
#. Label of the role_profile (Data) field in DocType 'Role Profile'
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr ""
+msgstr "Naziv Uloge"
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
#: frappe/core/workspace/users/users.json
msgid "Role Permission for Page and Report"
-msgstr ""
+msgstr "Dozvola Uloge za Stranicu i Izvještaj"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/public/js/frappe/roles_editor.js:103
msgid "Role Permissions"
-msgstr ""
+msgstr "Dozvole Uloge"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager.js:4
#: frappe/core/workspace/users/users.json
msgid "Role Permissions Manager"
-msgstr ""
+msgstr "Upravitelj Dozvola Uloge"
#: frappe/public/js/frappe/list/list_view.js:1788
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
-msgstr ""
+msgstr "Upravitelj Dozvola Uloge"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
@@ -21770,17 +21781,17 @@ msgstr ""
#: frappe/core/doctype/user_role_profile/user_role_profile.json
#: frappe/core/workspace/users/users.json
msgid "Role Profile"
-msgstr ""
+msgstr "Profil Uloge"
#. Label of the role_profiles (Table MultiSelect) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Role Profiles"
-msgstr ""
+msgstr "Profili Uloge"
#. Name of a DocType
#: frappe/core/doctype/role_replication/role_replication.json
msgid "Role Replication"
-msgstr ""
+msgstr "Replikacija Uloge"
#. Label of the role_and_level (Section Break) field in DocType 'Custom
#. DocPerm'
@@ -21788,11 +21799,11 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr ""
+msgstr "Uloga i Nivo"
#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
-msgstr ""
+msgstr "Uloga je postavljena prema tipu korisnika {0}"
#. Label of the roles (Table) field in DocType 'Page'
#. Label of the roles (Table) field in DocType 'Report'
@@ -21813,50 +21824,50 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Roles"
-msgstr ""
+msgstr "Uloge"
#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
-msgstr ""
+msgstr "Uloge & Dozvole"
#. Label of the roles (Table) field in DocType 'Role Profile'
#. Label of the roles (Table) field in DocType 'User'
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr ""
+msgstr "Dodijeljene Uloge"
#. Label of the roles_html (HTML) field in DocType 'Role Profile'
#. Label of the roles_html (HTML) field in DocType 'User'
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles HTML"
-msgstr ""
+msgstr "Uloge HTML"
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr ""
+msgstr "Uloge Html"
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
-msgstr ""
+msgstr "Uloge se mogu postaviti za korisnike sa njihove korisničke stranice."
#: frappe/utils/nestedset.py:280
msgid "Root {0} cannot be deleted"
-msgstr ""
+msgstr "Root {0} se ne može izbrisati"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr ""
+msgstr "Round Robin"
#. Label of the rounding_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
-msgstr ""
+msgstr "Metoda Zaokruživanja"
#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
@@ -21886,149 +21897,149 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Route"
-msgstr ""
+msgstr "Ruta"
#. Name of a DocType
#: frappe/desk/doctype/route_history/route_history.json
msgid "Route History"
-msgstr ""
+msgstr "Istorija Rute"
#. Label of the route_redirects (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr ""
+msgstr "Preusmjeravanja Rute"
#. Description of the 'Home Page' (Data) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
msgid "Route: Example \"/app\""
-msgstr ""
+msgstr "Ruta: Primjer \"/app\""
#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
-msgstr ""
+msgstr "Red"
#: frappe/core/doctype/version/version_view.html:73
msgid "Row #"
-msgstr ""
+msgstr "Red #"
#: frappe/core/doctype/doctype/doctype.py:1831
#: frappe/core/doctype/doctype/doctype.py:1841
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr ""
+msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta"
#: frappe/model/base_document.py:982
msgid "Row #{0}:"
-msgstr ""
+msgstr "Red #{0}:"
#: frappe/core/doctype/doctype/doctype.py:491
msgid "Row #{}: Fieldname is required"
-msgstr ""
+msgstr "Red #{}: Naziv polja je obavezan"
#. Label of the row_format (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Row Format"
-msgstr ""
+msgstr "Format Reda"
#. Label of the row_index (Data) field in DocType 'Transaction Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Row Index"
-msgstr ""
+msgstr "Indeks Reda"
#. Label of the row_indexes (Code) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Row Indexes"
-msgstr ""
+msgstr "Indeksi Reda"
#. Label of the row_name (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr ""
+msgstr "Naziv Reda"
#: frappe/core/doctype/data_import/data_import.js:483
msgid "Row Number"
-msgstr ""
+msgstr "Broj Reda"
#: frappe/core/doctype/version/version_view.html:68
msgid "Row Values Changed"
-msgstr ""
+msgstr "Vrijednosti Reda Promijenjene"
#: frappe/core/doctype/data_import/data_import.js:367
msgid "Row {0}"
-msgstr ""
+msgstr "Red {0}"
#: frappe/custom/doctype/customize_form/customize_form.py:352
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
-msgstr ""
+msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja"
#: frappe/custom/doctype/customize_form/customize_form.py:341
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
-msgstr ""
+msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja"
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Added"
-msgstr ""
+msgstr "Dodani Redovi"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Removed"
-msgstr ""
+msgstr "Ukonjeni Redovi"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Rows Threshold for Grid Search"
-msgstr ""
+msgstr "Prag redaka za Mreže Pretraživanje"
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr ""
+msgstr "Pravilo"
#. Label of the section_break_3 (Section Break) field in DocType 'Document
#. Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr ""
+msgstr "Uslovi Pravila"
#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
-msgstr ""
+msgstr "Pravilo za ovu kombinaciju tipa dokumenta, uloge, nivoa dozvole i vlasnika već postoji."
#. Group in DocType's connections
#: frappe/core/doctype/doctype/doctype.json
msgid "Rules"
-msgstr ""
+msgstr "Pravila"
#. Description of the 'Transitions' (Table) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules defining transition of state in the workflow."
-msgstr ""
+msgstr "Pravila koja definišu prelaz stanja u radnom toku."
#. Description of the 'Transition Rules' (Section Break) field in DocType
#. 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc."
-msgstr ""
+msgstr "Pravila o tome kako su stanja tranzicije, poput sljedećeg stanja i kojoj ulozi je dozvoljeno mijenjati stanje itd."
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr ""
+msgstr "Pravila sa većim brojem prioriteta će se prvo primijeniti."
#. Label of the dormant_days (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run Jobs only Daily if Inactive For (Days)"
-msgstr ""
+msgstr "Pokreni poslove samo dnevno ako su neaktivni (dana)"
#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run scheduled jobs only if checked"
-msgstr ""
+msgstr "Pokreni planirane poslove samo ako je označeno"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Minutes"
@@ -22046,99 +22057,99 @@ msgstr "Vrijeme izvođenja u Sekundama"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr ""
+msgstr "SMS"
#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr ""
+msgstr "URL SMS Prilaza"
#. Name of a DocType
#: frappe/core/doctype/sms_log/sms_log.json
msgid "SMS Log"
-msgstr ""
+msgstr "SMS Zapisnik"
#. Name of a DocType
#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "SMS Parameter"
-msgstr ""
+msgstr "SMS Parametar"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/core/doctype/sms_settings/sms_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "SMS Settings"
-msgstr ""
+msgstr "SMS Postavke"
#: frappe/core/doctype/sms_settings/sms_settings.py:110
msgid "SMS sent successfully"
-msgstr ""
+msgstr "SMS je uspješno poslan"
#: frappe/templates/includes/login/login.js:369
msgid "SMS was not sent. Please contact Administrator."
-msgstr ""
+msgstr "SMS nije poslan. Kontaktiraj Administratora."
#: frappe/email/doctype/email_account/email_account.py:212
msgid "SMTP Server is required"
-msgstr ""
+msgstr "SMTP Server je obavezan"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL"
-msgstr ""
+msgstr "SQL"
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "SQL Conditions. Example: status=\"Open\""
-msgstr ""
+msgstr "SQL Uvjeti. Primjer: status=\"Open\""
#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:85
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "SQL Explain"
-msgstr ""
+msgstr "SQL Objasni"
#. Label of the sql_output (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
-msgstr ""
+msgstr "SQL Izlaz"
#. Label of the sql_queries (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
-msgstr ""
+msgstr "SQL Upiti"
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr ""
+msgstr "SSL/TLS Način"
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
-msgstr ""
+msgstr "UZORCI BOJA"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Manager"
-msgstr ""
+msgstr "Upravitelj Prodaje"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Master Manager"
-msgstr ""
+msgstr "Glavni Upravitelj Prodaje"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Sales User"
-msgstr ""
+msgstr "Korisnik Prodaje"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr ""
+msgstr "Salesforce"
#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
@@ -22146,16 +22157,16 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/doctype/salutation/salutation.json
msgid "Salutation"
-msgstr ""
+msgstr "Titula"
#: frappe/integrations/doctype/webhook/webhook.py:109
msgid "Same Field is entered more than once"
-msgstr ""
+msgstr "Isto polje se unosi više puta"
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr ""
+msgstr "Uzorak"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -22171,7 +22182,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Saturday"
-msgstr ""
+msgstr "Subota"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/data_import/data_import.js:113
@@ -22196,41 +22207,41 @@ msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33
msgid "Save"
-msgstr ""
+msgstr "Spremi"
#: frappe/core/doctype/user/user.js:339
msgid "Save API Secret: {0}"
-msgstr ""
+msgstr "Spremi API Tajnu: {0}"
#: frappe/workflow/doctype/workflow/workflow.js:143
msgid "Save Anyway"
-msgstr ""
+msgstr "Svejedno Spremi"
#: frappe/public/js/frappe/views/reports/report_view.js:1388
#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
-msgstr ""
+msgstr "Spremi Kao"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63
msgid "Save Customizations"
-msgstr ""
+msgstr "Spremi Prilagođavanja"
#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
-msgstr ""
+msgstr "Spremi Izvještaj"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
msgid "Save filters"
-msgstr ""
+msgstr "Spremi Filtere"
#. Label of the save_on_complete (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Save on Completion"
-msgstr ""
+msgstr "Spremi na Završetku"
#: frappe/public/js/frappe/form/form_tour.js:295
msgid "Save the document."
-msgstr ""
+msgstr "Spremi dokument."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
@@ -22238,75 +22249,75 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
-msgstr ""
+msgstr "Spremljeno"
#: frappe/public/js/frappe/list/list_sidebar.html:88
msgid "Saved Filters"
-msgstr ""
+msgstr "Spremjeni Filteri"
#: frappe/public/js/frappe/list/list_settings.js:40
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
-msgstr ""
+msgstr "Sprema se"
#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
msgid "Saving"
-msgstr ""
+msgstr "Sprema se"
#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
-msgstr ""
+msgstr "Spremaju se Prilagođavanja..."
#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
msgid "Saving this will export this document as well as the steps linked here as json."
-msgstr ""
+msgstr "Spremanjem ovoga izvest ćete ovaj dokument kao i korake povezane ovdje kao json."
#: frappe/public/js/form_builder/store.js:233
#: frappe/public/js/print_format_builder/store.js:36
#: frappe/public/js/workflow_builder/store.js:73
msgid "Saving..."
-msgstr ""
+msgstr "Spremanje u toku..."
#: frappe/public/js/frappe/scanner/index.js:72
msgid "Scan QRCode"
-msgstr ""
+msgstr "Skeniraj QRCode"
#: frappe/www/qrcode.html:14
msgid "Scan the QR Code and enter the resulting code displayed."
-msgstr ""
+msgstr "Skenirajte QR Kod i unesi prikazani rezultirajući kod."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Schedule"
-msgstr ""
+msgstr "Raspored"
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
-msgstr ""
+msgstr "Raspored Slanja"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled"
-msgstr ""
+msgstr "Zakazano"
#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event'
#: frappe/core/doctype/scheduler_event/scheduler_event.json
msgid "Scheduled Against"
-msgstr ""
+msgstr "Zakazano Naspram"
#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job"
-msgstr ""
+msgstr "Zakazani Posao"
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job Log"
-msgstr ""
+msgstr "Zapisnik Zakazanih Poslova"
#. Name of a DocType
#. Label of a Link in the Build Workspace
@@ -22316,26 +22327,26 @@ msgstr ""
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Scheduled Job Type"
-msgstr ""
+msgstr "Tip Zakazanog Posla"
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Scheduled Jobs Logs"
-msgstr ""
+msgstr "Zapisi Zakazanih Poslova"
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
-msgstr ""
+msgstr "Zakazano izvršenje za skriptu {0} je ažurirano"
#: frappe/email/doctype/auto_email_report/auto_email_report.js:26
msgid "Scheduled to send"
-msgstr ""
+msgstr "Zakazano za slanje"
#. Label of the scheduler_section (Section Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Scheduler"
-msgstr ""
+msgstr "Raspoređivač"
#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -22344,37 +22355,37 @@ msgstr ""
#: frappe/core/doctype/scheduler_event/scheduler_event.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Scheduler Event"
-msgstr ""
+msgstr "Događaj Raspoređivača"
#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler Inactive"
-msgstr ""
+msgstr "Raspoređivač Neaktivan"
#. Label of the scheduler_status (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Scheduler Status"
-msgstr ""
+msgstr "Status Raspoređivača"
#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
-msgstr ""
+msgstr "Raspoređivač se ne može ponovno omogućiti kada je aktivan način rada za održavanje."
#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler is inactive. Cannot import data."
-msgstr ""
+msgstr "Raspoređivač je neaktivan. Nije moguće uvesti podatke."
#: frappe/core/doctype/rq_job/rq_job_list.js:19
msgid "Scheduler: Active"
-msgstr ""
+msgstr "Raspoređivač: Aktivan"
#: frappe/core/doctype/rq_job/rq_job_list.js:21
msgid "Scheduler: Inactive"
-msgstr ""
+msgstr "Raspoređivač: Neaktivan"
#. Label of the scope (Data) field in DocType 'OAuth Scope'
#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
-msgstr ""
+msgstr "Obim"
#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
#. App'
@@ -22389,7 +22400,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Scopes"
-msgstr ""
+msgstr "Opsezi"
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
@@ -22404,44 +22415,44 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr ""
+msgstr "Skripta"
#. Name of a role
#: frappe/core/doctype/server_script/server_script.json
msgid "Script Manager"
-msgstr ""
+msgstr "Upravitelj Skripti"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr ""
+msgstr "Izvještaj Skripti"
#. Label of the script_type (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Script Type"
-msgstr ""
+msgstr "Tip Skripte"
#. Description of a DocType
#: frappe/website/doctype/website_script/website_script.json
msgid "Script to attach to all web pages."
-msgstr ""
+msgstr "Skripta za prilaganje svim web stranicama."
#. Label of a Card Break in the Build Workspace
#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page'
#: frappe/core/workspace/build/build.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Scripting"
-msgstr ""
+msgstr "Skriptiranje"
#. Label of the section_break_6 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Scripting / Style"
-msgstr ""
+msgstr "Skriptiranje / Stil"
#. Label of the scripts_section (Section Break) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Scripts"
-msgstr ""
+msgstr "Skripte"
#. Label of the search_section (Section Break) field in DocType 'System
#. Settings'
@@ -22454,96 +22465,96 @@ msgstr ""
#: frappe/templates/discussions/search.html:2
#: frappe/templates/includes/search_template.html:26
msgid "Search"
-msgstr ""
+msgstr "Traži"
#. Label of the search_bar (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Search Bar"
-msgstr ""
+msgstr "Traka Pretrage"
#. Label of the search_fields (Data) field in DocType 'DocType'
#. Label of the search_fields (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr ""
+msgstr "Polja Pretrage"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186
msgid "Search Help"
-msgstr ""
+msgstr "Pomoć Pretrage"
#. Label of the allowed_in_global_search (Table) field in DocType 'Global
#. Search Settings'
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr ""
+msgstr "Prioriteti Pretrage"
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
msgid "Search Results"
-msgstr ""
+msgstr "Rezultati Pretrage"
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13
msgid "Search by filename or extension"
-msgstr ""
+msgstr "Pretraga po imenu datoteke ili ekstenziji"
#: frappe/core/doctype/doctype/doctype.py:1467
msgid "Search field {0} is not valid"
-msgstr ""
+msgstr "Polje za pretragu {0} nije važeće"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87
msgid "Search fields"
-msgstr ""
+msgstr "Polja za Pretragu"
#: frappe/public/js/form_builder/components/AddFieldButton.vue:19
msgid "Search fieldtypes..."
-msgstr ""
+msgstr "Tipove Polja za Pretragu..."
#: frappe/public/js/frappe/ui/toolbar/search.js:50
#: frappe/public/js/frappe/ui/toolbar/search.js:69
msgid "Search for anything"
-msgstr ""
+msgstr "Traži bilo šta"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306
msgid "Search for {0}"
-msgstr ""
+msgstr "Traži {0}"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166
msgid "Search in a document type"
-msgstr ""
+msgstr "Traži u tipu dokumenta"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:29
msgid "Search or type a command ({0})"
-msgstr ""
+msgstr "Traži ili upiši naredbu ({0})"
#: frappe/public/js/form_builder/components/SearchBox.vue:8
msgid "Search properties..."
-msgstr ""
+msgstr "Pretražna Svojstva..."
#: frappe/templates/includes/search_box.html:8
msgid "Search results for"
-msgstr ""
+msgstr "Rezultati pretrage za"
#: frappe/templates/includes/navbar/navbar_search.html:6
#: frappe/templates/includes/search_box.html:2
#: frappe/templates/includes/search_template.html:23
msgid "Search..."
-msgstr ""
+msgstr "Traži..."
#: frappe/public/js/frappe/ui/toolbar/search.js:210
msgid "Searching ..."
-msgstr ""
+msgstr "Pretraživanje u toku..."
#: frappe/public/js/frappe/form/controls/duration.js:35
msgctxt "Duration"
msgid "Seconds"
-msgstr ""
+msgstr "Sekundi"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
msgid "Section"
-msgstr ""
+msgstr "Sekcija"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -22556,7 +22567,7 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr ""
+msgstr "Prijelom Sekcije"
#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
@@ -22565,44 +22576,44 @@ msgstr "Naslov Odjeljka"
#. Label of the section_id (Data) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Section ID"
-msgstr ""
+msgstr "ID Sekcije"
#: frappe/public/js/form_builder/components/Section.vue:28
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8
msgid "Section Title"
-msgstr ""
+msgstr "Naziv Sekcije"
#: frappe/public/js/form_builder/components/Section.vue:217
#: frappe/public/js/form_builder/components/Section.vue:240
msgid "Section must have at least one column"
-msgstr ""
+msgstr "Sekcija mora imati najmanje jednu kolonu"
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr ""
+msgstr "Sigurnosne Postavke"
#: frappe/public/js/frappe/ui/notifications/notifications.js:309
msgid "See all Activity"
-msgstr ""
+msgstr "Pogledaj Sve Aktivnosti"
#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
-msgstr ""
+msgstr "Pogledaj sve prethodne izvještaje."
#: frappe/public/js/frappe/form/form.js:1235
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
-msgstr ""
+msgstr "Vidi na web stranici"
#: frappe/website/doctype/web_form/templates/web_form.html:153
msgctxt "Button in web form"
msgid "See previous responses"
-msgstr ""
+msgstr "Pogledaj prethodne odgovore"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49
msgid "See the document at {0}"
-msgstr ""
+msgstr "Pogledaj dokument na {0}"
#. Label of the seen (Check) field in DocType 'Comment'
#. Label of the seen (Check) field in DocType 'Communication'
@@ -22614,17 +22625,17 @@ msgstr ""
#: frappe/core/doctype/error_log/error_log_list.js:5
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Seen"
-msgstr ""
+msgstr "Viđeno"
#. Label of the seen_by_section (Section Break) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr ""
+msgstr "Viđeno od"
#. Label of the seen_by (Table) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr ""
+msgstr "Viđeno prema Tabeli"
#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -22646,48 +22657,48 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
-msgstr ""
+msgstr "Odaberi"
#: frappe/public/js/frappe/data_import/data_exporter.js:149
#: frappe/public/js/frappe/form/controls/multicheck.js:166
#: frappe/public/js/frappe/form/grid_row.js:481
msgid "Select All"
-msgstr ""
+msgstr "Odaberi sve"
#: frappe/public/js/frappe/views/communication.js:174
#: frappe/public/js/frappe/views/communication.js:595
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
-msgstr ""
+msgstr "Odaberi Priloge"
#: frappe/custom/doctype/client_script/client_script.js:25
#: frappe/custom/doctype/client_script/client_script.js:28
msgid "Select Child Table"
-msgstr ""
+msgstr "Odaberi Podređenu Tabelu"
#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
-msgstr ""
+msgstr "Odaberi Kolonu"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
#: frappe/public/js/frappe/form/print_utils.js:45
msgid "Select Columns"
-msgstr ""
+msgstr "Odaberi Kolone"
#: frappe/desk/page/setup_wizard/setup_wizard.js:399
msgid "Select Country"
-msgstr ""
+msgstr "Odaberi Zemlju"
#: frappe/desk/page/setup_wizard/setup_wizard.js:415
msgid "Select Currency"
-msgstr ""
+msgstr "Odaberi Valutu"
#. Label of the dashboard_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/public/js/frappe/utils/dashboard_utils.js:240
msgid "Select Dashboard"
-msgstr ""
+msgstr "Odaberi Nadzornu Tablu"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -22699,222 +22710,222 @@ msgstr "Datumski Raspon"
#: frappe/public/js/frappe/doctype/index.js:171
#: frappe/website/doctype/web_form/web_form.json
msgid "Select DocType"
-msgstr ""
+msgstr "Odaberi Doctype"
#. Label of the reference_doctype (Link) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Select Doctype"
-msgstr ""
+msgstr "Odaberi Doctype"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
msgid "Select Document Type"
-msgstr ""
+msgstr "Odaberi vrstu dokumenta"
#: frappe/core/page/permission_manager/permission_manager.js:179
msgid "Select Document Type or Role to start."
-msgstr ""
+msgstr "Odaberi Tip Dokumenta ili Ulogu."
#: frappe/core/page/permission_manager/permission_manager_help.html:34
msgid "Select Document Types to set which User Permissions are used to limit access."
-msgstr ""
+msgstr "Odaberi Tipove Dokumenata da postavite koje se korisničke dozvole koriste za ograničavanje pristupa."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
#: frappe/public/js/frappe/form/toolbar.js:835
msgid "Select Field"
-msgstr ""
+msgstr "Odaberi Polje"
#: frappe/public/js/frappe/ui/group_by/group_by.html:35
#: frappe/public/js/frappe/ui/group_by/group_by.js:141
msgid "Select Field..."
-msgstr ""
+msgstr "Odaberi Polje..."
#: frappe/public/js/frappe/form/grid_row.js:473
#: frappe/public/js/frappe/list/list_settings.js:236
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
-msgstr ""
+msgstr "Odaberi Polja"
#: frappe/public/js/frappe/data_import/data_exporter.js:147
msgid "Select Fields To Insert"
-msgstr ""
+msgstr "Odaberite Polja za Umetanje"
#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Update"
-msgstr ""
+msgstr "Odaberi Polja za Ažuriranje"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21
msgid "Select Filters"
-msgstr ""
+msgstr "Odaberi Filtere"
#: frappe/desk/doctype/event/event.py:103
msgid "Select Google Calendar to which event should be synced."
-msgstr ""
+msgstr "Odaberi Google Kalendar s kojim događaj treba sinhronizirati."
#: frappe/contacts/doctype/contact/contact.py:77
msgid "Select Google Contacts to which contact should be synced."
-msgstr ""
+msgstr "Odaberite Google kontakte s kojima treba sinhronizirati kontakt."
#: frappe/public/js/frappe/ui/group_by/group_by.html:10
msgid "Select Group By..."
-msgstr ""
+msgstr "Odaberi Grupiraj prema..."
#: frappe/public/js/frappe/list/list_view_select.js:185
msgid "Select Kanban"
-msgstr ""
+msgstr "Odaberi Oglasnu Tablu"
#: frappe/desk/page/setup_wizard/setup_wizard.js:391
msgid "Select Language"
-msgstr ""
+msgstr "Odaberi Jezik"
#. Label of the list_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select List View"
-msgstr ""
+msgstr "Odaberi Prikaz Liste"
#: frappe/public/js/frappe/data_import/data_exporter.js:158
msgid "Select Mandatory"
-msgstr ""
+msgstr "Odaberi Obavezno"
#: frappe/custom/doctype/customize_form/customize_form.js:280
msgid "Select Module"
-msgstr ""
+msgstr "Odaberi Modul"
#: frappe/printing/page/print/print.js:175
#: frappe/printing/page/print/print.js:585
msgid "Select Network Printer"
-msgstr ""
+msgstr "Odaberi Mrežni Pisač"
#. Label of the page_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
-msgstr ""
+msgstr "Odaberi Stranicu"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
#: frappe/public/js/frappe/views/communication.js:157
msgid "Select Print Format"
-msgstr ""
+msgstr "Odaberi Ispis Format"
#: frappe/printing/page/print_format_builder/print_format_builder.js:82
msgid "Select Print Format to Edit"
-msgstr ""
+msgstr "Odaberi Ispis Format za Uređivanje"
#. Label of the report_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Report"
-msgstr ""
+msgstr "Odaberi Izvještaj"
#: frappe/printing/page/print_format_builder/print_format_builder.js:631
msgid "Select Table Columns for {0}"
-msgstr ""
+msgstr "Odaberi Kolone Tabele za {0}"
#: frappe/desk/page/setup_wizard/setup_wizard.js:408
msgid "Select Time Zone"
-msgstr ""
+msgstr "Odaberi Vremensku Zonu"
#. Label of the transaction_type (Autocomplete) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr ""
+msgstr "Odaberi Transakciju"
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
-msgstr ""
+msgstr "Odaberi Radni Tok"
#. Label of the workspace_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
-msgstr ""
+msgstr "Odaberi Radni Prostor"
#. Label of the select_workspaces_section (Section Break) field in DocType
#. 'Workspace Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Select Workspaces"
-msgstr ""
+msgstr "Odaberi Radni Prostor"
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
-msgstr ""
+msgstr "Prvo odaberi sliku Marke."
#: frappe/printing/page/print_format_builder/print_format_builder.js:108
msgid "Select a DocType to make a new format"
-msgstr ""
+msgstr "Odaberi DocType da napravite novi format"
#: frappe/public/js/form_builder/components/Sidebar.vue:56
msgid "Select a field to edit its properties."
-msgstr ""
+msgstr "Odaberi polje da biste uredili njegova svojstva."
#: frappe/public/js/frappe/views/treeview.js:358
msgid "Select a group node first."
-msgstr ""
+msgstr "Odaberi Grupu."
#: frappe/core/doctype/doctype/doctype.py:1942
msgid "Select a valid Sender Field for creating documents from Email"
-msgstr ""
+msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte"
#: frappe/core/doctype/doctype/doctype.py:1926
msgid "Select a valid Subject field for creating documents from Email"
-msgstr ""
+msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte"
#: frappe/public/js/frappe/form/form_tour.js:321
msgid "Select an Image"
-msgstr ""
+msgstr "Odaberi Sliku"
#: frappe/www/apps.html:10
msgid "Select an app to continue"
-msgstr ""
+msgstr "Odaberi Aplikaciju da nastavite"
#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2
msgid "Select an existing format to edit or start a new format."
-msgstr ""
+msgstr "Odaberi postojeći format za uređivanje ili započni novi format."
#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Select an image of approx width 150px with a transparent background for best results."
-msgstr ""
+msgstr "Odaberi sliku približne širine 150px sa prozirnom pozadinom za najbolje rezultate."
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
-msgstr ""
+msgstr "Odaberi najmanje jedan zapis za ispis"
#: frappe/core/doctype/success_action/success_action.js:18
msgid "Select atleast 2 actions"
-msgstr ""
+msgstr "Odaberi najmanje dvije radnje"
#: frappe/public/js/frappe/list/list_view.js:1304
msgctxt "Description of a list view shortcut"
msgid "Select list item"
-msgstr ""
+msgstr "Odaberi Artikal Liste"
#: frappe/public/js/frappe/list/list_view.js:1256
#: frappe/public/js/frappe/list/list_view.js:1272
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
-msgstr ""
+msgstr "Odaberi artikle više listi"
#: frappe/public/js/frappe/views/calendar/calendar.js:167
msgid "Select or drag across time slots to create a new event."
-msgstr ""
+msgstr "Odaberi ili prevucite preko vremenskih intervala da kreirate novi događaj."
#: frappe/public/js/frappe/list/bulk_operations.js:239
msgid "Select records for assignment"
-msgstr ""
+msgstr "Odaberi zapise za dodjelu"
#: frappe/public/js/frappe/list/bulk_operations.js:260
msgid "Select records for removing assignment"
-msgstr ""
+msgstr "Odaberi zapise za uklanjanje dodjele"
#. Description of the 'Insert After' (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Select the label after which you want to insert new field."
-msgstr ""
+msgstr "Odaberi oznaku nakon koje želite umetnuti novo polje."
#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
-msgstr ""
+msgstr "Odaberi dvije verzije da vidite razliku."
#: frappe/public/js/frappe/form/link_selector.js:24
#: frappe/public/js/frappe/form/multi_select_dialog.js:80
@@ -22922,53 +22933,53 @@ msgstr ""
#: frappe/public/js/frappe/list/list_view_select.js:153
#: frappe/public/js/print_format_builder/Preview.vue:90
msgid "Select {0}"
-msgstr ""
+msgstr "Odaberi {0}"
#: frappe/model/workflow.py:117
msgid "Self approval is not allowed"
-msgstr ""
+msgstr "Samoodobrenje nije dozvoljeno"
#: frappe/www/contact.html:41
msgid "Send"
-msgstr ""
+msgstr "Pošalji"
#: frappe/public/js/frappe/views/communication.js:26
msgctxt "Send Email"
msgid "Send"
-msgstr ""
+msgstr "Pošalji"
#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence."
-msgstr ""
+msgstr "Pošalji ovaj broj najranije nekoliko minuta prije ili poslije referentnog datuma i vremena. Stvarno slanje može biti odgođeno do 5 minuta zbog ritma okidača raspoređivača."
#. Label of the send_after (Datetime) field in DocType 'Communication'
#. Label of the send_after (Datetime) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr ""
+msgstr "Pošalji Poslije"
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr ""
+msgstr "Pošalji Upozorenje"
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr ""
+msgstr "Pošalji Upozorenje e-poštom"
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
-msgstr ""
+msgstr "Pošalji e-poštu o Radnom Stanju"
#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr ""
+msgstr "Pošalji Prilog e-poštom kao PDF (Preporučeno)"
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
@@ -22979,110 +22990,110 @@ msgstr "Pošalji e-poštu Stvaraocu"
#. Label of the send_me_a_copy (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Me A Copy of Outgoing Emails"
-msgstr ""
+msgstr "Pošalji mi Kopiju Odlazne e-pošte"
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr ""
+msgstr "Pošalji Obavještenje"
#. Label of the document_follow_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Documents Followed By Me"
-msgstr ""
+msgstr "Šalji obavještenja za dokumente koje pratim"
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr ""
+msgstr "Slanje obavijesti za niti e-pošte"
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
-msgstr ""
+msgstr "Pošalji Sad"
#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Print as PDF"
-msgstr ""
+msgstr "Pošalji Ispis kao PDF"
#: frappe/public/js/frappe/views/communication.js:147
msgid "Send Read Receipt"
-msgstr ""
+msgstr "Pošalji Potvrdu o Čitanju"
#. Label of the send_system_notification (Check) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr ""
+msgstr "Pošalji Sistemsko Obaveštenje"
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr ""
+msgstr "Pošalji svim Dodjeljnim"
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
-msgstr ""
+msgstr "Pošalji e-poštu Dobrodošlice"
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
-msgstr ""
+msgstr "Pošalji upozorenje ako datum odgovara vrijednosti ovog polja"
#. Description of the 'Reference Datetime' (Select) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if datetime matches this field's value"
-msgstr ""
+msgstr "Pošalji upozorenje ako datum i vrijeme odgovara vrijednosti ovog polja"
#. Description of the 'Value Changed' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if this field's value changes"
-msgstr ""
+msgstr "Pošalji upozorenje ako se vrijednost ovog polja promijeni"
#. Label of the send_reminder (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Send an email reminder in the morning"
-msgstr ""
+msgstr "Pošalji podsjetnik e-poštom ujutro"
#. Description of the 'Days Before or After' (Int) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr ""
+msgstr "Pošalji nekoliko dana prije ili nakon referentnog datuma"
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send email when document transitions to the state."
-msgstr ""
+msgstr "Pošalji e-poštu kada dokument prijeđe u stanje."
#. Description of the 'Forward To Email Address' (Data) field in DocType
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr ""
+msgstr "Pošaljite upite na ovu adresu e-pošte"
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
msgid "Send login link"
-msgstr ""
+msgstr "Pošalji Vezu Prijave"
#: frappe/public/js/frappe/views/communication.js:141
msgid "Send me a copy"
-msgstr ""
+msgstr "Pošalji Mi Kopiju"
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr ""
+msgstr "Šalji samo ako postoje podaci"
#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send unsubscribe message in email"
-msgstr ""
+msgstr "Pošaljite poruku za odjavu putem e-pošte"
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -23094,47 +23105,47 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
-msgstr ""
+msgstr "Pošiljatelj"
#. Label of the sender_email (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
-msgstr ""
+msgstr "E-pošta Pošiljatelja"
#. Label of the sender_field (Data) field in DocType 'DocType'
#. Label of the sender_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Email Field"
-msgstr ""
+msgstr "Polje e-pošte Pošiljatelja"
#: frappe/core/doctype/doctype/doctype.py:1945
msgid "Sender Field should have Email in options"
-msgstr ""
+msgstr "Polje Pošiljatelja treba da ima opciju E-pošta"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sender Name"
-msgstr ""
+msgstr "Ime Pošiljatelja"
#. Label of the sender_name_field (Data) field in DocType 'DocType'
#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Name Field"
-msgstr ""
+msgstr "Ime Pošiljatelja"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr ""
+msgstr "Sendgrid"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Sending"
-msgstr ""
+msgstr "Šalje se"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
@@ -23144,83 +23155,83 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Sent"
-msgstr ""
+msgstr "Poslano"
#. Label of the sent_folder_name (Data) field in DocType 'Email Account'
#. Label of the sent_folder_name (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Sent Folder Name"
-msgstr ""
+msgstr "Naziv Poslate Mape"
#. Label of the sent_on (Date) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent On"
-msgstr ""
+msgstr "Poslano"
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr ""
+msgstr "Poslana Potvrda Čitanju"
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent To"
-msgstr ""
+msgstr "Poslano"
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr ""
+msgstr "Poslano ili Primljeno"
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr ""
+msgstr "Poslana/Primljena e-pošta"
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Separator"
-msgstr ""
+msgstr "Razdjelnik"
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Sequence Id"
-msgstr ""
+msgstr "Id Sekvence"
#. Label of the naming_series_options (Text) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr ""
+msgstr "Serija Imenovanja Liste za ovu Transakciju"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
-msgstr ""
+msgstr "Serija Imenovanja Ažurirana za {}"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223
msgid "Series counter for {} updated to {} successfully"
-msgstr ""
+msgstr "Brojač Serija Imenovanja za {} uspješno je ažuriran na {}"
#: frappe/core/doctype/doctype/doctype.py:1109
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
-msgstr ""
+msgstr "Serija Imenovanja {0} se već koristi u {1}"
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr ""
+msgstr "Radnja Servera"
#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
-msgstr ""
+msgstr "Greška Servera"
#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Server IP"
-msgstr ""
+msgstr "IP Servera"
#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -23229,23 +23240,23 @@ msgstr ""
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/workspace/build/build.json
msgid "Server Script"
-msgstr ""
+msgstr "Server Skripta"
#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
-msgstr ""
+msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije."
#: frappe/core/doctype/server_script/server_script.js:39
msgid "Server Scripts feature is not available on this site."
-msgstr ""
+msgstr "Funkcija server skripti nije dostupna na ovoj stranici."
#: frappe/public/js/frappe/request.js:254
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
-msgstr ""
+msgstr "Poslužitelj nije uspio obraditi ovaj zahtjev zbog istovremenog konfliktnog zahtjeva. Pokušajte ponovno."
#: frappe/public/js/frappe/request.js:246
msgid "Server was too busy to process this request. Please try again."
-msgstr ""
+msgstr "Server je bio prezauzet za obradu ovog zahtjeva. Pokušaj ponovo."
#. Label of the service (Select) field in DocType 'Email Account'
#. Label of the integration_request_service (Data) field in DocType
@@ -23253,17 +23264,17 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Service"
-msgstr ""
+msgstr "Servis"
#. Name of a DocType
#: frappe/core/doctype/session_default/session_default.json
msgid "Session Default"
-msgstr ""
+msgstr "Standard Sesija"
#. Name of a DocType
#: frappe/core/doctype/session_default_settings/session_default_settings.json
msgid "Session Default Settings"
-msgstr ""
+msgstr "Standard Postavke Sesije"
#. Label of a standard navbar item
#. Type: Action
@@ -23272,24 +23283,24 @@ msgstr ""
#: frappe/core/doctype/session_default_settings/session_default_settings.json
#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
-msgstr ""
+msgstr "Standard Sesije"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
-msgstr ""
+msgstr "Standard Postavke Sesije Spremljene"
#: frappe/app.py:352
msgid "Session Expired"
-msgstr ""
+msgstr "Sesija Istekla"
#. Label of the session_expiry (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Session Expiry (idle timeout)"
-msgstr ""
+msgstr "Istek Sesije (vremensko ograničenje mirovanja)"
#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
-msgstr ""
+msgstr "Istek Sesije mora biti u formatu {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
@@ -23297,79 +23308,79 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:387
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
-msgstr ""
+msgstr "Postavi"
#: frappe/public/js/frappe/ui/filters/filter.js:607
msgctxt "Field value is set"
msgid "Set"
-msgstr ""
+msgstr "Postavi"
#. Label of the set_banner_from_image (Button) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr ""
+msgstr "Postavi baner sa slike"
#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
-msgstr ""
+msgstr "Potavi grafikon"
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
-msgstr ""
+msgstr "Postavi zadane opcije za sve grafikone na ovoj Nadzornoj Tabli (npr. \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
#: frappe/desk/doctype/number_card/number_card.js:367
msgid "Set Dynamic Filters"
-msgstr ""
+msgstr "Postavi Dinamičke Filtere"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
#: frappe/desk/doctype/number_card/number_card.js:280
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
-msgstr ""
+msgstr "Postavi Filtere"
#: frappe/public/js/frappe/widgets/chart_widget.js:436
#: frappe/public/js/frappe/widgets/quick_list_widget.js:105
msgid "Set Filters for {0}"
-msgstr ""
+msgstr "Postavi filtere za {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
-msgstr ""
+msgstr "Postavi Nivo"
#: frappe/core/doctype/user_type/user_type.py:92
msgid "Set Limit"
-msgstr ""
+msgstr "Postavi ograničenje"
#. Description of the 'Setup Series for transactions' (Section Break) field in
#. DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
-msgstr ""
+msgstr "Postavi opcije serije imenovanja za svoje transakcije."
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr ""
+msgstr "Postavi novu lozinku"
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
-msgstr ""
+msgstr "Postavi broj sigurnosnih kopija"
#: frappe/www/update-password.html:32
msgid "Set Password"
-msgstr ""
+msgstr "Postavi lozinku"
#: frappe/custom/doctype/customize_form/customize_form.js:112
msgid "Set Permissions"
-msgstr ""
+msgstr "Postavi dozvole"
#: frappe/printing/page/print_format_builder/print_format_builder.js:471
msgid "Set Properties"
-msgstr ""
+msgstr "Postavi svojstva"
#. Label of the property_section (Section Break) field in DocType
#. 'Notification'
@@ -23377,56 +23388,56 @@ msgstr ""
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr ""
+msgstr "Postavi svojstvo nakon upozorenja"
#: frappe/public/js/frappe/form/link_selector.js:207
#: frappe/public/js/frappe/form/link_selector.js:208
msgid "Set Quantity"
-msgstr ""
+msgstr "Postavi Količinu"
#. Label of the set_role_for (Select) field in DocType 'Role Permission for
#. Page and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Set Role For"
-msgstr ""
+msgstr "Postavi Ulogu za"
#: frappe/core/doctype/user/user.js:131
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
-msgstr ""
+msgstr "Postavi Korisničke Dozvole"
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr ""
+msgstr "Postavi Vrijednost"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134
msgid "Set all private"
-msgstr ""
+msgstr "Postavi sve privatno"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
msgid "Set all public"
-msgstr ""
+msgstr "Postavi sve javno"
#: frappe/printing/doctype/print_format/print_format.js:49
msgid "Set as Default"
-msgstr ""
+msgstr "Postavi kao Standard"
#: frappe/website/doctype/website_theme/website_theme.js:33
msgid "Set as Default Theme"
-msgstr ""
+msgstr "Postavi kao Standard Temu"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Set by user"
-msgstr ""
+msgstr "Postavio Korisnik"
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "Set dynamic filter values in JavaScript for the required fields here."
-msgstr ""
+msgstr "Postavi vrijednosti dinamičkog filtera u JavaScriptu za obavezna polja ovdje."
#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
@@ -23438,17 +23449,17 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
-msgstr ""
+msgstr "Postavi nestandardnu preciznost za Float ili Valuta polje"
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
-msgstr ""
+msgstr "Postavi samo jednom"
#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Set size in MB"
-msgstr ""
+msgstr "Postavi veličinu u MB"
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
@@ -23471,7 +23482,24 @@ msgid "Set the filters here. For example:\n"
"\treqd: 1\n"
"}]\n"
""
-msgstr ""
+msgstr "Postavi filtere ovdje. Na primjer:\n"
+"
"
#. Description of the 'Method' (Data) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -23483,19 +23511,26 @@ msgid "Set the path to a whitelisted function that will return the data for the
"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
"}"
-msgstr ""
+msgstr "Postavi put do funkcije s popisa dozvoljenih koja će vratiti podatke za numeričku karticu u formatu:\n\n"
+"\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
"
#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr ""
+msgstr "Postavlja se ovog Šablona Adrese kao standard jer ne postoji drugi standard"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
-msgstr ""
+msgstr "Postavljanje dokumenata Globalne pretrage."
#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr ""
+msgstr "Postavljanje vašeg sistema"
#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
#. Label of the settings_tab (Tab Break) field in DocType 'User'
@@ -23514,66 +23549,66 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json frappe/www/me.html:20
msgid "Settings"
-msgstr ""
+msgstr "Postavke"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr ""
+msgstr "Padajući Meni Postavki"
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Settings for Contact Us Page"
-msgstr ""
+msgstr "Postavke za Kontaktirajte Nas Stranicu"
#. Description of a DocType
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Settings for the About Us Page"
-msgstr ""
+msgstr "Postavke za O nama Stranicu"
#. Description of a DocType
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Settings to control blog categories and interactions like comments and likes"
-msgstr ""
+msgstr "Postavke za kontrolu kategorija blogova i interakcija poput komentara i lajkova"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
msgid "Setup"
-msgstr ""
+msgstr "Postavljanja"
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "Setup > Customize Form"
-msgstr ""
+msgstr "Postavljanje> Prilagodi Formu"
#: frappe/core/page/permission_manager/permission_manager_help.html:8
msgid "Setup > User"
-msgstr ""
+msgstr "Postavljanje> Korisnik"
#: frappe/core/page/permission_manager/permission_manager_help.html:33
msgid "Setup > User Permissions"
-msgstr ""
+msgstr "Postavljanje > Korisničke Dozvole"
#: frappe/public/js/frappe/views/reports/query_report.js:1765
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
-msgstr ""
+msgstr "Postavljanje Automatske e-pošte"
#. Label of the setup_complete (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Setup Complete"
-msgstr ""
+msgstr "Postavljanje je Završeno"
#. Label of the setup_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr ""
+msgstr "Postavljanje Serije Imenovanja za Transakcije"
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
-msgstr ""
+msgstr "Postavljanje nije uspjelo"
#. Label of the share (Check) field in DocType 'Custom DocPerm'
#. Label of the share (Check) field in DocType 'DocPerm'
@@ -23587,69 +23622,69 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr ""
+msgstr "Dijeli"
#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr ""
+msgstr "Podijeli sa"
#: frappe/public/js/frappe/form/templates/set_sharing.html:49
msgid "Share this document with"
-msgstr ""
+msgstr "Podijeli ovaj dokument sa"
#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr ""
+msgstr "Podijeli {0} sa"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr ""
+msgstr "Podijeljeno"
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr ""
+msgstr "Dijeli se sa sljedećim korisnicima s dozvolom za čitanje:{0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr ""
+msgstr "Dostava"
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
-msgstr ""
+msgstr "Dostavna Adresa"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr ""
+msgstr "Trgovina"
#. Label of the short_name (Data) field in DocType 'Blogger'
#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr ""
+msgstr "Kratko Ime"
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr ""
+msgstr "Kratke mustre tastature je lako pogoditi"
#. Label of the shortcuts (Table) field in DocType 'Workspace'
#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr ""
+msgstr "Prečice"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
msgid "Show"
-msgstr ""
+msgstr "Prikaži"
#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Show \"Call to Action\" in Blog"
-msgstr ""
+msgstr "Prikaži \"Poziv na Akciju\" u Blogu"
#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
#. 'System Settings'
@@ -23658,25 +23693,25 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
msgid "Show Absolute Datetime in Timeline"
-msgstr ""
+msgstr "Prikaži apsolutni datum i vrijeme na vremenskoj traci"
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
-msgstr ""
+msgstr "Prikaži Apsolutne Vrijednosti"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
msgid "Show All"
-msgstr ""
+msgstr "Prikaži Sve"
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr ""
+msgstr "Prikaži Kalendar"
#. Label of the symbol_on_right (Check) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
-msgstr ""
+msgstr "Prikaži simbol valute na desnoj strani"
#. Label of the show_dashboard (Check) field in DocType 'DocField'
#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
@@ -23686,121 +23721,121 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
-msgstr ""
+msgstr "Prikaži Nadzornu Tablu"
#. Label of the show_document (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr ""
+msgstr "Prikaži Dokument"
#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
-msgstr ""
+msgstr "Prikaži Grešku"
#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
-msgstr ""
+msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)"
#. Label of the first_document (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
-msgstr ""
+msgstr "Prikaži Introdukciju Prvog Dokumenta"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr ""
+msgstr "Prikaži Introdukciju Forme"
#. Label of the allow_error_traceback (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr ""
+msgstr "Prikaži potpunu grešku i dozvoli prijavljivanje problema programeru"
#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr ""
+msgstr "Prikaži Punu Formu?"
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Full Number"
-msgstr ""
+msgstr "Prikaži puni broj"
#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr ""
+msgstr "Prikaži Prečice Tastature"
#. Label of the show_labels (Check) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
-msgstr ""
+msgstr "Prikaži Oznake"
#. Label of the show_language_picker (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
-msgstr ""
+msgstr "Prikaži Birač Jezika"
#. Label of the line_breaks (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr ""
+msgstr "Prikaži Prijelome Reda nakon Sekcije"
#: frappe/public/js/frappe/form/toolbar.js:407
msgid "Show Links"
-msgstr ""
+msgstr "Prikaži Veze"
#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Show Only Failed Logs"
-msgstr ""
+msgstr "Prikaži Samo Neuspjele zapise"
#. Label of the show_percentage_stats (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Percentage Stats"
-msgstr ""
+msgstr "Prikaži Procentualnu Statistiku"
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr ""
+msgstr "Prikaži Dozvole"
#: frappe/public/js/form_builder/form_builder.bundle.js:31
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
-msgstr ""
+msgstr "Prikaži Pregled"
#. Label of the show_preview_popup (Check) field in DocType 'DocType'
#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr ""
+msgstr "Prikaži skočni prozor za pregled"
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
-msgstr ""
+msgstr "Prikaži Procesnu Listu"
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
-msgstr ""
+msgstr "Prikaži Povezane Greške"
#. Label of the show_report (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
#: frappe/core/doctype/prepared_report/prepared_report.js:43
#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr ""
+msgstr "Prikaži Izvještaj"
#: frappe/public/js/frappe/list/list_filter.js:15
#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
-msgstr ""
+msgstr "Prikaži Spremljeno"
#. Label of the show_section_headings (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -23810,17 +23845,17 @@ msgstr "Prikaži Naslove Odjeljaka"
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr ""
+msgstr "Prikaži Bočnu Traku"
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
-msgstr ""
+msgstr "Prikaži Oznake"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr ""
+msgstr "Prikaži Naziv"
#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
@@ -23828,166 +23863,166 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
-msgstr ""
+msgstr "Prikaži Naziv u Poljima Veza"
#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
-msgstr ""
+msgstr "Prikaži Ukupno"
#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
-msgstr ""
+msgstr "Prikaži Introdukciju"
#: frappe/core/doctype/data_import/data_import.js:448
msgid "Show Traceback"
-msgstr ""
+msgstr "Prikaži Povratno Praćenje"
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
-msgstr ""
+msgstr "Prikaži Upozorenja"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr ""
+msgstr "Prikaži Vikende"
#. Label of the show_account_deletion_link (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
-msgstr ""
+msgstr "Prikaži vezu za brisanje računa na stranici Moj Račun"
#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr ""
+msgstr "Prikaži sve Verzije"
#: frappe/public/js/frappe/form/footer/form_timeline.js:69
msgid "Show all activity"
-msgstr ""
+msgstr "Prikaži sve Aktivnosti"
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
-msgstr ""
+msgstr "Prikaži sve Blogove"
#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr ""
+msgstr "Prikaži kao Kopija za"
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show attachments"
-msgstr ""
+msgstr "Prikaži Priloge"
#. Label of the show_footer_on_login (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
-msgstr ""
+msgstr "Prikaži podnožje prilikom prijave"
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr ""
+msgstr "Prikaži punu formu umjesto modalnog za brzi unos"
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr ""
+msgstr "Prikaži u Sekciji Modula"
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr ""
+msgstr "Prikaži u filteru"
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
-msgstr ""
+msgstr "Prikaži vezu do dokumenta"
#. Label of the show_list (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show list"
-msgstr ""
+msgstr "Prikaži listu"
#: frappe/public/js/frappe/form/layout.js:273
#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
-msgstr ""
+msgstr "Prikaži više detalja"
#. Label of the show_on_timeline (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Show on Timeline"
-msgstr ""
+msgstr "Prikaži na Vremenskoj liniji"
#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr ""
+msgstr "Prikaži procentnu razliku prema ovom vremenskom intervalu"
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show sidebar"
-msgstr ""
+msgstr "Prikaži Bočnu Traku"
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show title in browser window as \"Prefix - title\""
-msgstr ""
+msgstr "Prikaži naziv u prozoru pretraživača kao \"Prefiks - naziv\""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
-msgstr ""
+msgstr "Prikaži {0} Listu"
#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
-msgstr ""
+msgstr "Prikazuju se samo numerička polja iz Izvještaja"
#: frappe/public/js/frappe/data_import/import_preview.js:153
msgid "Showing only first {0} rows out of {1}"
-msgstr ""
+msgstr "Prikazuje se samo prvih {0} redova od {1}"
#. Label of the list_sidebar (Check) field in DocType 'User'
#. Label of the form_sidebar (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Sidebar"
-msgstr ""
+msgstr "Bočna Traka"
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr ""
+msgstr "Stavke Bočne Trake"
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Postavke Bočne Trake"
#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Sidebar and Comments"
-msgstr ""
+msgstr "Bočna Traka i Komentari"
#. Label of the sign_up_and_confirmation_section (Section Break) field in
#. DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
-msgstr ""
+msgstr "Prijava i Potvrda"
#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
-msgstr ""
+msgstr "Prijava je onemogućena"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
#: frappe/www/login.html:156 frappe/www/update-password.html:58
msgid "Sign up"
-msgstr ""
+msgstr "Prijavi se"
#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Sign ups"
-msgstr ""
+msgstr "Prijave"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -24002,66 +24037,66 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr ""
+msgstr "Potpis"
#: frappe/www/login.html:168
msgid "Signup Disabled"
-msgstr ""
+msgstr "Prijava Onemogućena"
#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
-msgstr ""
+msgstr "Prijave su onemogućene za ovu web stranicu."
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
+msgstr "Jednostavan Python izraz, primjer: status u (\"Zatvoreno\", \"Otkazano\")"
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr ""
+msgstr "Jednostavan Python izraz, primjer: status u (\"Nevažeći\")"
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr ""
+msgstr "Jednostavan Python izraz, primjer: status == 'Otvoren' i tip == 'Bug'"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr ""
+msgstr "Simultane Sesije"
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
-msgstr ""
+msgstr "Pojedinačni DocTypes se ne mogu prilagoditi."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr ""
+msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles"
#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
-msgstr ""
+msgstr "Stranica radi u načinu samo za čitanje radi održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo pokušajte ponovo kasnije."
#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Size"
-msgstr ""
+msgstr "Veličina"
#. Label of the size (Float) field in DocType 'System Health Report Tables'
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "Size (MB)"
-msgstr ""
+msgstr "Veličina (MB)"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
msgid "Skip"
-msgstr ""
+msgstr "Preskoči"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
@@ -24069,83 +24104,83 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Skip Authorization"
-msgstr ""
+msgstr "Preskoči Autorizaciju"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
-msgstr ""
+msgstr "Preskoči Korak"
#. Label of the skipped (Check) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
-msgstr ""
+msgstr "Preskočeno"
#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr ""
+msgstr "Preskače se Kopirana Kolona {0}"
#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr ""
+msgstr "Preskače se Kolona bez Naziva"
#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr ""
+msgstr "Preskače se kolona {0}"
#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
-msgstr ""
+msgstr "Preskače se sinhronizacija fiksiranja za tip dokumenta {0} iz datoteke {1}"
#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
-msgstr ""
+msgstr "Preskače se {0} od {1}, {2}"
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr ""
+msgstr "Skype"
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr ""
+msgstr "Slack"
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr ""
+msgstr "Slack Kanal"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr ""
+msgstr "Slack Webhook Greška"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr ""
+msgstr "Slack Webhook URL"
#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr ""
+msgstr "Dijaprojekcija"
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr ""
+msgstr "Stavke Dijaprojekcije"
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr ""
+msgstr "Naziv Dijaprojekcije"
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow like display for the website"
-msgstr ""
+msgstr "Prikaz Dijaprojekcije za web stranicu"
#. Label of the slug (Data) field in DocType 'UTM Campaign'
#. Label of the slug (Data) field in DocType 'UTM Medium'
@@ -24154,7 +24189,7 @@ msgstr ""
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
msgid "Slug"
-msgstr ""
+msgstr "Slug"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -24167,115 +24202,115 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr ""
+msgstr "Mali Tekst"
#. Label of the smallest_currency_fraction_value (Currency) field in DocType
#. 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr ""
+msgstr "Najmanja Vrijednost Frakcije Valute"
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr ""
+msgstr "Jedinica najmanjih frakcija u opticaju (kovanica). Za npr. 1 cent za USD i treba ga unijeti kao 0,01"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
-msgstr ""
+msgstr "Isječak i više varijabli: {0}"
#. Name of a DocType
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Settings"
-msgstr ""
+msgstr "Postavke Društvenih Veza"
#. Label of the social_link_type (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr ""
+msgstr "Tip Društvene Veze"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Social Login Key"
-msgstr ""
+msgstr "Ključ Prijave Društvenih Mreža"
#. Label of the social_login_provider (Select) field in DocType 'Social Login
#. Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr ""
+msgstr "Dobavljač Društvenih Mreža"
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr ""
+msgstr "Prijave Društvenih Mreža"
#. Label of the socketio_ping_check (Select) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "SocketIO Ping Check"
-msgstr ""
+msgstr "SocketIO Ping Provjera"
#. Label of the socketio_transport_mode (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "SocketIO Transport Mode"
-msgstr ""
+msgstr "SocketIO Transport Način"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr ""
+msgstr "Mekano Odbijeno"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
-msgstr ""
+msgstr "Neke kolone mogu biti odsječene prilikom ispisa u PDF. Pokušaj zadržati broj kolona ispod 10."
#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\""
-msgstr ""
+msgstr "Neki poštanski sandučići zahtijevaju drugačije ime poslane mape, npr. \"INBOX.Sent\""
#: frappe/public/js/frappe/desk.js:20
msgid "Some of the features might not work in your browser. Please update your browser to the latest version."
-msgstr ""
+msgstr "Neke od funkcija možda neće raditi u vašem pretraživaču. Molimo ažurirajte svoj pretraživač na najnoviju verziju."
#: frappe/public/js/frappe/views/translation_manager.js:101
msgid "Something went wrong"
-msgstr ""
+msgstr "Nešto je pošlo po zlu"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
-msgstr ""
+msgstr "Nešto je pošlo po zlu tokom generisanja tokena. Klikni na {0} da generišete novi."
#: frappe/templates/includes/login/login.js:293
msgid "Something went wrong."
-msgstr ""
+msgstr "Nešto je pošlo po zlu."
#: frappe/public/js/frappe/views/pageview.js:114
msgid "Sorry! I could not find what you were looking for."
-msgstr ""
+msgstr "Izvinite! Nije pronađeno ono što tražite."
#: frappe/public/js/frappe/views/pageview.js:122
msgid "Sorry! You are not permitted to view this page."
-msgstr ""
+msgstr "Izvinite! Nije vam dozvoljeno da vidite ovu stranicu."
#: frappe/public/js/frappe/utils/datatable.js:6
msgid "Sort Ascending"
-msgstr ""
+msgstr "Sortiraj Uzlazno"
#: frappe/public/js/frappe/utils/datatable.js:7
msgid "Sort Descending"
-msgstr ""
+msgstr "Sortiraj Silazno"
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr ""
+msgstr "Polje sortiranja"
#. Label of the sort_options (Check) field in DocType 'DocField'
#. Label of the sort_options (Check) field in DocType 'Custom Field'
@@ -24284,16 +24319,16 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Sort Options"
-msgstr ""
+msgstr "Opcije Sortiranja"
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr ""
+msgstr "Redoslijed Sortiranja"
#: frappe/core/doctype/doctype/doctype.py:1550
msgid "Sort field {0} must be a valid fieldname"
-msgstr ""
+msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
@@ -24303,74 +24338,74 @@ msgstr ""
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
msgid "Source"
-msgstr ""
+msgstr "Izvor"
#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr ""
+msgstr "Naziv Izvora"
#. Label of the source_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr ""
+msgstr "Izvorni Tekst"
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
msgid "Spacer"
-msgstr ""
+msgstr "Razmak"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr ""
+msgstr "Neželjena Pošta"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "SparkPost"
-msgstr ""
+msgstr "SparkPost"
#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr ""
+msgstr "Posebni Znakovi nisu dozvoljeni"
#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr ""
+msgstr "Posebni Znakovi osim '-', '#', '.', '/', '{{' and '}}' nisu dozvoljeni u seriji imenovanja {0}"
#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Specify a custom timeout, default timeout is 1500 seconds"
-msgstr ""
+msgstr "Odredi prilagođeno vremensko ograničenje, standardno vremensko ograničenje je 1500 sekundi"
#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
#. 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
-msgstr ""
+msgstr "Navedi domene ili porijekla kojima je dozvoljeno ugraditi ovaj obrazac. Unesite jednu domenu po liniji (npr. https://example.com). Ako nema specificiranih domena, obrazac se može ugraditi samo na isto porijeklo."
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
-msgstr ""
+msgstr "Uvodna Slika"
#: frappe/desk/reportview.py:419
#: frappe/public/js/frappe/web_form/web_form_list.js:175
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
-msgstr ""
+msgstr "Red"
#: frappe/public/js/print_format_builder/Field.vue:143
#: frappe/public/js/print_format_builder/Field.vue:164
msgid "Sr No."
-msgstr ""
+msgstr "Serijski Broj."
#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:82
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
-msgstr ""
+msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
@@ -24386,72 +24421,72 @@ msgstr ""
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: frappe/model/delete_doc.py:78
msgid "Standard DocType can not be deleted."
-msgstr ""
+msgstr "Standardni DocType se ne može izbrisati."
#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr ""
+msgstr "Standardni DocType ne može imati standard ormat za ispise, koristi Prilagodi Formu"
#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
-msgstr ""
+msgstr "Standard nije Postavljeno"
#: frappe/core/page/permission_manager/permission_manager.js:132
msgid "Standard Permissions"
-msgstr ""
+msgstr "Standard Dozvole"
#: frappe/printing/doctype/print_format/print_format.py:75
msgid "Standard Print Format cannot be updated"
-msgstr ""
+msgstr "Standard Ispis Format ne može se ažurirati"
#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
-msgstr ""
+msgstr "Standard Ispis Stil ne može se promeniti. Kopiraj za uređivanje."
#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
-msgstr ""
+msgstr "Standard Izvještaji ne mogu se izbrisati"
#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
-msgstr ""
+msgstr "Standard Izvještaji ne mogu se uređivati"
#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr ""
+msgstr "Standardni Bočni Meni"
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
-msgstr ""
+msgstr "Standardne Web Forme ne mogu se mijenjati, umjesto toga kopiraj web formu."
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Standard rich text editor with controls"
-msgstr ""
+msgstr "Standard uređivač rich teksta sa kontrolama"
#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr ""
+msgstr "Standard uloge ne mogu se onemogućiti"
#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr ""
+msgstr "Standard Uloge ne mogu se preimenovati"
#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
-msgstr ""
+msgstr "Standard tip korisnika {0} ne može se izbrisati."
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
#: frappe/printing/page/print/print.js:296
#: frappe/printing/page/print/print.js:343
msgid "Start"
-msgstr ""
+msgstr "Počni"
#. Label of the start_date (Date) field in DocType 'Auto Repeat'
#. Label of the start_date (Date) field in DocType 'Audit Trail'
@@ -24462,61 +24497,61 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:409
#: frappe/website/doctype/web_page/web_page.json
msgid "Start Date"
-msgstr ""
+msgstr "Datum Početka"
#. Label of the start_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr ""
+msgstr "Datum Početka"
#: frappe/core/doctype/data_import/data_import.js:110
msgid "Start Import"
-msgstr ""
+msgstr "Počni Uvoz"
#: frappe/core/doctype/recorder/recorder_list.js:201
msgid "Start Recording"
-msgstr ""
+msgstr "Počni Snimanje"
#. Label of the birth_date (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Start Time"
-msgstr ""
+msgstr "Počni Vrijeme"
#: frappe/templates/includes/comments/comments.html:8
msgid "Start a new discussion"
-msgstr ""
+msgstr "Započni novu diskusiju"
#: frappe/core/doctype/data_export/exporter.py:22
msgid "Start entering data below this line"
-msgstr ""
+msgstr "Počni unositi podatke ispod ove linije"
#: frappe/printing/page/print_format_builder/print_format_builder.js:165
msgid "Start new Format"
-msgstr ""
+msgstr "Počni novi Format"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "StartTLS"
-msgstr ""
+msgstr "StartTLS"
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr ""
+msgstr "Započet"
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
-msgstr ""
+msgstr "Počelo u"
#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
-msgstr ""
+msgstr "Pokreće se Frappe..."
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr ""
+msgstr "Počinje"
#. Label of the state (Data) field in DocType 'Token Cache'
#. Label of the state (Link) field in DocType 'Workflow Document State'
@@ -24528,18 +24563,18 @@ msgstr ""
#: frappe/workflow/doctype/workflow_state/workflow_state.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "State"
-msgstr ""
+msgstr "Stanje"
#: frappe/public/js/workflow_builder/components/Properties.vue:24
msgid "State Properties"
-msgstr ""
+msgstr "Svojstva Stanja"
#. Label of the state (Data) field in DocType 'Address'
#. Label of the state (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr ""
+msgstr "Zemlja/Pokrajina"
#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
#. Label of the states (Table) field in DocType 'Customize Form'
@@ -24548,29 +24583,29 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr ""
+msgstr "Stanja"
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr ""
+msgstr "Statički parametri"
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
-msgstr ""
+msgstr "Statistika"
#. Label of the stats_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/form/dashboard.js:43
#: frappe/public/js/frappe/form/templates/form_dashboard.html:13
msgid "Stats"
-msgstr ""
+msgstr "Statistika"
#. Label of the stats_time_interval (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Stats Time Interval"
-msgstr ""
+msgstr "Vremenski Interval Statistike"
#. Label of the status (Select) field in DocType 'Auto Repeat'
#. Label of the status (Select) field in DocType 'Contact'
@@ -24623,130 +24658,130 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr ""
+msgstr "Status"
#: frappe/www/update-password.html:163
msgid "Status Updated"
-msgstr ""
+msgstr "Status Ažuriran"
#: frappe/email/doctype/email_queue/email_queue.js:37
msgid "Status Updated. The email will be picked up in the next scheduled run."
-msgstr ""
+msgstr "Status Ažuriran. E-pošta će biti preuzeta u sljedećem zakazanom izvođenju."
#: frappe/www/message.html:24
msgid "Status: {0}"
-msgstr ""
+msgstr "Status: {0}"
#. Label of the step (Link) field in DocType 'Onboarding Step Map'
#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr ""
+msgstr "Korak"
#. Label of the steps (Table) field in DocType 'Form Tour'
#. Label of the steps (Table) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr ""
+msgstr "Koraci"
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
-msgstr ""
+msgstr "Koraci za provjeru vaše prijave"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/public/js/frappe/form/grid_row.js:438
msgid "Sticky"
-msgstr ""
+msgstr "Sticky"
#: frappe/core/doctype/recorder/recorder_list.js:87
msgid "Stop"
-msgstr ""
+msgstr "Zaustavi"
#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Stopped"
-msgstr ""
+msgstr "Zaustavljeno"
#. Label of the db_storage_usage (Float) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Storage Usage (MB)"
-msgstr ""
+msgstr "Korištenje Pohrane (MB)"
#. Label of the top_db_tables (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Storage Usage By Table"
-msgstr ""
+msgstr "Korištenje Pohrane po Tabelama"
#. Label of the store_attached_pdf_document (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Store Attached PDF Document"
-msgstr ""
+msgstr "Pohrani priloženi PDF dokument"
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr ""
+msgstr "Pohranjuje JSON posljednjih poznatih verzija različitih instaliranih aplikacija. Koristi se za prikaz bilješki o izdanju."
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the datetime when the last reset password key was generated."
-msgstr ""
+msgstr "Pohranjuje datum i vrijeme kada je generisan zadnji ključ za poništavanje lozinke."
#: frappe/utils/password_strength.py:97
msgid "Straight rows of keys are easy to guess"
-msgstr ""
+msgstr "Ravne redove ključeva je lako pogoditi"
#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
-msgstr ""
+msgstr "Skini EXIF oznake sa učitanjh slika"
#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
-msgstr ""
+msgstr "Snažna"
#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
#. Label of the style (Select) field in DocType 'Workflow State'
#: frappe/website/doctype/web_page/web_page.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr ""
+msgstr "Stil"
#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr ""
+msgstr "Postavke Stila"
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange"
-msgstr ""
+msgstr "Stil predstavlja boju dugmeta: Uspjeh - Zelena, Opasno - Crvena, Inverzna - Crna, Primarna - Tamnoplava, Info - Svetlo Plava, Upozorenje - Narandžasta"
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr ""
+msgstr "Šablon Stila"
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr ""
+msgstr "Podvaluta. Za npr. \"Cent\""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr ""
+msgstr "Poddomenu obezbjeđuje erpnext.com"
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr ""
+msgstr "Poddomena"
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -24768,7 +24803,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:116
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr ""
+msgstr "Predmet"
#. Label of the subject_field (Data) field in DocType 'DocType'
#. Label of the subject_field (Data) field in DocType 'Customize Form'
@@ -24777,16 +24812,16 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr ""
+msgstr "Polje Predmeta"
#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr ""
+msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta"
#. Name of a DocType
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
-msgstr ""
+msgstr "Red Podnošenja"
#. Label of the submit (Check) field in DocType 'Custom DocPerm'
#. Label of the submit (Check) field in DocType 'DocPerm'
@@ -24802,70 +24837,70 @@ msgstr ""
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
-msgstr ""
+msgstr "Rezerviši"
#: frappe/public/js/frappe/list/list_view.js:2086
msgctxt "Button in list view actions menu"
msgid "Submit"
-msgstr ""
+msgstr "Rezerviši"
#: frappe/website/doctype/web_form/templates/web_form.html:47
msgctxt "Button in web form"
msgid "Submit"
-msgstr ""
+msgstr "Pošalji"
#: frappe/public/js/frappe/ui/dialog.js:62
msgctxt "Primary action in dialog"
msgid "Submit"
-msgstr ""
+msgstr "Pošalji"
#: frappe/public/js/frappe/ui/messages.js:97
msgctxt "Primary action of prompt dialog"
msgid "Submit"
-msgstr ""
+msgstr "Pošalji"
#: frappe/public/js/frappe/desk.js:227
msgctxt "Submit password for Email Account"
msgid "Submit"
-msgstr ""
+msgstr "Potvrdi"
#. Label of the submit_after_import (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Submit After Import"
-msgstr ""
+msgstr "Rezerviši Nakon Uvoza"
#: frappe/core/page/permission_manager/permission_manager_help.html:39
msgid "Submit an Issue"
-msgstr ""
+msgstr "Prijavi Slučaj"
#: frappe/website/doctype/web_form/templates/web_form.html:156
msgctxt "Button in web form"
msgid "Submit another response"
-msgstr ""
+msgstr "Podnesi drugi odgovor"
#. Label of the button_label (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Submit button label"
-msgstr ""
+msgstr "Oznaka Dugmeta"
#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
-msgstr ""
+msgstr "Rezerviši pri Kreiranju"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
-msgstr ""
+msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr ""
+msgstr "Pošalji ovaj dokument da potvrdite"
#: frappe/public/js/frappe/list/list_view.js:2091
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
-msgstr ""
+msgstr "Pošalji {0} dokumenata?"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -24873,36 +24908,36 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:539
#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
-msgstr ""
+msgstr "Rezervisano"
#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
-msgstr ""
+msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt. Prijelazni red {0}"
#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
-msgstr ""
+msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt tokom prijelaza iz {0} Stanja u {1} Stanje"
#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
-msgstr ""
+msgstr "Rezerviše se"
#: frappe/desk/doctype/bulk_update/bulk_update.py:88
msgid "Submitting {0}"
-msgstr ""
+msgstr "Pošalji {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr ""
+msgstr "Filijala"
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#. Label of the subtitle (Data) field in DocType 'Blog Settings'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Subtitle"
-msgstr ""
+msgstr "Podnaziv"
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
#. Option for the 'Status' (Select) field in DocType 'Data Import'
@@ -24924,96 +24959,96 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Success"
-msgstr ""
+msgstr "Uspjeh"
#. Name of a DocType
#: frappe/core/doctype/success_action/success_action.json
msgid "Success Action"
-msgstr ""
+msgstr "Radnja Uspjeha"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr ""
+msgstr "Poruka Uspjeha"
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Success URI"
-msgstr ""
+msgstr "URI Uspjeha"
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr ""
+msgstr "URL uspjeha"
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success message"
-msgstr ""
+msgstr "Poruka Uspjeha"
#. Label of the success_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success title"
-msgstr ""
+msgstr "Naziv Uspjeha"
#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
-msgstr ""
+msgstr "Uspjeh! Spremni ste 👍"
#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
-msgstr ""
+msgstr "Broj Uspješnih Poslova"
#: frappe/model/workflow.py:307
msgid "Successful Transactions"
-msgstr ""
+msgstr "Uspješne Transakcije"
#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
-msgstr ""
+msgstr "Uspješno: {0} do {1}"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr ""
+msgstr "Uspješno Ažurirano"
#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
-msgstr ""
+msgstr "Uspješno uvezeno {0}"
#: frappe/core/doctype/data_import/data_import.js:144
msgid "Successfully imported {0} out of {1} records."
-msgstr ""
+msgstr "Uspješno uvezeno {0} od {1} zapisa."
#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
-msgstr ""
+msgstr "Uspješno poništen status introdukcije za sve korisnike."
#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr ""
+msgstr "Uspješno ažurirani prijevodi"
#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
-msgstr ""
+msgstr "Uspješno ažurirano {0}"
#: frappe/core/doctype/data_import/data_import.js:149
msgid "Successfully updated {0} out of {1} records."
-msgstr ""
+msgstr "Uspješno ažurirano {0} od {1} zapisa."
#: frappe/core/doctype/recorder/recorder.js:15
msgid "Suggest Optimizations"
-msgstr ""
+msgstr "Predloži Optimizacije"
#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Suggested Indexes"
-msgstr ""
+msgstr "Predloženi Indeksi"
#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
-msgstr ""
+msgstr "Predloženo Korisničko Ime: {0}"
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
@@ -25022,15 +25057,15 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:20
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#: frappe/public/js/frappe/ui/group_by/group_by.js:337
msgid "Sum of {0}"
-msgstr ""
+msgstr "Suma od {0}"
#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
-msgstr ""
+msgstr "Sažetak"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -25046,24 +25081,24 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Sunday"
-msgstr ""
+msgstr "Nedjelja"
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr ""
+msgstr "Obustavi Slanje"
#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
-msgstr ""
+msgstr "Promijeni Kameru"
#: frappe/public/js/frappe/desk.js:96
#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
-msgstr ""
+msgstr "Promijeni Temu"
#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr ""
+msgstr "Promjeni na Radnu Površinu"
#: frappe/public/js/frappe/list/list_sidebar.js:319
msgid "Switch to Frappe CRM for smarter sales"
@@ -25071,127 +25106,127 @@ msgstr "Prijeđite na Frappe CRM za pametniju prodaju"
#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
-msgstr ""
+msgstr "Mijenja se Kamera"
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr ""
+msgstr "Simbol"
#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
#. Label of the sync (Section Break) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr ""
+msgstr "Sinkronizacija"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr ""
+msgstr "Sinhroniziraj Kalendar"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr ""
+msgstr "Sinhroniziraj Kontakte"
#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Sync events from Google as public"
-msgstr ""
+msgstr "Sinhroniziraj događaje s Googlea kao javne"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr ""
+msgstr "Sinhronizacija pri Migraciji"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
-msgstr ""
+msgstr "Token za sinhronizaciju je nevažeći i vraćen je na standard postavke. Ponovi sinhronizaciju."
#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr ""
+msgstr "Sinhroniziraj sa Google Kalendarom"
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr ""
+msgstr "Sinhroniziraj s Google Kontaktima"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
-msgstr ""
+msgstr "Sinhronizacija {0} Polja"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
-msgstr ""
+msgstr "Sinhronizovana Polja"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr ""
+msgstr "Sinhronizacija u toku"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr ""
+msgstr "Sinhronizira se {0} od {1}"
#: frappe/utils/data.py:2528
msgid "Syntax Error"
-msgstr ""
+msgstr "Greška Sintakse"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr ""
+msgstr "Sistem"
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr ""
+msgstr "Sistemska Konzola"
#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
-msgstr ""
+msgstr "Sistemski Generisana Polja ne mogu se preimenovati"
#. Label of a standard help item
#. Type: Route
#: frappe/hooks.py
msgid "System Health"
-msgstr ""
+msgstr "Status Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "System Health Report"
-msgstr ""
+msgstr "Izvještaj Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
msgid "System Health Report Errors"
-msgstr ""
+msgstr "Greške Izvještaja Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "System Health Report Failing Jobs"
-msgstr ""
+msgstr "Izvještaj Neuspješnih Poslova Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "System Health Report Queue"
-msgstr ""
+msgstr "Red Čekanja Izvještaja Stanja sSistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "System Health Report Tables"
-msgstr ""
+msgstr "Tabele Izvještaja Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "System Health Report Workers"
-msgstr ""
+msgstr "Status Sistema Izvještaji Radnici"
#. Label of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "System Logs"
-msgstr ""
+msgstr "Sistemski Zapisnici"
#. Name of a role
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
@@ -25342,33 +25377,33 @@ msgstr "Upravitelj Sistema"
#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
-msgstr ""
+msgstr "Privilegije Upravitelja Sistema su obevezne."
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr ""
+msgstr "Sistemsko Obavještenje"
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr ""
+msgstr "Sistemska Stranica"
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr ""
+msgstr "Postavke Sistema"
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr ""
+msgstr "Upravitelji Sistema dopušteni su prema standard postavkama"
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
msgid "T"
-msgstr ""
+msgstr "T"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25377,11 +25412,11 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Tab Break"
-msgstr ""
+msgstr "Prijelom Kartice"
#: frappe/public/js/form_builder/components/Tabs.vue:135
msgid "Tab Label"
-msgstr ""
+msgstr "Oznaka Kartice"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
@@ -25398,30 +25433,30 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr ""
+msgstr "Prijelom Tabele"
#: frappe/core/doctype/version/version_view.html:72
msgid "Table Field"
-msgstr ""
+msgstr "Polje Tabele"
#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
-msgstr ""
+msgstr "Naziv Polja Tabele"
#: frappe/core/doctype/doctype/doctype.py:1203
msgid "Table Fieldname Missing"
-msgstr ""
+msgstr "Nedostaje Naziv Polja Tabele"
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr ""
+msgstr "HTML Tabele"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25430,34 +25465,34 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr ""
+msgstr "Višestruki Odabir Tabele"
#: frappe/custom/doctype/customize_form/customize_form.js:229
msgid "Table Trimmed"
-msgstr ""
+msgstr "Tabela Optimizirana"
#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
-msgstr ""
+msgstr "Tabela Ažurirana"
#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
-msgstr ""
+msgstr "Tabela {0} ne može biti prazna"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
-msgstr ""
+msgstr "Tabloid"
#. Name of a DocType
#: frappe/desk/doctype/tag/tag.json
msgid "Tag"
-msgstr ""
+msgstr "Oznaka"
#. Name of a DocType
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Tag Link"
-msgstr ""
+msgstr "Veza Oznake"
#: frappe/model/meta.py:59
#: frappe/public/js/frappe/form/templates/form_sidebar.html:81
@@ -25469,30 +25504,30 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:133
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
msgid "Tags"
-msgstr ""
+msgstr "Oznake"
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
-msgstr ""
+msgstr "Uslikaj"
#. Label of the target (Data) field in DocType 'Portal Menu Item'
#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr ""
+msgstr "Cilj"
#: frappe/desk/doctype/todo/todo_calendar.js:19
#: frappe/desk/doctype/todo/todo_calendar.js:25
msgid "Task"
-msgstr ""
+msgstr "Zadatak"
#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
#. Label of the team_members (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
#: frappe/www/about.html:45
msgid "Team Members"
-msgstr ""
+msgstr "Članovi Tima"
#. Label of the team_members_heading (Data) field in DocType 'About Us
#. Settings'
@@ -25504,13 +25539,13 @@ msgstr "Naslov Članova Tima"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Subtitle"
-msgstr ""
+msgstr "Podnaslov Članova Tma"
#. Label of the telemetry_section (Section Break) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
-msgstr ""
+msgstr "Telemetrija"
#. Label of the template (Link) field in DocType 'Auto Repeat'
#. Label of the template (Code) field in DocType 'Address Template'
@@ -25521,55 +25556,55 @@ msgstr ""
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr ""
+msgstr "Šablon"
#: frappe/core/doctype/data_import/importer.py:483
#: frappe/core/doctype/data_import/importer.py:610
msgid "Template Error"
-msgstr ""
+msgstr "Greška Šablona"
#. Label of the template_file (Data) field in DocType 'Print Format Field
#. Template'
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Template File"
-msgstr ""
+msgstr "Datoteka Šablona"
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr ""
+msgstr "Šablon Opcije"
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr ""
+msgstr "Šablon Upozorenja"
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
-msgstr ""
+msgstr "Šabloni"
#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
-msgstr ""
+msgstr "Privremeno Onemogućeno"
#: frappe/core/doctype/translation/test_translation.py:47
#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
-msgstr ""
+msgstr "Test Podaci"
#. Label of the test_job_id (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Test Job ID"
-msgstr ""
+msgstr "ID Test Posla"
#: frappe/core/doctype/translation/test_translation.py:49
#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
-msgstr ""
+msgstr "Test Španski"
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
-msgstr ""
+msgstr "Test Mapa"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25582,22 +25617,22 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr ""
+msgstr "Poravnanje Teksta"
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr ""
+msgstr "Boja Teksta"
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr ""
+msgstr "Tekstualni Sadržaj"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25608,126 +25643,132 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr ""
+msgstr "Uređivač Teksta"
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr ""
+msgstr "Hvala vam"
#: frappe/www/contact.py:39
msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
"Your query:\n\n"
"{0}"
-msgstr ""
+msgstr "Hvala vam što ste nam se obratili. Javit ćemo Vam se u najkraćem mogućem roku.\n\n\n"
+"Vaš upit:\n\n"
+"{0}"
#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
-msgstr ""
+msgstr "Hvala vam što ste potrošili svoje dragocjeno vrijeme da ispunite ovaj obrazac"
#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr ""
+msgstr "Hvala vam na poruci e-pošte"
#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr ""
+msgstr "Hvala vam na povratnim informacijama!"
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
-msgstr ""
+msgstr "Hvala vam na poruci"
#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
-msgstr ""
+msgstr "Hvala"
#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
-msgstr ""
+msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno."
#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
-msgstr ""
+msgstr "CSV format razlikuje velika i mala slova"
#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "The Client ID obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
-msgstr ""
+msgstr "ID klijenta dobijen sa Google Cloud Console pod \n"
+"\"API & usluge\" > \"Akreditivi\"\n"
+""
#: frappe/email/doctype/notification/notification.py:201
msgid "The Condition '{0}' is invalid"
-msgstr ""
+msgstr "Uvjet '{0}' je nevažeći"
#: frappe/core/doctype/file/file.py:208
msgid "The File URL you've entered is incorrect"
-msgstr ""
+msgstr "URL Datoteke koji ste unijeli nije tačan"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
msgid "The Next Scheduled Date cannot be later than the End Date."
-msgstr ""
+msgstr "Sljedeći zakazani datum ne može biti kasniji od datuma završetka."
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
-msgstr ""
+msgstr "Ključ URL Guranog Relejnog Servera (`push_relay_server_url`) nedostaje u konfiguraciji vaše stranice"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
-msgstr ""
+msgstr "Zapis Korisnika za ovaj zahtjev je automatski obrisan zbog neaktivnosti administratora sistema."
#: frappe/public/js/frappe/desk.js:162
msgid "The application has been updated to a new version, please refresh this page"
-msgstr ""
+msgstr "Aplikacija je ažurirana na novu verziju, osvježi ovu stranicu"
#. Description of the 'Application Name' (Data) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "The application name will be used in the Login page."
-msgstr ""
+msgstr "Naziv aplikacije će se koristiti na stranici za prijavu."
#: frappe/public/js/frappe/views/interaction.js:323
msgid "The attachments could not be correctly linked to the new document"
-msgstr ""
+msgstr "Prilozi se ne mogu ispravno povezati s novim dokumentom"
#. Description of the 'API Key' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "The browser API key obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
-msgstr ""
+msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod \n"
+"\"API-ji & Servisi\" > \"Akreditivi\"\n"
+""
#: frappe/database/database.py:475
msgid "The changes have been reverted."
-msgstr ""
+msgstr "Promjene su vraćene."
#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
-msgstr ""
+msgstr "Kolona {0} ima {1} različite formate datuma. Automatsko postavljanje {2} kao zadanog formata jer je najčešći. Molimo promijenite ostale vrijednosti u ovoj koloni u ovaj format."
#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
-msgstr ""
+msgstr "Komentar ne može biti prazan"
#: frappe/templates/emails/workflow_action.html:9
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
-msgstr ""
+msgstr "Sadržaj ove e-pošte je strogo povjerljiv. Molimo vas da nikome ne prosljeđujete ovu e-poštu."
#: frappe/public/js/frappe/list/list_view.js:658
msgid "The count shown is an estimated count. Click here to see the accurate count."
-msgstr ""
+msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj."
#. Description of the 'Code' (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "The country's ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "ISO 3166 ALPHA-2 kod zemlje."
#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
-msgstr ""
+msgstr "Dokument nije mogao biti ispravno dodijeljen"
#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
-msgstr ""
+msgstr "Dokument je dodijeljen {0}"
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
@@ -25736,126 +25777,128 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
+msgstr "Odabrani tip dokumenta je podređena tabela, tako da je obavezan tip nadređenog dokumenta."
#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
-msgstr ""
+msgstr "Polje {0} je obavezno"
#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
-msgstr ""
+msgstr "Naziv polja koje ste naveli u Priloženo polju je nevažeći"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
msgid "The following Assignment Days have been repeated: {0}"
-msgstr ""
+msgstr "Sljedeći Dani Dodjele su ponovljeni: {0}"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
-msgstr ""
+msgstr "Sljedeća Skripta Zaglavlja će dodati trenutni datum elementu u 'HTML-u zaglavlja' s klasom 'header-content'"
#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
-msgstr ""
+msgstr "Sljedeće vrijednosti su nevažeće: {0}. Vrijednosti moraju biti jedna od {1}"
#: frappe/core/doctype/data_import/importer.py:1043
msgid "The following values do not exist for {0}: {1}"
-msgstr ""
+msgstr "Sljedeće vrijednosti ne postoje za {0}: {1}"
#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
-msgstr ""
+msgstr "Ograničenje nije postavljeno za tip korisnika {0} u konfiguracijskoj datoteci stranice."
#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
-msgstr ""
+msgstr "Veza će isteći za {0} minuta"
#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
-msgstr ""
+msgstr "Veza na koju se pokušavate prijaviti je nevažeća ili je istekla."
#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
-msgstr ""
+msgstr "Meta opis je HTML atribut koji pruža kratak sažetak web stranice. Pretraživači kao što je Google često prikazuju meta opis u rezultatima pretrage, što može uticati na stopu klikanja."
#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
-msgstr ""
+msgstr "Meta slika je jedinstvena slika koja predstavlja sadržaj stranice. Slike za ovu karticu trebaju biti najmanje 280px u širinu i najmanje 150px u visinu."
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr ""
+msgstr "Naziv koji će se pojaviti u Google Kalendaru"
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
-msgstr ""
+msgstr "Sljedeća introdukcija će početi od mjesta gdje je korisnik stao."
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
-msgstr ""
+msgstr "Broj sekundi do isteka zahtjeva"
#: frappe/www/update-password.html:88
msgid "The password of your account has expired."
-msgstr ""
+msgstr "Lozinka vašeg računa je istekla."
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
-msgstr ""
+msgstr "Proces brisanja {0} podataka povezanih sa {1} je pokrenut."
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "The project number obtained from Google Cloud Console under \n"
"\"IAM & Admin\" > \"Settings\"\n"
""
-msgstr ""
+msgstr "Broj projekta dobijen od Google Cloud Console pod \n"
+"\"IAM & Admin\" > \"Postavke\"\n"
+""
#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
-msgstr ""
+msgstr "Veza za poništavanje lozinke je istekla"
#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
-msgstr ""
+msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr ""
+msgstr "Resurs koji tražite nije dostupan"
#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
-msgstr ""
+msgstr "Uloga {0} bi trebala biti prilagođena uloga."
#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
-msgstr ""
+msgstr "Odabrani dokument {0} nije {1}."
#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
-msgstr ""
+msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
#: frappe/core/page/permission_manager/permission_manager_help.html:9
msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
-msgstr ""
+msgstr "Sistem pruža mnogo unapred definisanih uloga. Možete dodati nove uloge za postavljanje finijih dozvola."
#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
-msgstr ""
+msgstr "Prekoračeno je ograničenje ukupnog broja tipova korisničkih dokumenata."
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
-msgstr ""
+msgstr "Vrijednost koju ste zalijepili bila je od {0} znakova. Maksimalni dopušteni broj znakova je {1}."
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr ""
+msgstr "Webhook će se pokrenuti ako je ovaj izraz istinit"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
-msgstr ""
+msgstr "{0} je već na automatskom ponavljanju {1}"
#. Label of the section_break_6 (Section Break) field in DocType 'Website
#. Settings'
@@ -25864,210 +25907,211 @@ msgstr ""
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr ""
+msgstr "Tema"
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
-msgstr ""
+msgstr "Tema Promjenjena"
#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
#. Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr ""
+msgstr "Konfiguracija Teme"
#. Label of the theme_url (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr ""
+msgstr "URL Teme"
#: frappe/workflow/doctype/workflow/workflow.js:125
msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
-msgstr ""
+msgstr "Postoje dokumenti koji imaju stanja radnog toka koja ne postoje u ovom radnom toku. Preporučuje se da ta stanja dodate u radni tok i promijenite njihova stanja prije uklanjanja ovih stanja."
#: frappe/public/js/frappe/ui/notifications/notifications.js:442
msgid "There are no upcoming events for you."
-msgstr ""
+msgstr "Nema predstojećih događaja za vas."
#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
-msgstr ""
+msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!"
#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
-msgstr ""
+msgstr "U redu čekanja već postoji {0} s istim filterima:"
#: frappe/website/doctype/web_form/web_form.js:81
#: frappe/website/doctype/web_form/web_form.js:317
msgid "There can be only 9 Page Break fields in a Web Form"
-msgstr ""
+msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice"
#: frappe/core/doctype/doctype/doctype.py:1443
msgid "There can be only one Fold in a form"
-msgstr ""
+msgstr "U obrascu može postojati samo jedan preklop"
#: frappe/contacts/doctype/address/address.py:183
msgid "There is an error in your Address Template {0}"
-msgstr ""
+msgstr "Postoji greška u vašem šablonu adrese {0}"
#: frappe/core/doctype/data_export/exporter.py:162
msgid "There is no data to be exported"
-msgstr ""
+msgstr "Nema podataka za izvoz"
#: frappe/public/js/frappe/ui/notifications/notifications.js:492
msgid "There is nothing new to show you right now."
-msgstr ""
+msgstr "Trenutno nema ništa novo za pokazati."
#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr ""
+msgstr "Postoji neki problem sa urlom datoteke: {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
-msgstr ""
+msgstr "Postoji {0} s istim filterima već u redu čekanja:"
#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "There must be atleast one permission rule."
-msgstr ""
+msgstr "Mora postojati barem jedno pravilo dozvole."
#: frappe/www/error.py:17
msgid "There was an error building this page"
-msgstr ""
+msgstr "Došlo je do greške pri izradi ove stranice"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
-msgstr ""
+msgstr "Došlo je do greške prilikom spremanja filtera"
#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr ""
+msgstr "Bilo je grešaka"
#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
-msgstr ""
+msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo."
#: frappe/public/js/frappe/views/communication.js:837
msgid "There were errors while sending email. Please try again."
-msgstr ""
+msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo."
#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr ""
+msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru"
#. Description of the 'Announcement Widget' (Text Editor) field in DocType
#. 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "These announcements will appear inside a dismissible alert below the Navbar."
-msgstr ""
+msgstr "Te će se obavijesti pojaviti unutar upozorenja koje se može odbaciti ispod navigacijske trake."
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
-msgstr ""
+msgstr "Ove su postavke potrebne ako se koristi 'Custom' LDAP imenik"
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr ""
+msgstr "Ove vrijednosti će se automatski ažurirati u transakcijama, a također će biti korisne za ograničavanje dozvola za ovog korisnika na transakcije koje sadrže ove vrijednosti."
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr ""
+msgstr "Aplikacije Trećih Strana"
#. Label of the third_party_authentication (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr ""
+msgstr "Autentifikacija Trećeih Strane"
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr ""
+msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
-msgstr ""
+msgstr "Ova Oglasna Tabla će biti privatna"
#: frappe/public/js/frappe/ui/filters/filter.js:666
msgid "This Month"
-msgstr ""
+msgstr "Ovaj Mjesec"
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
-msgstr ""
+msgstr "Ovo Tromjesečje"
#: frappe/public/js/frappe/ui/filters/filter.js:662
msgid "This Week"
-msgstr ""
+msgstr "Ovaj Tjedan"
#: frappe/public/js/frappe/ui/filters/filter.js:674
msgid "This Year"
-msgstr ""
+msgstr "Ove Godine"
#: frappe/custom/doctype/customize_form/customize_form.js:220
msgid "This action is irreversible. Do you wish to continue?"
-msgstr ""
+msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
-msgstr ""
+msgstr "Ova radnja je dozvoljena samo za {}"
#: frappe/public/js/frappe/form/toolbar.js:117
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
-msgstr ""
+msgstr "Ovo se ne može poništiti"
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr ""
+msgstr "Ova kartica će biti dostupna svim korisnicima ako je ovo podešeno"
#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "This chart will be available to all Users if this is set"
-msgstr ""
+msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno"
#: frappe/custom/doctype/customize_form/customize_form.js:212
msgid "This doctype has no orphan fields to trim"
-msgstr ""
+msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
#: frappe/core/doctype/doctype/doctype.py:1054
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
-msgstr ""
+msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena."
#: frappe/model/delete_doc.py:112
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
-msgstr ""
+msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena."
#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr ""
+msgstr "Ovaj dokument je izmijenjen nakon slanja e-pošte."
#: frappe/public/js/frappe/form/form.js:1305
msgid "This document has unsaved changes which might not appear in final PDF. \n"
+"{\n"
+"\"value\": value,\n"
+"\"fieldtype\": \"Valuta\",\n"
+"\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\"route\": [\"query-report\", \"Dopušteni dokumenti za korisnika\"]\n"
+"}
Consider saving the document before printing."
-msgstr ""
+msgstr "Ovaj dokument ima nespremljene promjene koje se možda neće pojaviti u konačnom PDF-u.
Razmislite o spremanju dokumenta prije ispisa."
#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
-msgstr ""
+msgstr "Ovaj dokument je već izmijenjen, ne možete ga ponovo mijenjati"
#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
-msgstr ""
+msgstr "Ovaj dokument je trenutno zaključan i na čekanju za izvršenje. Molimo pokušajte ponovo nakon nekog vremena."
#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
-msgstr ""
+msgstr "Ova poruka e-pošte je automatski generisana"
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
msgid "This feature can not be used as dependencies are missing.\n"
"\t\t\t\tPlease contact your system manager to enable this by installing pycups!"
-msgstr ""
+msgstr "Ova funkcija se ne može koristiti jer nedostaju zavisnosti.\n"
+"\t\t\t\tMolimo kontaktirajte svog upravitelja sistema da omogući ovo instaliranjem pycups-a!"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "This feature is brand new and still experimental"
-msgstr ""
+msgstr "Ova funkcija je potpuno nova i još uvijek eksperimentalna"
#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
#. Field'
@@ -26076,181 +26120,184 @@ msgid "This field will appear only if the fieldname defined here has value OR th
"myfield\n"
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
-msgstr ""
+msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrijednost ILI su pravila istinita (primjeri):\n"
+"moje polje\n"
+"eval:doc.myfield=='Moja vrijednost'\n"
+"eval:doc.age>18"
#: frappe/core/doctype/file/file.py:500
msgid "This file is attached to a protected document and cannot be deleted."
-msgstr ""
+msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati."
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
-msgstr ""
+msgstr "Ova je datoteka javna i svatko joj može pristupiti, čak i bez prijave. Označite je privatnom da biste ograničili pristup."
#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
-msgstr ""
+msgstr "Ova datoteka je javna. Može joj se pristupiti bez autentifikacije."
#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
-msgstr ""
+msgstr "Ova forma je izmijenjena nakon što ste je učitali"
#: frappe/public/js/frappe/form/form.js:2257
msgid "This form is not editable due to a Workflow."
-msgstr ""
+msgstr "Ova formu nije moguće uređivati zbog Radnog Toka."
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr ""
+msgstr "Ovaj format se koristi ako format specifičan za zemlju nije pronađen"
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
msgid "This geolocation provider is not supported yet."
-msgstr ""
+msgstr "Ovaj poslužitelj geolokacije još nije podržan."
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr ""
+msgstr "Ovo ide iznad projekcije slajdova."
#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
-msgstr ""
+msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
-msgstr ""
+msgstr "Ovo je 10 najčešćih lozinki."
#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
-msgstr ""
+msgstr "Ovo je 100 najčešćih lozinki."
#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
-msgstr ""
+msgstr "Ovo je vrlo česta lozinka."
#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
-msgstr ""
+msgstr "Ovo je virtuelni tip dokumenta i podaci se periodično brišu."
#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
-msgstr ""
+msgstr "Ovo je automatski generisan odgovor"
#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog
#. Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "This is an example Google SERP Preview."
-msgstr ""
+msgstr "Ovo je primjer Google SERP Pregleda."
#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
-msgstr ""
+msgstr "Ovo je slično uobičajenoj lozinki."
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr ""
+msgstr "Ovo je broj posljednje kreirane transakcije s ovim prefiksom"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
-msgstr ""
+msgstr "Ova veza je već aktivirana radi verifikacije."
#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
-msgstr ""
+msgstr "Ova veza nije važeća ili je istekla. Provjerite jeste li ispravno zalijepili."
#: frappe/printing/page/print/print.js:410
msgid "This may get printed on multiple pages"
-msgstr ""
+msgstr "Ovo se može ispisati na više stranica"
#: frappe/utils/goal.py:109
msgid "This month"
-msgstr ""
+msgstr "Ovog mjeseca"
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
-msgstr ""
+msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
#: frappe/templates/emails/auto_email_report.html:57
msgid "This report was generated on {0}"
-msgstr ""
+msgstr "Ovaj izvještaj je generisan {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
-msgstr ""
+msgstr "Ovaj izvještaj je generisan {0}."
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr ""
+msgstr "Ovaj zahtjev korisnik još nije odobrio."
#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
-msgstr ""
+msgstr "Ova stranica je u načinu samo za čitanje, puna funkcionalnost će uskoro biti vraćena."
#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
-msgstr ""
+msgstr "Ova stranica radi u programerskom modu. Svaka promjena napravljena ovdje bit će ažurirana u kodu."
#: frappe/www/attribution.html:11
msgid "This software is built on top of many open source packages."
-msgstr ""
+msgstr "Ovaj softver je izgrađen pomoću mnogih open source paketa."
#: frappe/website/doctype/web_page/web_page.js:71
msgid "This title will be used as the title of the webpage as well as in meta tags"
-msgstr ""
+msgstr "Ovaj naslov će se koristiti kao naslov web stranice kao i u meta oznakama-tagovima"
#: frappe/public/js/frappe/form/controls/base_input.js:129
msgid "This value is fetched from {0}'s {1} field"
-msgstr ""
+msgstr "Ova se vrijednost preuzima iz {0} polja {1}"
#. Description of the 'Max Report Rows' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "This value specifies the max number of rows that can be rendered in report view. "
-msgstr ""
+msgstr "Ova vrijednost određuje maksimalan broj redaka koji se mogu prikazati u prikazu izvješća. "
#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
-msgstr ""
+msgstr "Ovo će se automatski generisati kada objavite stranicu, možete i sami unijeti rutu ako želite"
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr ""
+msgstr "Ovo će biti prikazano u modalnom obliku nakon rutiranja"
#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown to the user in a dialog after routing to the report"
-msgstr ""
+msgstr "Ovo će biti prikazano korisniku u dijalogu nakon usmjeravanja na izvještaj"
#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
-msgstr ""
+msgstr "Ovo će odjaviti {0} sa svih drugih uređaja"
#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
-msgstr ""
+msgstr "Ovo će trajno ukloniti vaše podatke."
#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
-msgstr ""
+msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jeste li sigurni?"
#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
-msgstr ""
+msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? "
#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
-msgstr ""
+msgstr "Prigušeno"
#. Label of the thumbnail_url (Small Text) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr ""
+msgstr "URL Sličice"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -26266,7 +26313,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Thursday"
-msgstr ""
+msgstr "Četvrtak"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the time (Datetime) field in DocType 'Recorder'
@@ -26283,39 +26330,39 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
-msgstr ""
+msgstr "Vrijeme"
#. Label of the time_format (Select) field in DocType 'Language'
#. Label of the time_format (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr ""
+msgstr "Format Vremena"
#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Interval"
-msgstr ""
+msgstr "Vremenski Interval"
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr ""
+msgstr "Vremenske Serije Imenovanja"
#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series Based On"
-msgstr ""
+msgstr "Vremenske Serije Imenovanja na osnovu"
#. Label of the time_taken (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Time Taken"
-msgstr ""
+msgstr "Proteklo Vrijeme"
#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Time Window (Seconds)"
-msgstr ""
+msgstr "Vremenski Prozor (Sekunde)"
#. Label of the time_zone (Select) field in DocType 'System Settings'
#. Label of the time_zone (Autocomplete) field in DocType 'User'
@@ -26325,101 +26372,101 @@ msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:407
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
-msgstr ""
+msgstr "Vremenska Zona"
#. Label of the time_zones (Text) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr ""
+msgstr "Vremenske Zone"
#. Label of the time_format (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr ""
+msgstr "Format Vremena"
#. Label of the time_in_queries (Float) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Time in Queries"
-msgstr ""
+msgstr "Vrijeme u Upitima"
#. Description of the 'Expiry time of QR Code Image Page' (Int) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time in seconds to retain QR code image on server. Min:240"
-msgstr ""
+msgstr "Vrijeme u sekundama za zadržavanje slike QR koda na serveru. Min:240"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
-msgstr ""
+msgstr "Vremenske Serije Imenovanja na osnovu je obevezna za kreiranje grafikona nadzorne table"
#: frappe/public/js/frappe/form/controls/time.js:124
msgid "Time {0} must be in format: {1}"
-msgstr ""
+msgstr "Vrijeme {0} mora biti u formatu: {1}"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Timed Out"
-msgstr ""
+msgstr "Isteklo"
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
-msgstr ""
+msgstr "Timeless Night"
#. Label of the timeline (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Timeline"
-msgstr ""
+msgstr "Vremenska Linija"
#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline DocType"
-msgstr ""
+msgstr "Vremenska Linija DocType"
#. Label of the timeline_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr ""
+msgstr "Polje Vremenske Linije"
#. Label of the timeline_links_sections (Section Break) field in DocType
#. 'Communication'
#. Label of the timeline_links (Table) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Timeline Links"
-msgstr ""
+msgstr "Veze Vremenske Linije"
#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline Name"
-msgstr ""
+msgstr "Naziv Vremenske Linije"
#: frappe/core/doctype/doctype/doctype.py:1538
msgid "Timeline field must be a Link or Dynamic Link"
-msgstr ""
+msgstr "Polje Vremenske Linije mora biti veza ili Dinamička Veza"
#: frappe/core/doctype/doctype/doctype.py:1534
msgid "Timeline field must be a valid fieldname"
-msgstr ""
+msgstr "Polje vremenske linije mora biti važeće ime polja"
#. Label of the timeout (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
-msgstr ""
+msgstr "Vrijeme Isteklo"
#. Label of the timeout (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Timeout (In Seconds)"
-msgstr ""
+msgstr "Vrijeme Isteklo (u Sekundama)"
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Timeseries"
-msgstr ""
+msgstr "Vremenske Serije Imenovanja"
#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:28
msgid "Timespan"
-msgstr ""
+msgstr "Vremenski Razmak"
#. Label of the timestamp (Datetime) field in DocType 'Access Log'
#. Label of the timestamp (Datetime) field in DocType 'Transaction Log'
@@ -26427,11 +26474,11 @@ msgstr ""
#: frappe/core/doctype/transaction_log/transaction_log.json
#: frappe/core/report/transaction_log_report/transaction_log_report.py:112
msgid "Timestamp"
-msgstr ""
+msgstr "Vremenska Oznaka"
#: frappe/desk/doctype/system_console/system_console.js:41
msgid "Tip: Try the new dropdown console using"
-msgstr ""
+msgstr "Savjet: Isprobaj novu konzolu pomoću"
#. Label of the title (Data) field in DocType 'DocType State'
#. Label of the method (Data) field in DocType 'Error Log'
@@ -26483,68 +26530,70 @@ msgstr ""
#: frappe/website/doctype/website_sidebar/website_sidebar.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Title"
-msgstr ""
+msgstr "Naziv"
#. Label of the title_field (Data) field in DocType 'DocType'
#. Label of the title_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr ""
+msgstr "Polje Naziva"
#. Label of the title_prefix (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr ""
+msgstr "Prefiks Naziva"
#: frappe/core/doctype/doctype/doctype.py:1475
msgid "Title field must be a valid fieldname"
-msgstr ""
+msgstr "Polje Naziva mora biti važeće ime polja"
#: frappe/website/doctype/web_page/web_page.js:70
msgid "Title of the page"
-msgstr ""
+msgstr "Naziv stranice"
#. Label of the recipients (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
-msgstr ""
+msgstr "Za"
#: frappe/public/js/frappe/views/communication.js:53
msgctxt "Email Recipients"
msgid "To"
-msgstr ""
+msgstr "Do"
#. Label of the to_date (Date) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/website/report/website_analytics/website_analytics.js:14
msgid "To Date"
-msgstr ""
+msgstr "Do Datuma"
#. Label of the to_date_field (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "To Date Field"
-msgstr ""
+msgstr "Do Datuma"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
-msgstr ""
+msgstr "Za Uraditi"
#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "To add dynamic subject, use jinja tags like\n\n"
"New {{ doc.doctype }} #{{ doc.name }}Novo {{ doc.doctype }} #{{ doc.name }}{{ doc.name }} Delivered{{ doc.name }} Isporučeno
\n"
"{ \"id\": \"{{ doc.name }}\" }\n"
"
\n"
+"{ \"id\": \"{{ doc.name }}\" }\n"
+"print(text)"
-msgstr ""
+msgstr "Za ispis izlaza koristi print(text)"
#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
-msgstr ""
+msgstr "Za postavljanje uloge {0} za korisnika {1}, postavi polje {2} kao {3} u jednom od {4} zapisa."
#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr ""
+msgstr "Da koristite Google Kalendar, omogućite {0}."
#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr ""
+msgstr "Da koristite Google kontakte, omogući {0}."
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "To use Google Indexing, enable Google Settings."
-msgstr ""
+msgstr "Da koristite Google Indeksiranje, omogući Google Postavke."
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a Slack Webhook URL."
-msgstr ""
+msgstr "Da biste koristili Slack Kanal, dodaj Slack Webhook URL."
#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
-msgstr ""
+msgstr "Do Verzije"
#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
@@ -26638,85 +26691,85 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr ""
+msgstr "Za Uraditi"
#: frappe/public/js/frappe/form/controls/date.js:58
#: frappe/public/js/frappe/ui/filters/filter.js:733
#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
-msgstr ""
+msgstr "Danas"
#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
-msgstr ""
+msgstr "Prebaci grafikon"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Full Width"
-msgstr ""
+msgstr "Prebaci Punu Širinu"
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr ""
+msgstr "Uključi Prikaz Mreže"
#: frappe/public/js/frappe/ui/page.js:201
#: frappe/public/js/frappe/ui/page.js:203
#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Prebaci Bočnu Traku"
#: frappe/public/js/frappe/list/list_view.js:1819
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Prebaci Bočnu Traku"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Theme"
-msgstr ""
+msgstr "Prebaci Temu"
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr ""
+msgstr "Token"
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
-msgstr ""
+msgstr "Token Cache"
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
-msgstr ""
+msgstr "Tip Tokena"
#. Label of the token_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
-msgstr ""
+msgstr "Token URI"
#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr ""
+msgstr "Token Nedostaje"
#: frappe/public/js/frappe/ui/filters/filter.js:739
msgid "Tomorrow"
-msgstr ""
+msgstr "Sutra"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
#: frappe/model/workflow.py:254
msgid "Too Many Documents"
-msgstr ""
+msgstr "Previše Dokumenata"
#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr ""
+msgstr "Previše Zahtjeva"
#: frappe/database/database.py:474
msgid "Too many changes to database in single action."
-msgstr ""
+msgstr "Previše promjena u bazi podataka u jednoj akciji."
#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
@@ -26724,19 +26777,19 @@ msgstr "Previše pozadinskih poslova u čekanju ({0}). Pokušaj ponovno nakon ne
#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
-msgstr ""
+msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena"
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
-msgstr ""
+msgstr "Alati"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr ""
+msgstr "Vrh"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
@@ -26745,12 +26798,12 @@ msgstr "Prvih 10"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr ""
+msgstr "Stavka Gornje Trake"
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr ""
+msgstr "Stavke Trake Vrha"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26758,18 +26811,18 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
-msgstr ""
+msgstr "Vrh Centar"
#. Label of the top_errors (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Top Errors"
-msgstr ""
+msgstr "Najčešće Greške"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
-msgstr ""
+msgstr "Vrh Lijevo"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26777,117 +26830,117 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
-msgstr ""
+msgstr "Vrh Desno"
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr ""
+msgstr "Tema"
#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
-msgstr ""
+msgstr "Ukupno"
#. Label of the total_background_workers (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Background Workers"
-msgstr ""
+msgstr "Ukupno Pozadinskih Radnika"
#. Label of the total_errors (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Errors (last 1 day)"
-msgstr ""
+msgstr "Ukupno Greška (posljednji dan)"
#: frappe/public/js/frappe/ui/capture.js:259
msgid "Total Images"
-msgstr ""
+msgstr "Ukupno Slika"
#. Label of the total_outgoing_emails (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Outgoing Emails"
-msgstr ""
+msgstr "Ukupno Odlazne e-pošte"
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Total Subscribers"
-msgstr ""
+msgstr "Ukupno Pretplatnika"
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Users"
-msgstr ""
+msgstr "Ukupno Korisnika"
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
-msgstr ""
+msgstr "Ukupno Radno Vrijeme"
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Total number of emails to sync in initial sync process "
-msgstr ""
+msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacije "
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
msgid "Total:"
-msgstr ""
+msgstr "Ukupno:"
#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
-msgstr ""
+msgstr "Ukupno"
#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
-msgstr ""
+msgstr "Ukupni Red"
#. Label of the trace_id (Data) field in DocType 'Error Log'
#: frappe/core/doctype/error_log/error_log.json
msgid "Trace ID"
-msgstr ""
+msgstr "ID Praćenja"
#. Label of the traceback (Code) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Traceback"
-msgstr ""
+msgstr "Povratno Praćenje"
#. Label of the track_changes (Check) field in DocType 'DocType'
#. Label of the track_changes (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr ""
+msgstr "Prati Promjene"
#. Label of the track_email_status (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr ""
+msgstr "Prati Status e-pošte"
#. Label of the track_field (Data) field in DocType 'Milestone'
#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr ""
+msgstr "Prati Polje"
#. Label of the track_seen (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr ""
+msgstr "Prati Viđeno"
#. Label of the track_steps (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
-msgstr ""
+msgstr "Prati korake"
#. Label of the track_views (Check) field in DocType 'DocType'
#. Label of the track_views (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr ""
+msgstr "Prati Preglede"
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -26895,55 +26948,57 @@ msgstr ""
msgid "Track if your email has been opened by the recipient.\n"
"
\n"
"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\""
-msgstr ""
+msgstr "Pratite je li primatelj otvorio vašu e-poštu.\n"
+"
\n"
+"Napomena: ako šaljete većem broju primatelja, čak i ako jedan primatelj pročita e-poštu, ona će se smatrati kao \"Otvoreno\""
#. Description of a DocType
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Track milestones for any document"
-msgstr ""
+msgstr "Prati prekretnice za bilo koji dokument"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Tracking"
-msgstr ""
+msgstr "Praćenje"
#: frappe/public/js/frappe/utils/utils.js:1781
msgid "Tracking URL generated and copied to clipboard"
-msgstr ""
+msgstr "URL praćenja generisan i kopiran u međuspremnik"
#. Label of the transaction_hash (Small Text) field in DocType 'Transaction
#. Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Hash"
-msgstr ""
+msgstr "Hash Transakcije"
#. Name of a DocType
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Log"
-msgstr ""
+msgstr "Zapisnik Transakcija"
#. Name of a report
#: frappe/core/report/transaction_log_report/transaction_log_report.json
msgid "Transaction Log Report"
-msgstr ""
+msgstr "Izvještaj Zapisnika Transakcija"
#: frappe/desk/page/setup_wizard/install_fixtures.py:31
msgid "Transgender"
-msgstr ""
+msgstr "Transrodno"
#: frappe/public/js/workflow_builder/components/Properties.vue:19
msgid "Transition Properties"
-msgstr ""
+msgstr "Tranzicijska Svojstva"
#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr ""
+msgstr "Pravila Prelaza"
#. Label of the transitions (Table) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr ""
+msgstr "Prelazi"
#. Label of the translatable (Check) field in DocType 'DocField'
#. Label of the translatable (Check) field in DocType 'Custom Field'
@@ -26952,7 +27007,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr ""
+msgstr "Prevodivo"
#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
@@ -26963,99 +27018,99 @@ msgstr "Prevedi Podatke"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
-msgstr ""
+msgstr "Prevedi Polja Veza"
#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
-msgstr ""
+msgstr "Prevedi vrijednosti"
#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
-msgstr ""
+msgstr "Prevedi {0}"
#. Label of the translated_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr ""
+msgstr "Prevedeni Tekst"
#. Name of a DocType
#: frappe/core/doctype/translation/translation.json
msgid "Translation"
-msgstr ""
+msgstr "Prevod"
#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
-msgstr ""
+msgstr "Prevodi"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
-msgstr ""
+msgstr "Otpad"
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Tree"
-msgstr ""
+msgstr "Stablo"
#: frappe/public/js/frappe/list/base_list.js:210
msgid "Tree View"
-msgstr ""
+msgstr "Prikaz Stabla"
#. Description of the 'Is Tree' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Tree structures are implemented using Nested Set"
-msgstr ""
+msgstr "Strukture stabla se implementiraju pomoću Ugniježđenog Skupa"
#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
-msgstr ""
+msgstr "Prikaz Stabla nije dostupan za {0}"
#. Label of the method (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr ""
+msgstr "Metoda Okidača"
#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
-msgstr ""
+msgstr "Okini Primarnu Radnju"
#: frappe/tests/test_translate.py:55
msgid "Trigger caching"
-msgstr ""
+msgstr "Okini Keširanje"
#. Description of the 'Trigger Method' (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)"
-msgstr ""
+msgstr "Okidač na važećim metodama kao što su \"before_insert\", \"after_update\" itd (ovisiće o odabranom DocTypeu)"
#: frappe/custom/doctype/customize_form/customize_form.js:144
msgid "Trim Table"
-msgstr ""
+msgstr "Optimirajj Tabelu"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:318
msgid "Try Again"
-msgstr ""
+msgstr "Pokušaj ponovo"
#. Label of the try_naming_series (Data) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Try a Naming Series"
-msgstr ""
+msgstr "Isprobaj Seriju Imenovanja"
#: frappe/printing/page/print/print.js:189
#: frappe/printing/page/print/print.js:195
msgid "Try the new Print Designer"
-msgstr ""
+msgstr "Isprobaj novi Dizajner Ispisa"
#: frappe/utils/password_strength.py:106
msgid "Try to avoid repeated words and characters"
-msgstr ""
+msgstr "Pokušaj izbjeći ponavljanje riječi i znakova"
#: frappe/utils/password_strength.py:98
msgid "Try to use a longer keyboard pattern with more turns"
-msgstr ""
+msgstr "Pokušaj koristiti dužu mustru tastature s više okreta"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -27071,7 +27126,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Tuesday"
-msgstr ""
+msgstr "Utorak"
#. Label of the two_factor_auth (Check) field in DocType 'Role'
#. Label of the two_factor_authentication (Section Break) field in DocType
@@ -27079,12 +27134,12 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr ""
+msgstr "Dvofaktorska Autentifikacija"
#. Label of the two_factor_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication method"
-msgstr ""
+msgstr "Metoda Dvofaktorske Autentifikacije"
#. Label of the communication_medium (Select) field in DocType 'Communication'
#. Label of the fieldtype (Select) field in DocType 'DocField'
@@ -27117,36 +27172,36 @@ msgstr ""
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
-msgstr ""
+msgstr "Tip"
#: frappe/public/js/frappe/form/controls/comment.js:90
msgid "Type a reply / comment"
-msgstr ""
+msgstr "Unesi Odgovor / Komentar"
#: frappe/templates/includes/search_template.html:51
msgid "Type something in the search box to search"
-msgstr ""
+msgstr "Unesi nešto u polje za pretragu da pretražite"
#: frappe/templates/discussions/comment_box.html:8
#: frappe/templates/discussions/reply_section.html:53
#: frappe/templates/discussions/topic_modal.html:11
msgid "Type title"
-msgstr ""
+msgstr "Naziv"
#: frappe/templates/discussions/discussions.js:341
msgid "Type your reply here..."
-msgstr ""
+msgstr "Upiši svoj odgovor ovdje..."
#: frappe/core/doctype/data_export/exporter.py:143
msgid "Type:"
-msgstr ""
+msgstr "Tip:"
#. Label of the ui_tour (Check) field in DocType 'Form Tour'
#. Label of the ui_tour (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "UI Tour"
-msgstr ""
+msgstr "UI Introdukcija"
#. Label of the uid (Int) field in DocType 'Communication'
#. Label of the uid (Data) field in DocType 'Email Flag Queue'
@@ -27155,32 +27210,33 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "UID"
-msgstr ""
+msgstr "UID"
#. Label of the uidnext (Int) field in DocType 'Email Account'
#. Label of the uidnext (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDNEXT"
-msgstr ""
+msgstr "UIDNEXT"
#. Label of the uidvalidity (Data) field in DocType 'Email Account'
#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDVALIDITY"
-msgstr ""
+msgstr "UIDVALIDITY"
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "UNSEEN"
-msgstr ""
+msgstr "NEVIĐENO"
#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook"
-msgstr ""
+msgstr "URI-ovi za primanje autorizacijskog koda nakon što korisnik dopusti pristup, kao i odgovora na neuspjeh. Obično krajnja tačka REST-a koju otkriva klijentska aplikacija.\n"
+"
npr. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook"
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
@@ -27197,121 +27253,121 @@ msgstr ""
#: frappe/website/doctype/top_bar_item/top_bar_item.json
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL"
-msgstr ""
+msgstr "URL"
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr ""
+msgstr "URL za dokumentaciju ili pomoć"
#: frappe/core/doctype/file/file.py:219
msgid "URL must start with http:// or https://"
-msgstr ""
+msgstr "URL mora početi s http:// ili https://"
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
-msgstr ""
+msgstr "URL stranice"
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
-msgstr ""
+msgstr "URL na koji ćete otići nakon klika na sliku slajdova"
#. Name of a DocType
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "UTM Campaign"
-msgstr ""
+msgstr "UTM Kampanja"
#. Name of a DocType
#: frappe/website/doctype/utm_medium/utm_medium.json
msgid "UTM Medium"
-msgstr ""
+msgstr "UTM Medij"
#. Name of a DocType
#: frappe/website/doctype/utm_source/utm_source.json
msgid "UTM Source"
-msgstr ""
+msgstr "UTM Izvor"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "UUID"
-msgstr ""
+msgstr "UUID"
#: frappe/desk/form/document_follow.py:79
msgid "Un-following document {0}"
-msgstr ""
+msgstr "Prekidanje praćenja dokumenta {0}"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67
msgid "Unable to find DocType {0}"
-msgstr ""
+msgstr "Nije moguće pronaći DocType {0}"
#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
-msgstr ""
+msgstr "Nije moguće učitati kameru."
#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
-msgstr ""
+msgstr "Nije moguće učitati: {0}"
#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
-msgstr ""
+msgstr "Nije moguće otvoriti priloženu datoteku. Jeste li je izvezli kao CSV?"
#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
-msgstr ""
+msgstr "Nije moguće pročitati format datoteke za {0}"
#: frappe/core/doctype/communication/email.py:179
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
-msgstr ""
+msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zadani račun e-pošte iz Postavke > Račun e-pošte"
#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
-msgstr ""
+msgstr "Nije moguće ažurirati događaj"
#: frappe/core/doctype/file/file.py:464
msgid "Unable to write file format for {0}"
-msgstr ""
+msgstr "Nije moguće napisati format datoteke za {0}"
#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr ""
+msgstr "Poništi dodjelu uslova"
#: frappe/app.py:375
msgid "Uncaught Exception"
-msgstr ""
+msgstr "Neuhvaćena Iznimka"
#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
-msgstr ""
+msgstr "Nepromijenjeno"
#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Undo"
-msgstr ""
+msgstr "Poništi"
#: frappe/public/js/frappe/form/toolbar.js:523
msgid "Undo last action"
-msgstr ""
+msgstr "Poništi posljednju radnju"
#: frappe/database/query.py:1495
msgid "Unescaped quotes in string literal: {0}"
-msgstr ""
+msgstr "Neizbjegnuti navodnici u nizu: {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
-msgstr ""
+msgstr "Prestani Pratiti"
#. Name of a DocType
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Unhandled Email"
-msgstr ""
+msgstr "Neobrađena e-pošta"
#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Unhandled Emails"
-msgstr ""
+msgstr "Neobrađena e-pošta"
#. Label of the unique (Check) field in DocType 'DocField'
#. Label of the unique (Check) field in DocType 'Custom Field'
@@ -27320,71 +27376,71 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr ""
+msgstr "Jedinstveno"
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
-msgstr ""
+msgstr "Nepoznato"
#: frappe/public/js/frappe/model/model.js:209
msgid "Unknown Column: {0}"
-msgstr ""
+msgstr "Nepoznata Kolona: {0}"
#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
-msgstr ""
+msgstr "Nepoznata Metoda Zaokruživanja: {}"
#: frappe/auth.py:316
msgid "Unknown User"
-msgstr ""
+msgstr "Nepoznati Korisnik"
#: frappe/utils/csvutils.py:54
msgid "Unknown file encoding. Tried to use: {0}"
-msgstr ""
+msgstr "Nepoznato kodiranje datoteke. Pokušano koristiti: {0}"
#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
-msgstr ""
+msgstr "Otključaj Referentni Dokument"
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
#: frappe/website/doctype/blog_post/blog_post.js:36
#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
-msgstr ""
+msgstr "Poništi Objavu"
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Unread"
-msgstr ""
+msgstr "Nepročitano"
#. Label of the unread_notification_sent (Check) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr ""
+msgstr "Nepročitana Obavijest Poslana"
#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
-msgstr ""
+msgstr "Nesiguran SQL upit"
#: frappe/public/js/frappe/data_import/data_exporter.js:159
#: frappe/public/js/frappe/form/controls/multicheck.js:166
msgid "Unselect All"
-msgstr ""
+msgstr "Poništi Odabir Svih"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr ""
+msgstr "Nedijeljeno"
#: frappe/email/queue.py:66
msgid "Unsubscribe"
-msgstr ""
+msgstr "Otkaži Pretplatu"
#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr ""
+msgstr "Način Otkazivanja Pretplate"
#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -27399,32 +27455,32 @@ msgstr "Parametri Otkazivanja"
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/queue.py:122
msgid "Unsubscribed"
-msgstr ""
+msgstr "Otkazano"
#: frappe/database/query.py:653 frappe/database/query.py:1387
#: frappe/database/query.py:1397
msgid "Unsupported function or invalid field name: {0}"
-msgstr ""
+msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}"
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
-msgstr ""
+msgstr "Kolona bez Naziva"
#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
-msgstr ""
+msgstr "Raspakuj"
#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
-msgstr ""
+msgstr "Raspakovano {0} datoteka"
#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
-msgstr ""
+msgstr "Raspakivanje datoteka..."
#: frappe/desk/doctype/event/event.py:269
msgid "Upcoming Events for Today"
-msgstr ""
+msgstr "Nadolazeći Događaji za Danas"
#. Label of the update (Button) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/data_import/data_import_list.js:36
@@ -27438,73 +27494,73 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
#: frappe/public/js/frappe/form/grid_row.js:411
msgid "Update"
-msgstr ""
+msgstr "Ažuriraj"
#. Label of the update_amendment_naming (Button) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
-msgstr ""
+msgstr "Ažuriraj Izmjenjeno Imenovanje"
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Update Existing Records"
-msgstr ""
+msgstr "Ažuriraj Postojeće Zapise"
#. Label of the update_field (Select) field in DocType 'Workflow Document
#. State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Field"
-msgstr ""
+msgstr "Ažuriraj Polje"
#: frappe/core/doctype/installed_applications/installed_applications.js:6
#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
-msgstr ""
+msgstr "Ažuriraj Redoslijed Razrješenja Kukica"
#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
-msgstr ""
+msgstr "Redoslijed ažuriranja"
#: frappe/desk/page/setup_wizard/setup_wizard.js:494
msgid "Update Password"
-msgstr ""
+msgstr "Ažuriraj Lozinku"
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
-msgstr ""
+msgstr "Ažuriraj Brojač Serije Imenovanja"
#. Label of the update_series_start (Button) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr ""
+msgstr "Ažuriraj Broj Serije Imenovanja"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr ""
+msgstr "Ažuriraj Postavke"
#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
-msgstr ""
+msgstr "Ažuriraj Prijevode"
#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
#. Label of the update_value (Data) field in DocType 'Workflow Document State'
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr ""
+msgstr "Ažuriraj Vrijednost"
#: frappe/utils/change_log.py:381
msgid "Update from Frappe Cloud"
-msgstr ""
+msgstr "Ažuriraj sa Frappe Cloud-a"
#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
-msgstr ""
+msgstr "Ažuriraj {0} zapisa"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
@@ -27514,60 +27570,60 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
#: frappe/public/js/frappe/web_form/web_form.js:427
msgid "Updated"
-msgstr ""
+msgstr "Ažurirano"
#: frappe/desk/doctype/bulk_update/bulk_update.js:32
msgid "Updated Successfully"
-msgstr ""
+msgstr "Uspješno Ažurirano"
#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
-msgstr ""
+msgstr "Ažurirano na Novu Verziju 🎉"
#: frappe/public/js/frappe/list/bulk_operations.js:372
msgid "Updated successfully"
-msgstr ""
+msgstr "Uspješno Ažurirano"
#: frappe/utils/response.py:337
msgid "Updating"
-msgstr ""
+msgstr "Ažuriranje"
#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
-msgstr ""
+msgstr "Ažuriranje u toku"
#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
-msgstr ""
+msgstr "Ažuriranje Statusa Čekanja e-pošte. Poruke e-pošte bit će preuzete u sljedećem zakazanom ciklusu."
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
-msgstr ""
+msgstr "Ažuriranje Brojača može dovesti do konflikta naziva dokumenta ako se ne uradi kako treba"
#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
-msgstr ""
+msgstr "Ažuriraju se globalne postavke"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
-msgstr ""
+msgstr "Ažuriraju se opcije imenovanja serije"
#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
-msgstr ""
+msgstr "Ažuriraju se povezana polja..."
#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
-msgstr ""
+msgstr "Ažurira se {0}"
#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
-msgstr ""
+msgstr "Ažurira se {0} od {1}, {2}"
#: frappe/public/js/billing.bundle.js:131
msgid "Upgrade plan"
-msgstr ""
+msgstr "Plan Ažuriranja"
#: frappe/public/js/frappe/list/list_sidebar.js:331
msgid "Upgrade your support experience with Frappe Helpdesk"
@@ -27578,75 +27634,75 @@ msgstr "Nadogradite svoje iskustvo podrške uz Helpdesk"
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
-msgstr ""
+msgstr "Učitaj"
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
msgid "Upload Image"
-msgstr ""
+msgstr "Učitaj Sliku"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198
msgid "Upload file"
-msgstr ""
+msgstr "Učitaj Datoteku"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201
msgid "Upload {0} files"
-msgstr ""
+msgstr "Učitaj {0} datoteke"
#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr ""
+msgstr "Učitano na Dropbox"
#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr ""
+msgstr "Učitano na Google Disk"
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#, python-format
msgid "Use % for any non empty value."
-msgstr ""
+msgstr "Koristi % za bilo koju vrijednost koja nije prazna."
#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr ""
+msgstr "Koristi ASCII kodiranje za lozinku"
#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Use First Day of Period"
-msgstr ""
+msgstr "Koristi Prvi Dan Perioda"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
-msgstr ""
+msgstr "Koristi HTML"
#. Label of the use_imap (Check) field in DocType 'Email Account'
#. Label of the use_imap (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr ""
+msgstr "Koristi IMAP"
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Use Number Format from Currency"
-msgstr ""
+msgstr "Koristite Brojčani komma Format iz Valute"
#. Label of the use_post (Check) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr ""
+msgstr "Koristi POST"
#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr ""
+msgstr "Koristi Grafikon Izvještaja"
#. Label of the use_ssl (Check) field in DocType 'Email Account'
#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
@@ -27655,63 +27711,63 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr ""
+msgstr "Koristi SSL"
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
-msgstr ""
+msgstr "Koristi STARTTLS"
#. Label of the use_tls (Check) field in DocType 'Email Account'
#. Label of the use_tls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr ""
+msgstr "Koristi TLS"
#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
-msgstr ""
+msgstr "Koristi nekoliko riječi, izbjegavaj uobičajene fraze."
#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
-msgstr ""
+msgstr "Koristi drugu e-poštu"
#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Use if the default settings don't seem to detect your data correctly"
-msgstr ""
+msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno"
#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
-msgstr ""
+msgstr "Korištenje funkcije {0} u polju je ograničena"
#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
-msgstr ""
+msgstr "Korištenje podupita ili funkcije je ograničena"
#: frappe/printing/page/print/print.js:279
msgid "Use the new Print Format Builder"
-msgstr ""
+msgstr "Koristi novi Konstruktor Formata Ispisa"
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr ""
+msgstr "Koristi ovo ime polja za generisanje naziva"
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use this, for example, if all sent emails should also be send to an archive."
-msgstr ""
+msgstr "Koristi ovo, na primjer, ako sva poslana e-poåta također treba poslati u arhivu."
#. Label of the used_oauth (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
-msgstr ""
+msgstr "Korišten OAuth"
#. Label of the user (Link) field in DocType 'Assignment Rule User'
#. Label of the user (Link) field in DocType 'Reminder'
@@ -27770,144 +27826,144 @@ msgstr ""
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
-msgstr ""
+msgstr "Korisnik"
#. Label of the user (Link) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "User "
-msgstr ""
+msgstr "Korisnik "
#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
-msgstr ""
+msgstr "Korisnik '{0}' već ima ulogu '{1}'"
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report.json
msgid "User Activity Report"
-msgstr ""
+msgstr "Izvještaj Aktivnosti Korisnika"
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report_without_sort.json
msgid "User Activity Report Without Sort"
-msgstr ""
+msgstr "Izvještaj Aktivnosti Korisnika Bez Sortiranja"
#. Label of the user_agent (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr ""
+msgstr "Korisnički Agent"
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr ""
+msgstr "Korisnik Nemože Kreirati"
#. Label of the read_only (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr ""
+msgstr "Korisnik Nemože Pretraživati"
#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
-msgstr ""
+msgstr "Korisnik Promijenjen"
#. Label of the defaults (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr ""
+msgstr "Korisničke Standard Postavke"
#. Label of the user_details_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Details"
-msgstr ""
+msgstr "Korisnički Detalji"
#. Name of a report
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
msgid "User Doctype Permissions"
-msgstr ""
+msgstr "Korisničke Doctype Dozvole"
#. Name of a DocType
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
-msgstr ""
+msgstr "Tip Korisničkog Dokumenta"
#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
-msgstr ""
+msgstr "Prekoračeno Ograničenje Tipova Korisničkih Dokumenata"
#. Name of a DocType
#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
-msgstr ""
+msgstr "E-pošta Korisnika"
#. Label of the user_emails (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr ""
+msgstr "E-pošte Korisnika"
#. Name of a DocType
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
-msgstr ""
+msgstr "Korisnička Grupa"
#. Name of a DocType
#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
-msgstr ""
+msgstr "Član Korisničke Grupe"
#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
#. Group'
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
-msgstr ""
+msgstr "Članovi Korisničke Grupe"
#. Label of the userid (Data) field in DocType 'User Social Login'
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr ""
+msgstr "Korisnik"
#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr ""
+msgstr "Svojstvo Korisnika"
#. Description of a DocType
#: frappe/website/doctype/blogger/blogger.json
msgid "User ID of a Blogger"
-msgstr ""
+msgstr "Korisnički ID Bloggera"
#. Label of the user (Link) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr ""
+msgstr "Korisnik"
#. Label of the user_id_field (Select) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
-msgstr ""
+msgstr "Polje za Id Korisnika"
#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
-msgstr ""
+msgstr "Polje Id-a korisnika obavezno je u tipu korisnika {0}"
#. Label of the user_image (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr ""
+msgstr "Slika Korisnika"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
msgid "User Menu"
-msgstr ""
+msgstr "Korisnički Meni"
#. Label of the user_name (Data) field in DocType 'Personal Data Download
#. Request'
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr ""
+msgstr "Korisničko Ime"
#. Name of a DocType
#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
-msgstr ""
+msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
@@ -27915,51 +27971,51 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:1883
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
-msgstr ""
+msgstr "Korisničke Dozvole"
#: frappe/public/js/frappe/list/list_view.js:1777
msgctxt "Button in list view menu"
msgid "User Permissions"
-msgstr ""
+msgstr "Korisničke Dozvole"
#: frappe/core/page/permission_manager/permission_manager_help.html:32
msgid "User Permissions are used to limit users to specific records."
-msgstr ""
+msgstr "Korisničke Dozvole se koriste za ograničavanje korisnika na određene zapise."
#: frappe/core/doctype/user_permission/user_permission_list.js:124
msgid "User Permissions created successfully"
-msgstr ""
+msgstr "Korisničke Dozvole su uspješno kreirane"
#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
-msgstr ""
+msgstr "Korisnička Uloga"
#. Name of a DocType
#: frappe/core/doctype/user_role_profile/user_role_profile.json
msgid "User Role Profile"
-msgstr ""
+msgstr "Profil Korisničke Uloge"
#. Name of a DocType
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
-msgstr ""
+msgstr "Odabir Korisničkog Tipa Dokumenta"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "User Settings"
-msgstr ""
+msgstr "Korisničke Postavke"
#. Name of a DocType
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User Social Login"
-msgstr ""
+msgstr "Prijava Korisnika Putem Društvenih Mreža"
#. Label of the _user_tags (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr ""
+msgstr "Korisničke Oznake"
#. Label of the user_type (Link) field in DocType 'User'
#. Name of a DocType
@@ -27967,106 +28023,106 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User Type"
-msgstr ""
+msgstr "Tip Korisnika"
#. Label of the user_type_modules (Table) field in DocType 'User Type'
#. Name of a DocType
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type_module/user_type_module.json
msgid "User Type Module"
-msgstr ""
+msgstr "Modul tipa korisnika"
#. Description of the 'Allow Login using Mobile Number' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr ""
+msgstr "Korisnik se može prijaviti koristeći E-poštu ili Broj Mobilnog Telefona"
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr ""
+msgstr "Korisnik se može prijaviti koristeći E-poštu ili Korisničko Ime"
#: frappe/templates/includes/login/login.js:292
msgid "User does not exist."
-msgstr ""
+msgstr "Korisnik ne postoji."
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
-msgstr ""
+msgstr "Korisnik nema dozvolu za kreiranje novog {0}"
#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
-msgstr ""
+msgstr "Korisnik je obavezan za Dijeljenje"
#. Label of the user_must_always_select (Check) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr ""
+msgstr "Korisnik mora uvijek odabrati"
#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
-msgstr ""
+msgstr "Korisnička dozvola već postoji"
#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
-msgstr ""
+msgstr "Korisnik sa adresom e-pošte {0} ne postoji"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
-msgstr ""
+msgstr "Korisnik sa e-poštom: {0} ne postoji u sistemu. Zamoli 'Administratora Sistema' da kreira korisnika za vas."
#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
-msgstr ""
+msgstr "Korisnik {0} se ne može izbrisati"
#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
-msgstr ""
+msgstr "Korisnik {0} se ne može onemogućiti"
#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
-msgstr ""
+msgstr "Korisnik {0} se ne može preimenovati"
#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
-msgstr ""
+msgstr "Korisnik {0} nema pristup ovom dokumentu"
#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
-msgstr ""
+msgstr "Korisnik {0} nema pristup tipu dokumenta preko dopuštenja uloge za dokument {1}"
#: frappe/desk/doctype/workspace/workspace.py:275
msgid "User {0} does not have the permission to create a Workspace."
-msgstr ""
+msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora."
#: frappe/templates/emails/data_deletion_approval.html:1
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
-msgstr ""
+msgstr "Korisnik {0} je zatražio brisanje podataka"
#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
-msgstr ""
+msgstr "Korisnik {0} predstavljen kao {1}"
#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
-msgstr ""
+msgstr "Korisnik {0} je onemogućen"
#: frappe/sessions.py:242
msgid "User {0} is disabled. Please contact your System Manager."
-msgstr ""
+msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema."
#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
-msgstr ""
+msgstr "Korisniku {0} nije dozvoljen pristup ovom dokumentu."
#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
-msgstr ""
+msgstr "URI informacija Korisnika"
#. Label of the username (Data) field in DocType 'User'
#. Label of the username (Data) field in DocType 'User Social Login'
@@ -28074,11 +28130,11 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/www/login.py:110
msgid "Username"
-msgstr ""
+msgstr "Korisničko Ime"
#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
-msgstr ""
+msgstr "Korisničko Ime {0} već postoji"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
@@ -28089,7 +28145,7 @@ msgstr ""
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
-msgstr ""
+msgstr "Korisnici"
#. Description of the 'Protect Attached Files' (Check) field in DocType
#. 'DocType'
@@ -28098,56 +28154,56 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
-msgstr ""
+msgstr "Korisnici mogu obrisati priložene datoteke samo ako je dokument u nacrtu ili ako je dokument otkazan, a također mogu obrisati dokument."
#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr ""
+msgstr "Korisnici sa ulogom {0}:"
#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
-msgstr ""
+msgstr "Koristi temu sistema za prebacivanje između svijetlog i tamnog načina rada"
#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
-msgstr ""
+msgstr "Korištenje ove konzole može omogućiti napadačima da se lažno predstavljaju i ukradu vaše podatke. Nemojte unositi niti lijepiti kod koji ne razumijete."
#. Label of the utilization (Percent) field in DocType 'System Health Report
#. Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Utilization"
-msgstr ""
+msgstr "Iskorištenost"
#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Utilization %"
-msgstr ""
+msgstr "Iskorištenost %"
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr ""
+msgstr "Važeči"
#: frappe/templates/includes/login/login.js:52
#: frappe/templates/includes/login/login.js:65
msgid "Valid Login id required."
-msgstr ""
+msgstr "Važeći Id Prijave je obavezan."
#: frappe/templates/includes/login/login.js:39
msgid "Valid email and name required"
-msgstr ""
+msgstr "Važeća adresa e-pošte i ime je obavezna"
#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr ""
+msgstr "Potvrdi Polje"
#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Validate Frappe Mail Settings"
-msgstr ""
+msgstr "Validiraj Frappe Mail Postavke"
#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
#. Account'
@@ -28158,16 +28214,16 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Validate SSL Certificate"
-msgstr ""
+msgstr "Potvrdite SSL certifikat"
#: frappe/public/js/frappe/web_form/web_form.js:360
msgid "Validation Error"
-msgstr ""
+msgstr "Greška pri Validaciji"
#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr ""
+msgstr "Validnost"
#. Label of the value (Data) field in DocType 'Milestone'
#. Label of the defvalue (Text) field in DocType 'DefaultValue'
@@ -28194,203 +28250,203 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.js:197
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
-msgstr ""
+msgstr "Vrijednost"
#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Value Based On"
-msgstr ""
+msgstr "Vrijednost Na Osnovu"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Change"
-msgstr ""
+msgstr "Promjena Vrijednosti"
#. Label of the value_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr ""
+msgstr "Vrijednost Promijenjena"
#. Label of the property_value (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr ""
+msgstr "Vrijednost Koju Treba Postaviti"
#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
-msgstr ""
+msgstr "Vrijednost se ne može promijeniti za {0}"
#: frappe/model/document.py:779
msgid "Value cannot be negative for"
-msgstr ""
+msgstr "Vrijednost ne može biti negativna za"
#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
-msgstr ""
+msgstr "Vrijednost ne može biti negativna za {0}: {1}"
#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
-msgstr ""
+msgstr "Vrijednost polja za provjeru može biti 0 ili 1"
#: frappe/custom/doctype/customize_form/customize_form.py:611
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
-msgstr ""
+msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova"
#: frappe/model/base_document.py:445
msgid "Value for {0} cannot be a list"
-msgstr ""
+msgstr "Vrijednost za {0} ne može biti lista"
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr ""
+msgstr "Vrijednost iz ovog polja će biti postavljena kao krajnji datum za Uraditi"
#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
-msgstr ""
+msgstr "Vrijednost mora biti jedna od {0}"
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
-msgstr ""
+msgstr "Vrijednost za Provjeru"
#: frappe/model/base_document.py:1124
msgid "Value too big"
-msgstr ""
+msgstr "Vrijednost je Prevelika"
#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
-msgstr ""
+msgstr "Nedostaje vrijednost {0} za {1}"
#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
-msgstr ""
+msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s"
#: frappe/core/doctype/data_import/importer.py:745
#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
-msgstr ""
+msgstr "Vrijednost {0} mora biti u {1} formatu"
#: frappe/core/doctype/version/version_view.html:8
msgid "Values Changed"
-msgstr ""
+msgstr "Vrijednosti Promijenjene"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Verdana"
-msgstr ""
+msgstr "Verdana"
#: frappe/templates/includes/login/login.js:333
msgid "Verification"
-msgstr ""
+msgstr "Verifikacija"
#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352
msgid "Verification Code"
-msgstr ""
+msgstr "Verfikacijski Kod"
#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
-msgstr ""
+msgstr "Veza za Verifikaciju"
#: frappe/templates/includes/login/login.js:383
msgid "Verification code email not sent. Please contact Administrator."
-msgstr ""
+msgstr "E-pošta sa verifikacionim kodom nije poslana. Kontaktiraj Administratora."
#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
-msgstr ""
+msgstr "Verifkacijski kod je poslan na vašu registrovanu adresu e-pošte."
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr ""
+msgstr "Provjereno"
#: frappe/public/js/frappe/ui/messages.js:359
#: frappe/templates/includes/login/login.js:337
msgid "Verify"
-msgstr ""
+msgstr "Provjeri"
#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
-msgstr ""
+msgstr "Provjeri Lozinku"
#: frappe/templates/includes/login/login.js:171
msgid "Verifying..."
-msgstr ""
+msgstr "Provjera..."
#. Name of a DocType
#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr ""
+msgstr "Verzija"
#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
-msgstr ""
+msgstr "Verzija Ažurirana"
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr ""
+msgstr "Video URL"
#. Label of the view_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "View"
-msgstr ""
+msgstr "Prikaz"
#: frappe/core/doctype/success_action/success_action.js:60
#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
-msgstr ""
+msgstr "Prikaži Sve"
#: frappe/public/js/frappe/form/toolbar.js:577
msgid "View Audit Trail"
-msgstr ""
+msgstr "Prikaži Trag"
#: frappe/templates/includes/likes/likes.py:34
msgid "View Blog Post"
-msgstr ""
+msgstr "Prikaži Blog Post"
#: frappe/templates/includes/comments/comments.py:56
msgid "View Comment"
-msgstr ""
+msgstr "Prikaži Komentar"
#: frappe/core/doctype/user/user.js:151
msgid "View Doctype Permissions"
-msgstr ""
+msgstr "Prikaz Doctype Dozvola"
#: frappe/core/doctype/file/file.js:4
msgid "View File"
-msgstr ""
+msgstr "Prikaži datoteku"
#: frappe/public/js/frappe/ui/notifications/notifications.js:220
msgid "View Full Log"
-msgstr ""
+msgstr "Prikaži Cijeli Zapisnik"
#: frappe/public/js/frappe/views/treeview.js:484
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
-msgstr ""
+msgstr "Prikaži Listu"
#. Name of a DocType
#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
-msgstr ""
+msgstr "Prikaži Zapisnik"
#: frappe/core/doctype/user/user.js:142
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
-msgstr ""
+msgstr "Prikaži Dozvoljene Dokumente"
#. Label of the view_properties (Button) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr ""
+msgstr "Prikaži Svojstva (putem Forme Prilagođavanje)"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr ""
+msgstr "Prikaži Izvještaj"
#. Label of the view_settings (Section Break) field in DocType 'DocType'
#. Label of the view_settings_section (Section Break) field in DocType
@@ -28398,158 +28454,158 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr ""
+msgstr "Pogledaj Postavke"
#. Label of the view_switcher (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "View Switcher"
-msgstr ""
+msgstr "Prikaži Preklopnik"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
-msgstr ""
+msgstr "Prikaži Web Stranicu"
#: frappe/www/confirm_workflow_action.html:12
msgid "View document"
-msgstr ""
+msgstr "Prikaži Dokument"
#: frappe/templates/emails/auto_email_report.html:60
msgid "View report in your browser"
-msgstr ""
+msgstr "Prrikaži izvještaj u vašem pretraživaču"
#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
-msgstr ""
+msgstr "Prikaži ovo u svom pretraživaču"
#: frappe/public/js/frappe/web_form/web_form.js:454
msgctxt "Button in web form"
msgid "View your response"
-msgstr ""
+msgstr "Prikaži svoj odgovor"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
#: frappe/desk/doctype/dashboard/dashboard_list.js:10
msgid "View {0}"
-msgstr ""
+msgstr "Prikaži {0}"
#. Label of the viewed_by (Data) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr ""
+msgstr "Pokazano Od"
#. Group in DocType's connections
#. Label of a Card Break in the Build Workspace
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/workspace/build/build.json
msgid "Views"
-msgstr ""
+msgstr "Prikazi"
#. Label of the is_virtual (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
-msgstr ""
+msgstr "Virtuelno"
#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
-msgstr ""
+msgstr "Virtualni DocType {} zahtijeva statičku metodu pod nazivom {} pronađena {}"
#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
-msgstr ""
+msgstr "Virtualni DocType {} zahtijeva nadjačavanje metode instance koja se zove {} pronađena {}"
#. Label of the visibility_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
-msgstr ""
+msgstr "Vidljivost"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41
msgid "Visible to website/portal users."
-msgstr ""
+msgstr "Vidljivo korisnicima web stranice/portala."
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr ""
+msgstr "Posjeta"
#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
-msgstr ""
+msgstr "Posjeti Web Stranicu"
#. Label of the visitor_id (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
-msgstr ""
+msgstr "Posjetitelj"
#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
-msgstr ""
+msgstr "Želite razgovarati?"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Warehouse"
-msgstr ""
+msgstr "Skladište"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
-msgstr ""
+msgstr "Upozorenje"
#: frappe/custom/doctype/customize_form/customize_form.js:217
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
-msgstr ""
+msgstr "Upozorenje: GUBITAK PODATAKA NEPOSREDAN! Nastavkom će se trajno izbrisati sljedeće kolone baze podataka iz tipa dokumenta {0}:"
#: frappe/core/doctype/doctype/doctype.py:1125
msgid "Warning: Naming is not set"
-msgstr ""
+msgstr "Upozorenje: Imenovanje nije postavljeno"
#: frappe/public/js/frappe/model/meta.js:182
msgid "Warning: Unable to find {0} in any table related to {1}"
-msgstr ""
+msgstr "Upozorenje: Nije moguće pronaći {0} ni u jednoj tabeli vezanoj za {1}"
#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
-msgstr ""
+msgstr "Upozorenje: Ažuriranje brojača može dovesti do sukoba imena dokumenta ako se ne uradi kako treba"
#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr ""
+msgstr "Je li ovaj članak bio od pomoći?"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
msgid "Watch Tutorial"
-msgstr ""
+msgstr "Pogledaj Vodič"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Watch Video"
-msgstr ""
+msgstr "Pogledaj Video"
#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
-msgstr ""
+msgstr "Ne dozvoljeno uređivanje ovog dokumenta. Jednostavno kliknite dugme Uredi na stranici radnog prostora kako biste svoj radni prostor mogli uređivati i prilagoditi ga po želji"
#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
-msgstr ""
+msgstr "Primili smo zahtjev za brisanje {0} podataka povezanih sa: {1}"
#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
-msgstr ""
+msgstr "Primili smo vaš zahtjev za preuzimanje vaših {0} podataka povezanih sa: {1}"
#: frappe/www/attribution.html:12
msgid "We would like to thank the authors of these packages for their contribution."
-msgstr ""
+msgstr "Zahvaljujemo se autorima ovih paketa na njihovom doprinosu."
#: frappe/www/contact.py:50
msgid "We've received your query!"
-msgstr ""
+msgstr "Primili smo vaš upit!"
#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
-msgstr ""
+msgstr "Slaba"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28557,22 +28613,22 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/workspace/website/website.json
msgid "Web Form"
-msgstr ""
+msgstr "Web Forma"
#. Name of a DocType
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
-msgstr ""
+msgstr "Polje Web Forme"
#. Label of the web_form_fields (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr ""
+msgstr "Polja Web Forme"
#. Name of a DocType
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
-msgstr ""
+msgstr "Kolona Liste Web Forme"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28580,52 +28636,52 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json
msgid "Web Page"
-msgstr ""
+msgstr "Web Stranica"
#. Name of a DocType
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
-msgstr ""
+msgstr "Blok Web Stranice"
#: frappe/public/js/frappe/utils/utils.js:1709
msgid "Web Page URL"
-msgstr ""
+msgstr "URL Web Stranice"
#. Name of a DocType
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
-msgstr ""
+msgstr "Prikaz Web Stranice"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Web Site"
-msgstr ""
+msgstr "Web Stranica"
#. Label of the web_template (Link) field in DocType 'Web Page Block'
#. Name of a DocType
#: frappe/website/doctype/web_page_block/web_page_block.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Web Template"
-msgstr ""
+msgstr "Web Šablon"
#. Name of a DocType
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
-msgstr ""
+msgstr "Polje Web Šablona"
#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr ""
+msgstr "Vrijednosti Web Šablona"
#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
-msgstr ""
+msgstr "Web Šablon nije naveden"
#. Label of the web_view (Tab Break) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr ""
+msgstr "Web Prikaz"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
@@ -28634,56 +28690,56 @@ msgstr ""
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Webhook"
-msgstr ""
+msgstr "Webhook"
#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook'
#. Name of a DocType
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
msgid "Webhook Data"
-msgstr ""
+msgstr "Webhook Podaci"
#. Name of a DocType
#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
-msgstr ""
+msgstr "Zaglavlje Webhooka"
#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr ""
+msgstr "Webhook Zaglavlja"
#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr ""
+msgstr "Webhook Zahtjev"
#. Label of a Link in the Build Workspace
#. Name of a DocType
#: frappe/core/workspace/build/build.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
-msgstr ""
+msgstr "Zapisnik Webhook Zahtjeva"
#. Label of the webhook_secret (Password) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr ""
+msgstr "Webhook Tajna"
#. Label of the sb_security (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr ""
+msgstr "Webhook Sigurnost"
#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr ""
+msgstr "Webhook Okidač"
#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr ""
+msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
@@ -28692,12 +28748,12 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr ""
+msgstr "Web Stranica"
#. Name of a report
#: frappe/website/report/website_analytics/website_analytics.json
msgid "Website Analytics"
-msgstr ""
+msgstr "Analiza Web Stranice"
#. Name of a role
#: frappe/core/doctype/comment/comment.json
@@ -28718,47 +28774,47 @@ msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr ""
+msgstr "Upravitelj Web Stranice"
#. Name of a DocType
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
-msgstr ""
+msgstr "Meta Oznaka Web Stranice"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_route_meta/website_route_meta.json
#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
-msgstr ""
+msgstr "Meta rute web stranice"
#. Name of a DocType
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
-msgstr ""
+msgstr "Preusmjeravanje Rute Web Stranice"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_script/website_script.json
#: frappe/website/workspace/website/website.json
msgid "Website Script"
-msgstr ""
+msgstr "Skripta Web Stranice"
#. Label of the website_search_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Website Search Field"
-msgstr ""
+msgstr "Polje Pretraživanja Web Stranice"
#: frappe/core/doctype/doctype/doctype.py:1522
msgid "Website Search Field must be a valid fieldname"
-msgstr ""
+msgstr "Polje Pretraživanja Web Stranice mora biti važeće ime polja"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr ""
+msgstr "Postavke Web Stranice"
#. Label of the website_sidebar (Link) field in DocType 'Web Form'
#. Label of the website_sidebar (Link) field in DocType 'Web Page'
@@ -28769,24 +28825,24 @@ msgstr ""
#: frappe/website/doctype/website_sidebar/website_sidebar.json
#: frappe/website/workspace/website/website.json
msgid "Website Sidebar"
-msgstr ""
+msgstr "Bočna Traka Web Stranice"
#. Name of a DocType
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
-msgstr ""
+msgstr "Stavka Bočne Trake Web Stranice"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
-msgstr ""
+msgstr "Dijaprojekcija Web Stranice"
#. Name of a DocType
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
-msgstr ""
+msgstr "Stavka Dijaprojekcije Web Stranice"
#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
@@ -28795,29 +28851,29 @@ msgstr ""
#: frappe/website/doctype/website_theme/website_theme.json
#: frappe/website/workspace/website/website.json
msgid "Website Theme"
-msgstr ""
+msgstr "Tema Web Stranice"
#. Name of a DocType
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
-msgstr ""
+msgstr "Tema Web Stranice Ignoriši Aplikaciju"
#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr ""
+msgstr "Slika Teme Web Stranice"
#. Label of the website_theme_image_link (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
-msgstr ""
+msgstr "Veza Slike Teme Web Stranice"
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Websocket"
-msgstr ""
+msgstr "Websocket"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -28833,7 +28889,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Wednesday"
-msgstr ""
+msgstr "Srijeda"
#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
@@ -28842,7 +28898,7 @@ msgstr "Tjedan"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr ""
+msgstr "Radnim Danima"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -28875,7 +28931,7 @@ msgstr "Tjedno Dug"
#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
-msgstr ""
+msgstr "Dobrodošli"
#. Label of the welcome_email_template (Link) field in DocType 'System
#. Settings'
@@ -28883,58 +28939,58 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr ""
+msgstr "Šablon e-pošte Dobrodošlice"
#. Label of the welcome_url (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
-msgstr ""
+msgstr "URL Dobrodošlice"
#. Name of a Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "Welcome Workspace"
-msgstr ""
+msgstr "Početni Radni Prostor"
#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
-msgstr ""
+msgstr "E-pošta Dobrodošlice poslana"
#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
-msgstr ""
+msgstr "Dobrodošli u {0}"
#: frappe/public/js/frappe/ui/notifications/notifications.js:62
msgid "What's New"
-msgstr ""
+msgstr "Šta je Novo"
#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
-msgstr ""
+msgstr "Kada je omogućeno, ovo će omogućiti gostima da učitavaju datoteke u vašu aplikaciju. Možete to omogućiti ako želite da prikupljate datoteke od korisnika bez da se oni moraju prijaviti, na primjer u web obrascu za prijavu za posao."
#. Description of the 'Store Attached PDF Document' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
-msgstr ""
+msgstr "Kada šaljete dokument putem e-pošte, spremi PDF iz Konverzacije. Upozorenje: Ovo može povećati korištenje prostora pohrane."
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
-msgstr ""
+msgstr "Prilikom učitavanja datoteka, prisilite korištenje snimanja slika na webu. Ako ovo nije označeno, standard ponašanje je korištenje mobilne kamere kada se otkrije korištenje s mobilnog."
#: frappe/core/page/permission_manager/permission_manager_help.html:18
msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
+msgstr "Kada izmijenite dokument nakon Otkaži i spremite ga, dobit će novi broj koji je verzija starog broja."
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr ""
+msgstr "Na koji prikaz povezanog DocType bi vas ova prečica trebala odvesti?"
#. Label of the width (Data) field in DocType 'DocField'
#. Label of the width (Int) field in DocType 'Report Column'
@@ -28949,56 +29005,56 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
-msgstr ""
+msgstr "Širina"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
msgid "Widths can be set in px or %."
-msgstr ""
+msgstr "Širina se može podesiti u px ili %."
#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr ""
+msgstr "Zamjenski Filter"
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Will add \"%\" before and after the query"
-msgstr ""
+msgstr "Dodat će \"%\" prije i poslije upita"
#. Description of the 'Short Name' (Data) field in DocType 'Blogger'
#: frappe/website/doctype/blogger/blogger.json
msgid "Will be used in url (usually first name)."
-msgstr ""
+msgstr "Koristit će se u url-u (obično ime)."
#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
-msgstr ""
+msgstr "Biti će vaš prijavni ID"
#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
-msgstr ""
+msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni"
#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
#. in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
-msgstr ""
+msgstr "Izvršit će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača."
#: frappe/public/js/frappe/form/print_utils.js:15
msgid "With Letter head"
-msgstr ""
+msgstr "Sa Zaglavljem"
#. Label of the worker_information_section (Section Break) field in DocType 'RQ
#. Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Information"
-msgstr ""
+msgstr "Informacije Radnika"
#. Label of the worker_name (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
-msgstr ""
+msgstr "Naziv Radnika"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Group in DocType's connections
@@ -29008,42 +29064,42 @@ msgstr ""
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow"
-msgstr ""
+msgstr "Radni Tok"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
-msgstr ""
+msgstr "Radnja Radnog Toka"
#. Name of a DocType
#. Description of a DocType
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
-msgstr ""
+msgstr "Postavke Radnje Radnog Toka"
#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
#. Master'
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr ""
+msgstr "Naziv Radnje Radnog Toka"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
-msgstr ""
+msgstr "Dozvoljena Uloga Radnje Radnog Toka"
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr ""
+msgstr "Radnja Radnog Toka nije kreirana za opcijska stanja"
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.js:25
#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
msgid "Workflow Builder"
-msgstr ""
+msgstr "Konstruktor Radnog Toka"
#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
#. State'
@@ -29052,72 +29108,72 @@ msgstr ""
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
-msgstr ""
+msgstr "Konstruktor Radnog Toka"
#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
-msgstr ""
+msgstr "Konstruktor Radnog Toka vam omogućava da kreirate radne tokove vizuelno. Možete prevući i ispustiti stanja i povezati ih da biste kreirali prelaze. Također možete ažurirati njihova svojstva sa bočne trake."
#. Label of the workflow_data (JSON) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
-msgstr ""
+msgstr "Podaci Radnog Toka"
#: frappe/public/js/workflow_builder/components/Properties.vue:42
msgid "Workflow Details"
-msgstr ""
+msgstr "Radni Tok Detalji"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
-msgstr ""
+msgstr "Stanje Dokumenta Radnog Toka"
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr ""
+msgstr "Naziv Radnog Toka"
#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
-msgstr ""
+msgstr "Stanje Radnog Toka"
#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr ""
+msgstr "Polje stanja radnog toka"
#: frappe/model/workflow.py:61
msgid "Workflow State not set"
-msgstr ""
+msgstr "Stanje Radnog Toka nije postavljeno"
#: frappe/model/workflow.py:204 frappe/model/workflow.py:212
msgid "Workflow State transition not allowed from {0} to {1}"
-msgstr ""
+msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}"
#: frappe/workflow/doctype/workflow/workflow.js:140
msgid "Workflow States Don't Exist"
-msgstr ""
+msgstr "Stanja Radnog Toka ne postoje"
#: frappe/model/workflow.py:328
msgid "Workflow Status"
-msgstr ""
+msgstr "Status Radnog Toka"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
-msgstr ""
+msgstr "Prijelaz Radnog Toka"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow state represents the current state of a document."
-msgstr ""
+msgstr "Stanje Radnog Toka predstavlja trenutno stanje dokumenta."
#: frappe/public/js/workflow_builder/store.js:83
msgid "Workflow updated successfully"
-msgstr ""
+msgstr "Radni Tok je uspješno ažuriran"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
@@ -29129,43 +29185,43 @@ msgstr ""
#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
-msgstr ""
+msgstr "Radni Prostor"
#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
-msgstr ""
+msgstr "Radni Prostor {0} ne postoji"
#. Name of a DocType
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
-msgstr ""
+msgstr "Grafikon Radnog Prostora"
#. Name of a DocType
#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
-msgstr ""
+msgstr "Prilagođeni Blok Radnog Prostora"
#. Name of a DocType
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
-msgstr ""
+msgstr "Veza za Radni Prostor"
#. Name of a role
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
-msgstr ""
+msgstr "Upravitelj Radnog Prostora"
#. Name of a DocType
#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
-msgstr ""
+msgstr "Numerička Kartica Radnog Prostora"
#. Name of a DocType
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
-msgstr ""
+msgstr "Brza Lista Radnog Prostora"
#. Label of a standard navbar item
#. Type: Action
@@ -29173,45 +29229,45 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
#: frappe/hooks.py
msgid "Workspace Settings"
-msgstr ""
+msgstr "Postavke Radnog Prostora"
#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Setup Completed"
-msgstr ""
+msgstr "Postavljanje Radnog Prostora je završeno"
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
-msgstr ""
+msgstr "Prečica Radnog Prostora"
#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Visibility"
-msgstr ""
+msgstr "Vidljivost Radnog Prostora"
#: frappe/public/js/frappe/views/workspace/workspace.js:538
msgid "Workspace {0} created"
-msgstr ""
+msgstr "Radni Prostor {0} kreiran"
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
-msgstr ""
+msgstr "Radni Prostori"
#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
-msgstr ""
+msgstr "Želite li objaviti ovaj komentar? To znači da će postati vidljiv korisnicima web stranice/portala."
#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
-msgstr ""
+msgstr "Želite li poništiti objavu ovog komentara? To znači da više neće biti vidljiv korisnicima web stranice/portala."
#: frappe/desk/page/setup_wizard/setup_wizard.py:41
msgid "Wrapping up"
-msgstr ""
+msgstr "Završava se.."
#. Label of the write (Check) field in DocType 'Custom DocPerm'
#. Label of the write (Check) field in DocType 'DocPerm'
@@ -29222,57 +29278,57 @@ msgstr ""
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr ""
+msgstr "Piši"
#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
-msgstr ""
+msgstr "Pogrešno Peuzimanje iz vrijednosti"
#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
-msgstr ""
+msgstr "Polje Ose X"
#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr ""
+msgstr "X Polje"
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "XLSX"
-msgstr ""
+msgstr "XLSX"
#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr ""
+msgstr "Y Osa"
#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
-msgstr ""
+msgstr "Polja Ose Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
-msgstr ""
+msgstr "Y Polje"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Yahoo Mail"
-msgstr ""
+msgstr "Yahoo Mail"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Yandex.Mail"
-msgstr ""
+msgstr "Yandex.Mail"
#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart'
#. Label of the year (Data) field in DocType 'Company History'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/website/doctype/company_history/company_history.json
msgid "Year"
-msgstr ""
+msgstr "Godina"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -29290,14 +29346,14 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/utils/common.js:403
msgid "Yearly"
-msgstr ""
+msgstr "Godišnje"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
-msgstr ""
+msgstr "Žuta"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
@@ -29317,774 +29373,774 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
-msgstr ""
+msgstr "Da"
#: frappe/public/js/frappe/ui/messages.js:32
msgctxt "Approve confirmation dialog"
msgid "Yes"
-msgstr ""
+msgstr "Da"
#: frappe/public/js/frappe/ui/filters/filter.js:545
msgctxt "Checkbox is checked"
msgid "Yes"
-msgstr ""
+msgstr "Da"
#: frappe/public/js/frappe/ui/filters/filter.js:727
msgid "Yesterday"
-msgstr ""
+msgstr "Jučer"
#: frappe/public/js/frappe/utils/user.js:33
msgctxt "Name of the current user. For example: You edited this 5 hours ago."
msgid "You"
-msgstr ""
+msgstr "Vi"
#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
-msgstr ""
+msgstr "Svidjelo vam se"
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
-msgstr ""
+msgstr "Povezani ste na internet."
#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
msgid "You are impersonating as another user."
-msgstr ""
+msgstr "Predstavljate se kao neki drugi korisnik."
#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
msgid "You are not allowed to access this resource"
-msgstr ""
+msgstr "Nije vam dozvoljen pristup ovom resursu"
#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
-msgstr ""
+msgstr "Nije vam dozvoljen pristup ovom {0} zapisu jer je povezan sa {1} '{2}' u polju {3}"
#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
-msgstr ""
+msgstr "Nije vam dozvoljen pristup ovom zapisu {0} jer je povezan s {1} '{2}' u redu {3}, polju {4}"
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
-msgstr ""
+msgstr "Nije vam dozvoljeno da kreirate kolone"
#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
-msgstr ""
+msgstr "Nije vam dozvoljeno brisanje Standardnog Izvještaja"
#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
-msgstr ""
+msgstr "Nije vam dozvoljeno brisanje standardne Teme Web Stranice"
#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
-msgstr ""
+msgstr "Nije vam dozvoljeno uređivati izvještaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
-msgstr ""
+msgstr "Nije vam dozvoljeno da izvezete {} doctype"
#: frappe/public/js/frappe/views/treeview.js:448
msgid "You are not allowed to print this report"
-msgstr ""
+msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
#: frappe/public/js/frappe/views/communication.js:781
msgid "You are not allowed to send emails related to this document"
-msgstr ""
+msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom"
#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
-msgstr ""
+msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
-msgstr ""
+msgstr "Niste povezani na Internet. Pokušaj ponovo nakon nekog vremena."
#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
-msgstr ""
+msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave."
#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
-msgstr ""
+msgstr "Nije vam dozvoljen pristup ovoj stranici."
#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
-msgstr ""
+msgstr "Nemate dopuštenje za pristup ovom resursu. Prijavite se za pristup"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
-msgstr ""
+msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama."
#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
-msgstr ""
+msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije."
#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
-msgstr ""
+msgstr "Birate Opciju Sinhronizacije kao SVE, ona će ponovo sinhronizovati sve pročitane i nepročitane poruke sa servera. Ovo također može uzrokovati dupliciranje komunikacije (e-pošta)."
#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
-msgstr ""
+msgstr "Priložili ste {0}"
#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
-msgstr ""
+msgstr "Možete dodati dinamička svojstva iz dokumenta korištenjem Jinja šablona."
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
-msgstr ""
+msgstr "Također možete pristupiti wkhtmltopdf varijablama (važe samo u PDF ispis):"
#: frappe/templates/emails/new_user.html:22
msgid "You can also copy-paste following link in your browser"
-msgstr ""
+msgstr "Takođ možete kopirati i zalijepiti sljedeću vezu u svoj preglednik"
#: frappe/templates/emails/download_data.html:9
msgid "You can also copy-paste this "
-msgstr ""
+msgstr "Ovo također možete kopirati i zalijepiti "
#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
-msgstr ""
+msgstr "Također možete kopirati i zalijepiti ovo {0} u svoj pretraživač"
#: frappe/core/page/permission_manager/permission_manager_help.html:17
msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
+msgstr "Podnesene dokumente možete promijeniti tako što ćete ih poništiti, a zatim ih izmijeniti."
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
-msgstr ""
+msgstr "Pravila zadržavanja možete promijeniti u {0}."
#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
-msgstr ""
+msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu"
#: frappe/model/delete_doc.py:136
msgid "You can disable this {0} instead of deleting it."
-msgstr ""
+msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete."
#: frappe/core/doctype/file/file.py:736
msgid "You can increase the limit from System Settings."
-msgstr ""
+msgstr "Ograničenje možete povećati u Postavkama Sistema."
#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
-msgstr ""
+msgstr "Možete ručno ukloniti zaključavanje ako mislite da je sigurno: {}"
#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
-msgstr ""
+msgstr "Slike možete umetnuti samo u polja Markdown"
#: frappe/public/js/frappe/list/bulk_operations.js:42
msgid "You can only print upto {0} documents at a time"
-msgstr ""
+msgstr "Možete ispisati najviše {0} dokumenata odjednom"
#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
-msgstr ""
+msgstr "Možete postaviti samo tri prilagođena tipa dokumenata u tabeli Tipovi Dokumenata."
#: frappe/handler.py:182
msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
-msgstr ""
+msgstr "Možete otpremati samo JPG, PNG, PDF, TXT, CSV ili Microsoft dokumente."
#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
-msgstr ""
+msgstr "Možete učitati do 5000 zapisa u jednom potezu. (može biti manje u nekim slučajevima)"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "You can select one from the following,"
-msgstr ""
+msgstr "Možete odabrati jedan od sljedećih,"
#. Description of the 'Rate limit for email link login' (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "You can set a high value here if multiple users will be logging in from the same network."
-msgstr ""
+msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže."
#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
-msgstr ""
+msgstr "Možete pokušati promijeniti filtere vašeg izvještaja."
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "You can use Customize Form to set levels on fields."
-msgstr ""
+msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima."
#: frappe/public/js/frappe/form/link_selector.js:30
msgid "You can use wildcard %"
-msgstr ""
+msgstr "Možete koristiti zamjenski znak %"
#: frappe/custom/doctype/customize_form/customize_form.py:389
msgid "You can't set 'Options' for field {0}"
-msgstr ""
+msgstr "Ne možete postaviti 'Opcije' za polje {0}"
#: frappe/custom/doctype/customize_form/customize_form.py:393
msgid "You can't set 'Translatable' for field {0}"
-msgstr ""
+msgstr "Ne možete postaviti 'Prevodivo' za polje {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
msgid "You cancelled this document"
-msgstr ""
+msgstr "Otkazali ste ovaj dokument"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
msgctxt "Form timeline"
msgid "You cancelled this document {1}"
-msgstr ""
+msgstr "Otkazali ste ovaj dokument {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
-msgstr ""
+msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata"
#: frappe/custom/doctype/customize_form/customize_form.py:385
msgid "You cannot unset 'Read Only' for field {0}"
-msgstr ""
+msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
-msgstr ""
+msgstr "Promijenuli ste vrijednost {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
-msgstr ""
+msgstr "Promijenuli ste vrijednost {0} {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
-msgstr ""
+msgstr "Promijenuli ste vrijednosti za {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
-msgstr ""
+msgstr "Promijenuli ste vrijednosti za {0} {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
-msgstr ""
+msgstr "Promijenuli ste {0} u {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
-msgstr ""
+msgstr "Vi ste kreirali ovo"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
msgctxt "Form timeline"
msgid "You created this document {0}"
-msgstr ""
+msgstr "Izradili ste ovaj dokument {0}"
#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
+msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
-msgstr ""
+msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
-msgstr ""
+msgstr "Nemate dovoljno dozvola da dovršite radnju"
#: frappe/database/query.py:529
msgid "You do not have permission to access field: {0}"
-msgstr ""
+msgstr "Nemate dopuštenje za pristup polju: {0}"
#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
-msgstr ""
+msgstr "Nemate dozvolu za pristup {0}: {1}."
#: frappe/public/js/frappe/form/form.js:960
msgid "You do not have permissions to cancel all linked documents."
-msgstr ""
+msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
-msgstr ""
+msgstr "Nemate pristup Izvještaju: {0}"
#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
-msgstr ""
+msgstr "Nemate dozvolu za pristup {0} DocType."
#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
-msgstr ""
+msgstr "Nemate dozvolu za pristup ovoj datoteci"
#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
-msgstr ""
+msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}"
#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
-msgstr ""
+msgstr "Nemate dozvole za pristup ovom dokumentu"
#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from: "
-msgstr ""
+msgstr "Imate novu poruku od: "
#: frappe/handler.py:118
msgid "You have been successfully logged out"
-msgstr ""
+msgstr "Uspješno ste odjavljeni"
#: frappe/custom/doctype/customize_form/customize_form.py:244
msgid "You have hit the row size limit on database table: {0}"
-msgstr ""
+msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}"
#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
-msgstr ""
+msgstr "Niste unijeli vrijednost. Polje će biti prazno."
#: frappe/templates/includes/likes/likes.py:31
msgid "You have received a ❤️ like on your blog post"
-msgstr ""
+msgstr "Dobili ste ❤️ lajk na svom blog postu"
#: frappe/twofactor.py:432
msgid "You have to enable Two Factor Auth from System Settings."
-msgstr ""
+msgstr "Morate omogućiti Dvofaktorsku Autentifikaciju iz Postavki Sistema."
#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
-msgstr ""
+msgstr "Imate nespremljene promjene u ovoj formi. Spremi prije nego nastavite."
#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
msgid "You have unseen notifications"
-msgstr ""
+msgstr "Imate neviđene obavijesti"
#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
-msgstr ""
+msgstr "Niste vidjeli {0}"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
msgid "You haven't added any Dashboard Charts or Number Cards yet."
-msgstr ""
+msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice."
#: frappe/public/js/frappe/list/list_view.js:498
msgid "You haven't created a {0} yet"
-msgstr ""
+msgstr "{0} nema u sistemu"
#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
-msgstr ""
+msgstr "Dosegli ste ograničenje zbog previše zahtjeva. Molimo pokušajte nakon nekog vremena."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
-msgstr ""
+msgstr "Zadnji put ste uređivali ovo"
#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
-msgstr ""
+msgstr "Morate dodati barem jednu vezu."
#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
-msgstr ""
+msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
-msgstr ""
+msgstr "Morate se prijaviti da pošaljete ovu formu"
#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
-msgstr ""
+msgstr "Potrebna vam je '{0}' dozvola za {1} {2} da biste izvršili ovu radnju."
#: frappe/desk/doctype/workspace/workspace.py:127
msgid "You need to be Workspace Manager to delete a public workspace."
-msgstr ""
+msgstr "Morate biti Upravitelj Radnog Prostora da biste izbrisali javni radni prostor."
#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
-msgstr ""
+msgstr "Morate biti Upravitelj Radnog Prostora da biste uredili ovaj dokument"
#: frappe/www/attribution.py:16
msgid "You need to be a system user to access this page."
-msgstr ""
+msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
-msgstr ""
+msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu"
#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
-msgstr ""
+msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama."
#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
-msgstr ""
+msgstr "Morate biti prijavljeni da biste pristupili ovoj stranici"
#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
-msgstr ""
+msgstr "Morate biti prijavljeni da biste pristupili ovom {0}."
#: frappe/public/js/frappe/widgets/links_widget.js:63
msgid "You need to create these first: "
-msgstr ""
+msgstr "Prvo morate kreirati ove: "
#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
-msgstr ""
+msgstr "Morate omogućiti JavaScript da bi vaša aplikacija radila."
#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
-msgstr ""
+msgstr "Morate imati dozvolu \"Dijeli\""
#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
-msgstr ""
+msgstr "Morate instalirati pycups da biste koristili ovu funkciju!"
#: frappe/core/doctype/recorder/recorder.js:38
msgid "You need to select indexes you want to add first."
-msgstr ""
+msgstr "Prvo morate odabrati indekse koje želite dodati."
#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
-msgstr ""
+msgstr "Morate postaviti jednu IMAP mapu za {0}"
#: frappe/model/rename_doc.py:391
msgid "You need write permission on {0} {1} to merge"
-msgstr ""
+msgstr "Trebate dozvolu za pisanje na {0} {1} za spajanje"
#: frappe/model/rename_doc.py:386
msgid "You need write permission on {0} {1} to rename"
-msgstr ""
+msgstr "Trebate dozvolu za pisanje na {0} {1} da biste preimenovali"
#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
-msgstr ""
+msgstr "Trebate {0} dozvolu da preuzmete vrijednosti iz {1} {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
-msgstr ""
+msgstr "Uklonili ste prilog {0}"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
-msgstr ""
+msgstr "Izgleda da ste spremni!"
#: frappe/templates/includes/contact.js:20
msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
-msgstr ""
+msgstr "Čini se da ste napisali svoje ime umjesto e-pošte. Unesite ispravnu adresu e-pošte kako bismo vas mogli informisati."
#: frappe/public/js/frappe/list/bulk_operations.js:31
msgid "You selected Draft or Cancelled documents"
-msgstr ""
+msgstr "Izabrali ste Nacrt ili Otkazane dokumente"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
msgctxt "Form timeline"
msgid "You submitted this document"
-msgstr ""
+msgstr "Podnijeli ste ovaj dokument"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
msgctxt "Form timeline"
msgid "You submitted this document {0}"
-msgstr ""
+msgstr "Podnijeli ste ovaj dokument {0}"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
-msgstr ""
+msgstr "Prestali ste pratiti ovaj dokument"
#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
-msgstr ""
+msgstr "Prikazali ste ovo"
#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
-msgstr ""
+msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem."
#: frappe/core/doctype/prepared_report/prepared_report.js:57
msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
-msgstr ""
+msgstr "CSV datoteka se generira i pojavit će se u odjeljku Prilozi kada bude spremna. Osim toga, dobit ćete obavijest kada datoteka bude dostupna za preuzimanje."
#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
-msgstr ""
+msgstr "Vaša Zemlja"
#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
-msgstr ""
+msgstr "Vaš Jezik"
#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
-msgstr ""
+msgstr "Vaše Ime"
#: frappe/public/js/frappe/list/bulk_operations.js:132
msgid "Your PDF is ready for download"
-msgstr ""
+msgstr "Vaš PDF je spreman za preuzimanje"
#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
-msgstr ""
+msgstr "Vaše Prečice"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
-msgstr ""
+msgstr "Vaš Račun je izbrisan"
#: frappe/auth.py:514
msgid "Your account has been locked and will resume after {0} seconds"
-msgstr ""
+msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi"
#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
-msgstr ""
+msgstr "Vašu dodjelu {0} {1} je uklonio {2}"
#: frappe/core/doctype/file/file.js:73
msgid "Your browser does not support the audio element."
-msgstr ""
+msgstr "Vaš pretraživač ne podržava audio element."
#: frappe/core/doctype/file/file.js:55
msgid "Your browser does not support the video element."
-msgstr ""
+msgstr "Vaš pretraživač ne podržava video element."
#: frappe/templates/pages/integrations/gcalendar-success.html:11
msgid "Your connection request to Google Calendar was successfully accepted"
-msgstr ""
+msgstr "Vaš zahtjev za povezivanje sa Google Kalendarom je uspješno prihvaćen"
#: frappe/www/contact.html:35
msgid "Your email address"
-msgstr ""
+msgstr "Vaša adresa e-pošte"
#: frappe/public/js/frappe/web_form/web_form.js:428
msgid "Your form has been successfully updated"
-msgstr ""
+msgstr "Vaša forma je uspješno ažurirana"
#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
-msgstr ""
+msgstr "Vaš Id za prijavu je"
#: frappe/www/update-password.html:167
msgid "Your new password has been set successfully."
-msgstr ""
+msgstr "Vaša nova lozinka je uspješno postavljena."
#: frappe/www/update-password.html:147
msgid "Your old password is incorrect."
-msgstr ""
+msgstr "Vaša stara lozinka nije tačna."
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr ""
+msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
-msgstr ""
+msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
-msgstr ""
+msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
msgid "Your site is undergoing maintenance or being updated."
-msgstr ""
+msgstr "Vaša je stranica u toku održavanja ili ažuriranja."
#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
-msgstr ""
+msgstr "Vaš verifikacioni kod je {0}"
#: frappe/utils/data.py:1557
msgid "Zero"
-msgstr ""
+msgstr "Nula"
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr ""
+msgstr "Nula znači slanje zapisa ažuriranih u bilo koje vrijeme"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265
msgid "[Action taken by {0}]"
-msgstr ""
+msgstr "[Radnju preduzeta od {0}]"
#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_doctype"
-msgstr ""
+msgstr "_doctype"
#. Label of the _report (Link) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_report"
-msgstr ""
+msgstr "_izvješće"
#: frappe/database/database.py:361
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
-msgstr ""
+msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`"
#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
-msgstr ""
+msgstr "Paramater `job_id` je potreban za deduplikaciju."
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
-msgstr ""
+msgstr "dodao redove za {0}"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr ""
+msgstr "nakon_umetanja"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr ""
+msgstr "izmijeni"
#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
-msgstr ""
+msgstr "i"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "ascending"
-msgstr ""
+msgstr "uzlazno"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr ""
+msgstr "plava"
#: frappe/public/js/frappe/form/workflow.js:35
msgid "by Role"
-msgstr ""
+msgstr "po Ulozi"
#. Label of the profile (Code) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "cProfile Output"
-msgstr ""
+msgstr "cProfil Izlaz"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
msgid "calendar"
-msgstr ""
+msgstr "kalendar"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr ""
+msgstr "otkaži"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
-msgstr ""
+msgstr "otkazano"
#: frappe/templates/includes/list/filters.html:19
msgid "clear"
-msgstr ""
+msgstr "očisti"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
msgid "commented"
-msgstr ""
+msgstr "komentarisao"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr ""
+msgstr "kreiraj"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
-msgstr ""
+msgstr "cijan"
#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr ""
+msgstr "d"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "darkgrey"
-msgstr ""
+msgstr "tamno siva"
#: frappe/core/page/dashboard_view/dashboard_view.js:65
msgid "dashboard"
-msgstr ""
+msgstr "nadzorna tabla"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd-mm-yyyy"
-msgstr ""
+msgstr "dd/mm/gggg"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd.mm.yyyy"
-msgstr ""
+msgstr "dd.mm.gggg"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd/mm/yyyy"
-msgstr ""
+msgstr "dd/mm/gggg"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
-msgstr ""
+msgstr "standard"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
-msgstr ""
+msgstr "odloženo"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr ""
+msgstr "izbriši"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
-msgstr ""
+msgstr "silazno"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
-msgstr ""
+msgstr "tip dokumenta..., npr. klijent"
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr ""
+msgstr "npr. \"Podrška\", \"Prodaja\", \"Jerry Yang\""
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
-msgstr ""
+msgstr "npr. (55 + 434) / 4 ili =Math.sin(Math.PI/2)..."
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr ""
+msgstr "npr. pop.gmail.com / imap.gmail.com"
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr ""
+msgstr "npr. replies@yourcomany.com. Svi odgovori će stići u ovaj inbox."
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr ""
+msgstr "npr. smtp.gmail.com"
#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
-msgstr ""
+msgstr "npr.:"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "emacs"
-msgstr ""
+msgstr "emacs"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30093,367 +30149,367 @@ msgstr ""
#: frappe/core/doctype/permission_inspector/permission_inspector.json
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "email"
-msgstr ""
+msgstr "e-pošta"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "email inbox"
-msgstr ""
+msgstr "prijemno sanduče e-pošte"
#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
-msgstr ""
+msgstr "prazno"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr ""
+msgstr "izvoz"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "facebook"
-msgstr ""
+msgstr "facebook"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
-msgstr ""
+msgstr "neuspješno"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr ""
+msgstr "fairlogin"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
-msgstr ""
+msgstr "završeno"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
-msgstr ""
+msgstr "sivo"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr ""
+msgstr "zeleno"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "grey"
-msgstr ""
+msgstr "siva"
#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
-msgstr ""
+msgstr "gzip nije pronađen u PATH! Ovo je potrebno za izradu sigurnosne kopije."
#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
-msgstr ""
+msgstr "h"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296
msgid "hub"
-msgstr ""
+msgstr "čvorište"
#. Label of the icon (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr ""
+msgstr "ikona"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr ""
+msgstr "uvoz"
#. Description of the 'Read Time' (Int) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "in minutes"
-msgstr ""
+msgstr "u minutama"
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
-msgstr ""
+msgstr "jane@example.com"
#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
-msgstr ""
+msgstr "upravo sada"
#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
-msgstr ""
+msgstr "oznaka"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "light-blue"
-msgstr ""
+msgstr "svijetlo-plava"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "link"
-msgstr ""
+msgstr "veza"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr ""
+msgstr "linkedin"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "list"
-msgstr ""
+msgstr "lista"
#: frappe/www/third_party_apps.html:43
msgid "logged in"
-msgstr ""
+msgstr "prijavljen"
#: frappe/website/doctype/web_form/web_form.js:362
msgid "login_required"
-msgstr ""
+msgstr "prijava_potrebna"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
-msgstr ""
+msgstr "dugo"
#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr ""
+msgstr "m"
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
-msgstr ""
+msgstr "spojeno {0} u {1}"
#: frappe/website/doctype/blog_post/templates/blog_post.html:25
#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36
msgid "min read"
-msgstr ""
+msgstr "min čitanja"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr ""
+msgstr "mm-dd-gggg"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr ""
+msgstr "mm/dd/gggg"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "module"
-msgstr ""
+msgstr "modul"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
-msgstr ""
+msgstr "naziv modula..."
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160
msgid "new"
-msgstr ""
+msgstr "novi"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
msgid "new type of document"
-msgstr ""
+msgstr "nova vrsta dokumenta"
#. Label of the no_failed (Int) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr ""
+msgstr "nema neuspjelih pokušaja"
#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
-msgstr ""
+msgstr "jednokratno"
#. Label of the notified (Check) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
-msgstr ""
+msgstr "obaviješten"
#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
-msgstr ""
+msgstr "sad"
#: frappe/public/js/frappe/form/grid_pagination.js:116
msgid "of"
-msgstr ""
+msgstr "od"
#. Label of the old_parent (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr ""
+msgstr "stari_nadređeni"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_cancel"
-msgstr ""
+msgstr "na_otkazivanju"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr ""
+msgstr "na_promjeni"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_submit"
-msgstr ""
+msgstr "na_podnošenju"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr ""
+msgstr "na_smeću"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update"
-msgstr ""
+msgstr "na_ažuriranju"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update_after_submit"
-msgstr ""
+msgstr "na_ažuriranju_nakon_podnošenja"
#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
-msgstr ""
+msgstr "ili"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr ""
+msgstr "narandžasta"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "page"
-msgstr ""
+msgstr "stranica"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
-msgstr ""
+msgstr "roze"
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "plain"
-msgstr ""
+msgstr "običan"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr ""
+msgstr "ispiši"
#. Label of the processlist (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
-msgstr ""
+msgstr "lista procesa"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr ""
+msgstr "ljubičasta"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "query-report"
-msgstr ""
+msgstr "upit-izvještaj"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
-msgstr ""
+msgstr "u redu čekanja"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr ""
+msgstr "čitaj"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr ""
+msgstr "crveno"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234
msgid "removed rows for {0}"
-msgstr ""
+msgstr "uklonjeni redovi za {0}"
#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
-msgstr ""
+msgstr "preimenovan iz {0} u {1}"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr ""
+msgstr "izvještaj"
#. Label of the response (HTML) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr ""
+msgstr "odgovor"
#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
-msgstr ""
+msgstr "vraćeno {0} kao {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr ""
+msgstr "s"
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "s256"
-msgstr ""
+msgstr "s256"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
-msgstr ""
+msgstr "zakazano"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "select"
-msgstr ""
+msgstr "odaberi"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr ""
+msgstr "dijeli"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "short"
-msgstr ""
+msgstr "kratko"
#: frappe/public/js/frappe/widgets/number_card_widget.js:298
msgid "since last month"
-msgstr ""
+msgstr "od prošlog mjeseca"
#: frappe/public/js/frappe/widgets/number_card_widget.js:297
msgid "since last week"
@@ -30461,129 +30517,129 @@ msgstr "od prošlog tjedna"
#: frappe/public/js/frappe/widgets/number_card_widget.js:299
msgid "since last year"
-msgstr ""
+msgstr "od prosle godine"
#: frappe/public/js/frappe/widgets/number_card_widget.js:296
msgid "since yesterday"
-msgstr ""
+msgstr "od jučer"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
-msgstr ""
+msgstr "pokrenut"
#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
-msgstr ""
+msgstr "počinje postavljanje..."
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
-msgstr ""
+msgstr "string vrijednost, tj. grupa"
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
-msgstr ""
+msgstr "string vrijednost, tj. član"
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
-msgstr ""
+msgstr "vrijednost stringa, tj. {0} ili uid={0},ou=korisnici,dc=primjer,dc=com"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr ""
+msgstr "podnesi"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
-msgstr ""
+msgstr "naziv oznake..., npr. #tag"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
-msgstr ""
+msgstr "tekst u vrsti dokumenta"
#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
-msgstr ""
+msgstr "ova forma"
#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
-msgstr ""
+msgstr "ovo ne bi trebalo da se pokvari"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr ""
+msgstr "twitter"
#: frappe/public/js/frappe/change_log.html:7
msgid "updated to {0}"
-msgstr ""
+msgstr "ažurirano na {0}"
#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
-msgstr ""
+msgstr "koristi % kao zamjenski znak"
#: frappe/public/js/frappe/ui/filters/filter.js:360
msgid "values separated by commas"
-msgstr ""
+msgstr "vrijednosti odvojene zarezima"
#. Label of the version_table (HTML) field in DocType 'Audit Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
-msgstr ""
+msgstr "verzija_tabele"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
-msgstr ""
+msgstr "preko Pravila Dodjele"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
msgid "via Auto Repeat"
-msgstr ""
+msgstr "putem Automatskog Ponavljanja"
#: frappe/core/doctype/data_import/importer.py:271
#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
-msgstr ""
+msgstr "putem Uvoza Podataka"
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
-msgstr ""
+msgstr "putem Google Meet"
#: frappe/email/doctype/notification/notification.py:361
msgid "via Notification"
-msgstr ""
+msgstr "putem Obavijesti"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
-msgstr ""
+msgstr "preko {0}"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "vim"
-msgstr ""
+msgstr "vim"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "vscode"
-msgstr ""
+msgstr "vscode"
#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
-msgstr ""
+msgstr "želi pristupiti sljedećim detaljima vašeg računa"
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
-msgstr ""
+msgstr "kada se klikne na element, on će fokusirati skočni prozor ako postoji."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -30592,675 +30648,675 @@ msgstr "wkhtmltopdf"
#: frappe/printing/page/print/print.js:622
msgid "wkhtmltopdf 0.12.x (with patched qt)."
-msgstr ""
+msgstr "wkhtmltopdf 0.12.x (sa zakrpljenim qt-om)."
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr ""
+msgstr "pisati"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr ""
+msgstr "žuta"
#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
-msgstr ""
+msgstr "juče"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr ""
+msgstr "gggg-mm-dd"
#: frappe/desk/doctype/event/event.js:87
#: frappe/public/js/frappe/form/footer/form_timeline.js:547
msgid "{0}"
-msgstr ""
+msgstr "{0}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193
msgid "{0} ${skip_list ? \"\" : type}"
-msgstr ""
+msgstr "{0} ${skip_list ? \"\" : tip}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198
msgid "{0} ${type}"
-msgstr ""
+msgstr "{0} ${type}"
#: frappe/public/js/frappe/data_import/data_exporter.js:80
#: frappe/public/js/frappe/views/gantt/gantt_view.js:54
msgid "{0} ({1})"
-msgstr ""
+msgstr "{0} ({1})"
#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr ""
+msgstr "{0} ({1}) (1 red obavezan)"
#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
-msgstr ""
+msgstr "{0} ({1}) - {2}%"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
msgid "{0} = {1}"
-msgstr ""
+msgstr "{0} = {1}"
#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
-msgstr ""
+msgstr "{0} Kalendar"
#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
-msgstr ""
+msgstr "{0} Grafikon"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
-msgstr ""
+msgstr "{0} Nadzorna Tabla"
#: frappe/public/js/frappe/form/grid_row.js:470
#: frappe/public/js/frappe/list/list_settings.js:227
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
-msgstr ""
+msgstr "{0} Polja"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
-msgstr ""
+msgstr "{0} Događaji Google Kalendara su sinhronizovani."
#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
-msgstr ""
+msgstr "{0} Google Kontakti su sinhronizovani."
#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
-msgstr ""
+msgstr "{0} Lajkade"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
#: frappe/www/list.html:8
msgid "{0} List"
-msgstr ""
+msgstr "{0} Lista"
#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
-msgstr ""
+msgstr "{0} M"
#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
-msgstr ""
+msgstr "{0} Karta"
#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
-msgstr ""
+msgstr "{0} Naziv"
#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
-msgstr ""
+msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
#: frappe/public/js/frappe/widgets/chart_widget.js:366
msgid "{0} Report"
-msgstr ""
+msgstr "{0} Izvještaj"
#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
-msgstr ""
+msgstr "{0} Izvještaji"
#: frappe/public/js/frappe/list/list_settings.js:32
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
-msgstr ""
+msgstr "{0} Postavke"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
#: frappe/public/js/frappe/views/treeview.js:152
msgid "{0} Tree"
-msgstr ""
+msgstr "{0} Stablo"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
-msgstr ""
+msgstr "{0} Prikaza Web Stranice"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
msgid "{0} Workspace"
-msgstr ""
+msgstr "{0} Radni Prostor"
#: frappe/public/js/frappe/form/link_selector.js:225
msgid "{0} added"
-msgstr ""
+msgstr "{0} dodano"
#: frappe/public/js/frappe/form/controls/data.js:204
msgid "{0} already exists. Select another name"
-msgstr ""
+msgstr "{0} već postoji. Odaberite drugo ime"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
-msgstr ""
+msgstr "{0} je već odjavljen"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
-msgstr ""
+msgstr "{0} je već otkazan za {1} {2}"
#: frappe/utils/data.py:1750
msgid "{0} and {1}"
-msgstr ""
+msgstr "{0} i {1}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr ""
+msgstr "{0} su trenutno {1}"
#: frappe/printing/doctype/print_format/print_format.py:89
msgid "{0} are required"
-msgstr ""
+msgstr "{0} su obavezni"
#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
-msgstr ""
+msgstr "{0} vam je dodijelio novi zadatak {1} {2}"
#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
-msgstr ""
+msgstr "{0} dodijeljen {1}: {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
-msgstr ""
+msgstr "{0} priloženo {1}"
#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
-msgstr ""
+msgstr "{0} ne može biti više od {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
-msgstr ""
+msgstr "{0} je otkazao ovaj dokument"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
-msgstr ""
+msgstr "{0} je otkazao ovaj dokument {1}"
#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
-msgstr ""
+msgstr "{0} ne može se mijenjati jer nije otkazan. Molimo otkažite dokument prije kreiranja izmjene."
#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
-msgstr ""
+msgstr "{0} ne može biti skriven i obavezan bez ikakve zadane vrijednosti"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
-msgstr ""
+msgstr "{0} promijenio vrijednost {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
-msgstr ""
+msgstr "{0} promijenio vrijednost {1} {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
-msgstr ""
+msgstr "{0} promijenio je vrijednosti za {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
-msgstr ""
+msgstr "{0} promijenio vrijednosti za {1} {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
-msgstr ""
+msgstr "{0} promijenio(la) {1} u {2}"
#: frappe/website/doctype/blog_post/blog_post.py:382
msgid "{0} comments"
-msgstr ""
+msgstr "{0} komentara"
#: frappe/core/doctype/doctype/doctype.py:1605
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
-msgstr ""
+msgstr "{0} sadrži nevažeći izraz Preuzmi Iz, Preuzmi Iz ne može biti samoreferencijalan."
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
-msgstr ""
+msgstr "{0} je uspješno kreiran"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
-msgstr ""
+msgstr "{0} je kreirao(la) ovo"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
msgctxt "Form timeline"
msgid "{0} created this document {1}"
-msgstr ""
+msgstr "{0} je stvorio/la ovaj dokument {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
-msgstr ""
+msgstr "{0} d"
#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
-msgstr ""
+msgstr "{0} dana prije"
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
-msgstr ""
+msgstr "{0} ne postoji u redu {1}"
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
-msgstr ""
+msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti"
#: frappe/database/query.py:708
msgid "{0} fields cannot contain backticks (`): {1}"
-msgstr ""
+msgstr "{0} polja ne mogu sadržavati povratne crte (`): {1}"
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
-msgstr ""
+msgstr "{0} format nije mogao biti određen iz vrijednosti u ovoj koloni. Standard je {1}."
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
-msgstr ""
+msgstr "{0} od {1} do {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
-msgstr ""
+msgstr "{0} od {1} do {2} u redu #{3}"
#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
-msgstr ""
+msgstr "{0} h"
#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
-msgstr ""
+msgstr "{0} je već dodijelio(la) standard vrijednost za {1}."
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
-msgstr ""
+msgstr "{0} je napustio(la) konverzaciju u {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
-msgstr ""
+msgstr "{0} sati prije"
#: frappe/website/doctype/web_form/templates/web_form.html:148
msgid "{0} if you are not redirected within {1} seconds"
-msgstr ""
+msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi"
#: frappe/website/doctype/website_settings/website_settings.py:102
#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
-msgstr ""
+msgstr "{0} u redu {1} ne može imati i URL i podređene artikle"
#: frappe/core/doctype/doctype/doctype.py:934
msgid "{0} is a mandatory field"
-msgstr ""
+msgstr "{0} je obavezno polje"
#: frappe/core/doctype/file/file.py:544
msgid "{0} is a not a valid zip file"
-msgstr ""
+msgstr "{0} nije važeća zip datoteka"
#: frappe/core/doctype/doctype/doctype.py:1618
msgid "{0} is an invalid Data field."
-msgstr ""
+msgstr "{0} je nevažeće polje podataka."
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154
msgid "{0} is an invalid email address in 'Recipients'"
-msgstr ""
+msgstr "{0} je nevažeća adresa e-pošte u 'Primatelji'"
#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
-msgstr ""
+msgstr "{0} je između {1} i {2}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr ""
+msgstr "{0} je trenutno {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
-msgstr ""
+msgstr "{0} je jednako {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
-msgstr ""
+msgstr "{0} je veće ili jednako {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
-msgstr ""
+msgstr "{0} je veće od {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
-msgstr ""
+msgstr "{0} je manje ili jednako {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
-msgstr ""
+msgstr "{0} je manje od {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
-msgstr ""
+msgstr "{0} je kao {1}"
#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
-msgstr ""
+msgstr "{0} je obavezan"
#: frappe/database/query.py:485
msgid "{0} is not a child table of {1}"
-msgstr ""
+msgstr "{0} nije podređena tablica od {1}"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
-msgstr ""
+msgstr "{0} nije polje tipa dokumenta {1}"
#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
-msgstr ""
+msgstr "{0} nije direktni format za ispisivanje."
#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
-msgstr ""
+msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar."
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
-msgstr ""
+msgstr "{0} nije važeći Cron izraz."
#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
msgid "{0} is not a valid DocType for Dynamic Link"
-msgstr ""
+msgstr "{0} nije važeća DocType za dinamičku vezu"
#: frappe/email/doctype/email_group/email_group.py:131
#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
-msgstr ""
+msgstr "{0} nije važeća adresa e-pošte"
#: frappe/geo/doctype/country/country.py:30
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod."
#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
-msgstr ""
+msgstr "{0} nije važeće Ime"
#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
-msgstr ""
+msgstr "{0} nije ispravan broj telefona"
#: frappe/model/workflow.py:189
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
-msgstr ""
+msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo."
#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
-msgstr ""
+msgstr "{0} nije važeći nadređeni DocType za {1}"
#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
-msgstr ""
+msgstr "{0} nije važeće nadređeno polje za {1}"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
msgid "{0} is not a valid report format. Report format should one of the following {1}"
-msgstr ""
+msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}"
#: frappe/core/doctype/file/file.py:524
msgid "{0} is not a zip file"
-msgstr ""
+msgstr "{0} nije zip datoteka"
#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
-msgstr ""
+msgstr "{0} nije jednako {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
-msgstr ""
+msgstr "{0} nije kao {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
-msgstr ""
+msgstr "{0} nije jedno od {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
-msgstr ""
+msgstr "{0} nije postavljeno"
#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
-msgstr ""
+msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
-msgstr ""
+msgstr "{0} je jedan od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
#: frappe/printing/doctype/print_format/print_format.py:92
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
-msgstr ""
+msgstr "{0} je obavezan"
#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
-msgstr ""
+msgstr "{0} je postavljeno"
#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
-msgstr ""
+msgstr "{0} je unutar {1}"
#: frappe/public/js/frappe/list/list_view.js:1694
msgid "{0} items selected"
-msgstr ""
+msgstr "{0} artikala odabrano"
#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
-msgstr ""
+msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
-msgstr ""
+msgstr "{0} je zadnji put uredio ovo"
#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
-msgstr ""
+msgstr "{0} prijavljen"
#: frappe/core/doctype/activity_log/feed.py:19
msgid "{0} logged out: {1}"
-msgstr ""
+msgstr "{0} odjavljen: {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:27
msgid "{0} m"
-msgstr ""
+msgstr "{0} m"
#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
-msgstr ""
+msgstr "{0} vas je spomenuo u komentaru u {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:50
msgid "{0} minutes ago"
-msgstr ""
+msgstr "prije {0} minuta"
#: frappe/public/js/frappe/utils/pretty_date.js:68
msgid "{0} months ago"
-msgstr ""
+msgstr "{0} mjeseci prije"
#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
-msgstr ""
+msgstr "{0} mora biti iza {1}"
#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
-msgstr ""
+msgstr "{0} mora početi sa '{1}'"
#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
-msgstr ""
+msgstr "{0} mora biti jednako '{1}'"
#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
-msgstr ""
+msgstr "{0} ne smije biti ni jedna od {1}"
#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
-msgstr ""
+msgstr "{0} mora biti jedan od {1}"
#: frappe/model/base_document.py:876
msgid "{0} must be set first"
-msgstr ""
+msgstr "{0} se mora prvo postaviti"
#: frappe/model/base_document.py:729
msgid "{0} must be unique"
-msgstr ""
+msgstr "{0} mora biti jedinstven"
#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
-msgstr ""
+msgstr "{0} mora biti {1} {2}"
#: frappe/core/doctype/language/language.py:79
msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore."
-msgstr ""
+msgstr "{0} mora početi i završavati slovom i može sadržavati samo slova, crticu ili donju crticu."
#: frappe/workflow/doctype/workflow/workflow.py:90
msgid "{0} not a valid State"
-msgstr ""
+msgstr "{0} nije važeća Zemlja"
#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
-msgstr ""
+msgstr "{0} nije dozvoljeno preimenovati"
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
-msgstr ""
+msgstr "{0} nije pronađen"
#: frappe/core/doctype/report/report.py:427
#: frappe/public/js/frappe/list/list_view.js:1068
msgid "{0} of {1}"
-msgstr ""
+msgstr "{0} od {1}"
#: frappe/public/js/frappe/list/list_view.js:1070
msgid "{0} of {1} ({2} rows with children)"
-msgstr ""
+msgstr "{0} od {1} ({2} redovi sa potomcima)"
#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
-msgstr ""
+msgstr "Samo {0}."
#: frappe/utils/data.py:1740
msgid "{0} or {1}"
-msgstr ""
+msgstr "{0} ili {1}"
#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
-msgstr ""
+msgstr "{0} zapis(a) obrisan(o)"
#: frappe/public/js/frappe/logtypes.js:22
msgid "{0} records are not automatically deleted."
-msgstr ""
+msgstr "{0} zapis(a) nije obrisan(o) automatski."
#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
-msgstr ""
+msgstr "{0} zapis(a) su zadržana {1} dana."
#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
-msgstr ""
+msgstr "{0} zapis(a) je obrisan(o)"
#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr ""
+msgstr "{0} zapis(a) će biti izvezen(o)"
#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
-msgstr ""
+msgstr "{0} uklonio prilog {1}"
#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
-msgstr ""
+msgstr "{0} je uklonio(la) svoju dodjelu."
#: frappe/public/js/frappe/roles_editor.js:62
msgid "{0} role does not have permission on any doctype"
-msgstr ""
+msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
-msgstr ""
+msgstr "{0} red #{1}: "
#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
-msgstr ""
+msgstr "{0} uspješno spremljen"
#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
-msgstr ""
+msgstr "{0} je sam sebi dodijelio ovaj zadatak: {1}"
#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
-msgstr ""
+msgstr "{0} podijelio(la) dokument {1} {2} s vama"
#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
-msgstr ""
+msgstr "{0} je podijelio(la) ovaj dokument sa svima"
#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
-msgstr ""
+msgstr "{0} podijelio(la) ovaj dokument sa {1}"
#: frappe/core/doctype/doctype/doctype.py:316
msgid "{0} should be indexed because it's referred in dashboard connections"
-msgstr ""
+msgstr "{0} treba indeksirati jer se poziva na konekcije nadzorne table"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141
msgid "{0} should not be same as {1}"
-msgstr ""
+msgstr "{0} ne bi trebalo biti isto kao {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
-msgstr ""
+msgstr "{0} je podnio ovaj dokument"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
msgctxt "Form timeline"
msgid "{0} submitted this document {1}"
-msgstr ""
+msgstr "{0} je podnio ovaj dokument {1}"
#: frappe/email/doctype/email_group/email_group.py:62
#: frappe/email/doctype/email_group/email_group.py:133
msgid "{0} subscribers added"
-msgstr ""
+msgstr "{0} pretplatnika je dodano"
#: frappe/email/queue.py:68
msgid "{0} to stop receiving emails of this type"
-msgstr ""
+msgstr "{0} da prestanete primati e-poštu ovog tipa"
#: frappe/public/js/frappe/form/controls/date_range.js:48
#: frappe/public/js/frappe/form/controls/date_range.js:64
#: frappe/public/js/frappe/form/formatters.js:234
msgid "{0} to {1}"
-msgstr ""
+msgstr "{0} do {1}"
#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
-msgstr ""
+msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}"
#: frappe/custom/doctype/customize_form/customize_form.py:253
msgid "{0} updated"
-msgstr ""
+msgstr "{0} ažurirano"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
-msgstr ""
+msgstr "{0} vrijednosti odabrane"
#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
-msgstr ""
+msgstr "{0} je prikazao ovo"
#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr ""
+msgstr "{0} w"
#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
@@ -31268,237 +31324,237 @@ msgstr "prije {0} tjedana"
#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
-msgstr ""
+msgstr "{0} g"
#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
-msgstr ""
+msgstr "{0} godina prije"
#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
-msgstr ""
+msgstr "{0} {1} dodano"
#: frappe/public/js/frappe/utils/dashboard_utils.js:270
msgid "{0} {1} added to Dashboard {2}"
-msgstr ""
+msgstr "{0} {1} dodan na Nadzornu Ploču {2}"
#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
-msgstr ""
+msgstr "{0} {1} već postoji"
#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
-msgstr ""
+msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\""
#: frappe/utils/nestedset.py:340
msgid "{0} {1} cannot be a leaf node as it has children"
-msgstr ""
+msgstr "{0} {1} ne može biti nadređeni jer ima podređene"
#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
-msgstr ""
+msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
#: frappe/public/js/frappe/form/form.js:951
msgid "{0} {1} is linked with the following submitted documents: {2}"
-msgstr ""
+msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
-msgstr ""
+msgstr "{0} {1} nije pronađeno"
#: frappe/model/delete_doc.py:247
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
-msgstr ""
+msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}."
#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
-msgstr ""
+msgstr "{0}, Red {1}"
#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "{0}/{1} complete | Please leave this tab open until completion."
-msgstr ""
+msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka."
#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
-msgstr ""
+msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}"
#: frappe/core/doctype/doctype/doctype.py:1800
msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
+msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži"
#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
+msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo"
#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
+msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo"
#: frappe/core/doctype/doctype/doctype.py:1795
msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
+msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi"
#: frappe/core/doctype/doctype/doctype.py:1802
msgid "{0}: Cannot set Import without Create"
-msgstr ""
+msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja"
#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
+msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši"
#: frappe/core/doctype/doctype/doctype.py:1822
msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
+msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
-msgstr ""
+msgstr "{0}: Nije uspjelo prilaganje novog ponavljajućeg dokumenta. Da biste omogućili prilaganje dokumenta u automatskom ponavljanju obavijesti e-pošte, omogući {1} u Postavkama Ispisa"
#: frappe/core/doctype/doctype/doctype.py:1426
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
-msgstr ""
+msgstr "{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima nejedinstvene vrijednosti"
#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr ""
+msgstr "{0}: Polje {1} u redu {2} ne može biti skriveno i obavezno bez standardnog"
#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr ""
+msgstr "{0}: Polje {1} tipa {2} ne može biti obavezno"
#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
-msgstr ""
+msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}"
#: frappe/core/doctype/doctype/doctype.py:1413
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
-msgstr ""
+msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven"
#: frappe/core/doctype/doctype/doctype.py:1755
msgid "{0}: No basic permissions set"
-msgstr ""
+msgstr "{0}: Nisu postavljene osnovne dozvole"
#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
-msgstr ""
+msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}"
#: frappe/core/doctype/doctype/doctype.py:1315
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
-msgstr ""
+msgstr "{0}: Opcije moraju biti važeći DocType za polje {1} u redu {2}"
#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
-msgstr ""
+msgstr "{0}: Obavezne opcije za polje Tip Veze ili Tabele {1} u redu {2}"
#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
-msgstr ""
+msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {3}"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "{0}: Other permission rules may also apply"
-msgstr ""
+msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama"
#: frappe/core/doctype/doctype/doctype.py:1784
msgid "{0}: Permission at level 0 must be set before higher levels are set"
-msgstr ""
+msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa"
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
-msgstr ""
+msgstr "{0}: Možete povećati ograničenje za polje ako je potrebno preko {1}"
#: frappe/core/doctype/doctype/doctype.py:1268
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
-msgstr ""
+msgstr "{0}: naziv polja ne može se postaviti na rezerviranu ključnu riječ {1}"
#: frappe/contacts/doctype/address/address.js:35
#: frappe/contacts/doctype/contact/contact.js:88
msgid "{0}: {1}"
-msgstr ""
+msgstr "{0}: {1}"
#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
-msgstr ""
+msgstr "{0}: {1} je postavljeno na stanje {2}"
#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
-msgstr ""
+msgstr "{0}: {1} naspram {2}"
#: frappe/core/doctype/doctype/doctype.py:1434
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
-msgstr ""
+msgstr "{0}:Tip polja {1} za {2} ne može se indeksirati"
#: frappe/public/js/frappe/form/quick_entry.js:195
msgid "{1} saved"
-msgstr ""
+msgstr "{1} spremljen"
#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
-msgstr ""
+msgstr "{count} ćelija kopirana"
#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
-msgstr ""
+msgstr "{count} ćelija kopirano"
#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
-msgstr ""
+msgstr "{count} red odabran"
#: frappe/public/js/frappe/utils/datatable.js:17
msgid "{count} rows selected"
-msgstr ""
+msgstr "{count} redova odabrano"
#: frappe/core/doctype/doctype/doctype.py:1488
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
-msgstr ""
+msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_name}}."
#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
-msgstr ""
+msgstr "{} Završeno"
#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
-msgstr ""
+msgstr "{} Nevažeći python kod na liniji {}"
#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
-msgstr ""
+msgstr "{} Možda nevažeći python kod.
{}"
#. Count format of shortcut in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "{} Published"
-msgstr ""
+msgstr "{} Objavljeno"
#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
-msgstr ""
+msgstr "{} ne podržava automatsko brisanje dnevnika."
#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
-msgstr ""
+msgstr "Polje {} ne može biti prazno."
#: frappe/email/doctype/email_account/email_account.py:223
#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
-msgstr ""
+msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}."
#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
-msgstr ""
+msgstr "{} nije ispravan datumski niz."
#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
-msgstr ""
+msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli."
#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
-msgstr ""
+msgstr "{} nije pronađeno u PATH! Ovo je potrebno za vraćanje baze podataka."
#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
-msgstr ""
+msgstr "{} nije pronađeno u PATH! Ovo je potrebno za izradu sigurnosne kopije."
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
msgid "← Back to upload files"
-msgstr ""
+msgstr "← Nazad na učitavanje datoteka"
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 86f89ad98b..92785decf6 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-28 17:46\n"
+"PO-Revision-Date: 2025-06-29 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -5598,7 +5598,7 @@ msgstr "Kunde inte mappa kolumn {0} till fält {1}"
#: frappe/database/query.py:564
msgid "Could not parse field: {0}"
-msgstr "Kunde inte tolka fält: {0}"
+msgstr "Kunde inte parsa fält: {0}"
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
@@ -9272,7 +9272,7 @@ msgstr "Fel i {0}.get_list: {1}"
#: frappe/database/query.py:231
msgid "Error parsing nested filters: {0}"
-msgstr "Fel vid tolkning av nästlade filter: {0}"
+msgstr "Fel vid parsning av nästlade filter: {0}"
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po
index 75d9a5dfbe..38dc8437b0 100644
--- a/frappe/locale/tr.po
+++ b/frappe/locale/tr.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"PO-Revision-Date: 2025-06-29 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -1435,7 +1435,7 @@ msgstr "Yeni {0}"
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Added"
-msgstr "Eklendi"
+msgstr ""
#. Description of the '<head> HTML' (Code) field in DocType 'Website
#. Settings'
From caf10658630c4b58f5129e38455bce51fe760726 Mon Sep 17 00:00:00 2001
From: avc <94137451+git-avc@users.noreply.github.com>
Date: Mon, 30 Jun 2025 06:45:31 +0200
Subject: [PATCH 060/211] fix: add translatable strings for file upload dialog
on webform (#33156)
* fix: add webform translatable strings
* fix: linters
---
frappe/website/doctype/web_form/web_form.py | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/frappe/website/doctype/web_form/web_form.py b/frappe/website/doctype/web_form/web_form.py
index c426e79e94..4a27762dd8 100644
--- a/frappe/website/doctype/web_form/web_form.py
+++ b/frappe/website/doctype/web_form/web_form.py
@@ -286,6 +286,25 @@ def get_context(context):
"Validation Error",
"No {0} found",
"Create a new {0}",
+ "Drag and drop files here or upload from",
+ "My Device",
+ "Link",
+ "Camera",
+ "Upload",
+ "Set all public",
+ "Set all private",
+ "Public",
+ "Private",
+ "Optimize",
+ "Drop files here",
+ "Take Photo",
+ "No Images",
+ "Total Images",
+ "Preview",
+ "Submit",
+ "Capture",
+ "Attach a web link",
+ "← Back to upload files",
self.title,
self.introduction_text,
self.success_title,
From 85730ee46010294dfacbe04fe643caec81b0de99 Mon Sep 17 00:00:00 2001
From: Niraj Gautam
e.g. project",
@@ -72,10 +77,6 @@
"label": "Scopes",
"reqd": 1
},
- {
- "fieldname": "cb_3",
- "fieldtype": "Column Break"
- },
{
"description": "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook",
"fieldname": "redirect_uris",
@@ -121,10 +122,77 @@
"fieldtype": "Table MultiSelect",
"label": "Allowed Roles",
"options": "OAuth Client Role"
+ },
+ {
+ "fieldname": "client_metadata_section",
+ "fieldtype": "Section Break",
+ "label": "Client Metadata"
+ },
+ {
+ "depends_on": "eval: doc.client_uri",
+ "description": "URL of a web page providing information about the client.",
+ "fieldname": "client_uri",
+ "fieldtype": "Data",
+ "label": "Client URI"
+ },
+ {
+ "fieldname": "column_break_htfq",
+ "fieldtype": "Column Break"
+ },
+ {
+ "depends_on": "eval: doc.client_uri",
+ "description": "URL that references a logo for the client.",
+ "fieldname": "logo_uri",
+ "fieldtype": "Data",
+ "label": "Logo URI"
+ },
+ {
+ "fieldname": "section_break_ggiv",
+ "fieldtype": "Section Break"
+ },
+ {
+ "depends_on": "eval: doc.software_id",
+ "description": "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n
\nShould remain same across multiple versions or updates of the software.",
+ "fieldname": "software_id",
+ "fieldtype": "Data",
+ "label": "Software ID"
+ },
+ {
+ "fieldname": "column_break_ziii",
+ "fieldtype": "Column Break"
+ },
+ {
+ "depends_on": "eval: doc.software_version",
+ "description": "A version identifier string for the client software.\n
\nThe value of the should change on any update of the client software with the same Software ID.",
+ "fieldname": "software_version",
+ "fieldtype": "Data",
+ "label": "Software Version"
+ },
+ {
+ "depends_on": "eval: doc.tos_uri",
+ "description": "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing.",
+ "fieldname": "tos_uri",
+ "fieldtype": "Data",
+ "label": "TOS URI"
+ },
+ {
+ "depends_on": "eval: doc.policy_uri",
+ "description": "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing.",
+ "fieldname": "policy_uri",
+ "fieldtype": "Data",
+ "label": "Policy URI"
+ },
+ {
+ "depends_on": "eval: doc.contacts",
+ "description": "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses.",
+ "fieldname": "contacts",
+ "fieldtype": "Small Text",
+ "label": "Contacts"
}
],
+ "grid_page_length": 50,
"links": [],
- "modified": "2024-04-29 12:07:07.946980",
+ "modified": "2025-07-02 11:52:00.978956",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Client",
@@ -143,6 +211,7 @@
"write": 1
}
],
+ "row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "DESC",
"states": [],
diff --git a/frappe/integrations/doctype/oauth_client/oauth_client.py b/frappe/integrations/doctype/oauth_client/oauth_client.py
index 4b084898fb..7d974e3e35 100644
--- a/frappe/integrations/doctype/oauth_client/oauth_client.py
+++ b/frappe/integrations/doctype/oauth_client/oauth_client.py
@@ -21,12 +21,19 @@ class OAuthClient(Document):
app_name: DF.Data
client_id: DF.Data | None
client_secret: DF.Data | None
+ client_uri: DF.Data | None
+ contacts: DF.SmallText | None
default_redirect_uri: DF.Data
grant_type: DF.Literal["Authorization Code", "Implicit"]
+ logo_uri: DF.Data | None
+ policy_uri: DF.Data | None
redirect_uris: DF.Text | None
response_type: DF.Literal["Code", "Token"]
scopes: DF.Text
skip_authorization: DF.Check
+ software_id: DF.Data | None
+ software_version: DF.Data | None
+ tos_uri: DF.Data | None
user: DF.Link | None
# end: auto-generated types
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 187de58bd8..c47fe7467b 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -1,13 +1,22 @@
+import datetime
import json
+from typing import cast
from urllib.parse import quote, urlencode, urlparse
from oauthlib.oauth2 import FatalClientError, OAuth2Error
from oauthlib.openid.connect.core.endpoints.pre_configured import Server as WebApplicationServer
+from pydantic import ValidationError
+from werkzeug import Response
import frappe
from frappe.integrations.doctype.oauth_provider_settings.oauth_provider_settings import (
get_oauth_settings,
)
+from frappe.integrations.utils import (
+ OAuth2DynamicClientMetadata,
+ create_new_oauth_client,
+ validate_dynamic_client_metadata,
+)
from frappe.oauth import (
OAuthWebRequestValidator,
generate_json_error_response,
@@ -287,6 +296,73 @@ def _get_authorization_server_metadata():
revocation_endpoint_auth_methods_supported=["client_secret_basic"],
introspection_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.introspect_token",
userinfo_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.openid_profile",
- # registration_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.register_client", # TODO: RFC 7591
- # scopes_supported=[],
+ registration_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.register_client",
)
+
+
+@frappe.whitelist(allow_guest=True)
+def register_client():
+ """
+ Registers an OAuth client.
+
+ Reference: https://datatracker.ietf.org/doc/html/rfc7591
+ """
+
+ response = Response()
+ response.mimetype = "application/json"
+ data = frappe.request.json
+
+ if data is None:
+ response.status_code = 400
+ response.data = frappe.as_json(
+ {
+ "error": "invalid_client_metadata",
+ "error_description": "Request body is empty",
+ }
+ )
+ return response
+
+ try:
+ client = OAuth2DynamicClientMetadata.model_validate(data)
+ except ValidationError as e:
+ response.status_code = 400
+ response.data = frappe.as_json({"error": "invalid_client_metadata", "error_description": str(e)})
+ return response
+
+ if error := validate_dynamic_client_metadata(client):
+ response.status_code = 400
+ response.data = frappe.as_json({"error": "invalid_client_metadata", "error_description": error})
+ return response
+
+ doc = create_new_oauth_client(client)
+ if isinstance(doc.creation, datetime.datetime):
+ client_id_issued_at = doc.creation.isoformat()
+ else:
+ client_id_issued_at = doc.creation
+
+ response_data = {
+ "client_id": doc.client_id,
+ "client_secret": doc.client_secret,
+ "client_id_issued_at": client_id_issued_at,
+ "client_secret_expires_at": 0,
+ # Response should include registered metadata
+ "client_name": doc.app_name,
+ "client_uri": doc.client_uri,
+ "grant_types": ["authorization_code"],
+ "response_types": ["code"],
+ "logo_uri": doc.logo_uri,
+ "tos_uri": doc.tos_uri,
+ "policy_uri": doc.policy_uri,
+ "software_id": doc.software_id,
+ "software_version": doc.software_version,
+ "scope": doc.scopes,
+ "redirect_uris": doc.redirect_uris.split("\n") if doc.redirect_uris else None,
+ "contacts": doc.contacts.split("\n") if doc.contacts else None,
+ }
+
+ for k in list(response_data.keys()):
+ if k in response_data and response_data[k] is None:
+ del response_data[k]
+
+ response.data = frappe.as_json(response_data)
+ return response
diff --git a/frappe/integrations/utils.py b/frappe/integrations/utils.py
index bb4f62463b..602aec3c1a 100644
--- a/frappe/integrations/utils.py
+++ b/frappe/integrations/utils.py
@@ -3,12 +3,48 @@
import datetime
import json
+from typing import cast
from urllib.parse import parse_qs
+from pydantic import BaseModel, HttpUrl
+
import frappe
+from frappe.integrations.doctype.oauth_client.oauth_client import OAuthClient
from frappe.utils import get_request_session
+class OAuth2DynamicClientMetadata(BaseModel):
+ """
+ OAuth 2.0 Dynamic Client Registration Metadata.
+
+ As defined in RFC7591 - OAuth 2.0 Dynamic Client Registration Protocol
+ https://datatracker.ietf.org/doc/html/rfc7591#section-2
+ """
+
+ # Used to identify the client to the authorization server
+ redirect_uris: list[HttpUrl]
+ token_endpoint_auth_method: str | None = "client_secret_basic"
+ grant_types: list[str] | None = ["authorization_code"]
+ response_types: list[str] | None = ["code"]
+
+ # Client identifiers shown to user
+ client_name: str
+ scope: str
+ client_uri: HttpUrl | None = None
+ logo_uri: HttpUrl | None = None
+
+ # Client contact and other information for the client
+ contacts: list[str] | None = None
+ tos_uri: HttpUrl | None = None
+ policy_uri: HttpUrl | None = None
+ software_id: str | None = None
+ software_version: str | None = None
+
+ # JSON Web Key Set (JWKS) not used here
+ jwks_uri: HttpUrl | None = None
+ jwks: dict | None = None
+
+
def make_request(method: str, url: str, auth=None, headers=None, data=None, json=None, params=None):
auth = auth or ""
data = data or {}
@@ -164,3 +200,57 @@ def get_json(obj):
def json_handler(obj):
if isinstance(obj, datetime.date | datetime.timedelta | datetime.datetime):
return str(obj)
+
+
+def validate_dynamic_client_metadata(client: OAuth2DynamicClientMetadata):
+ invalidation_reasons = []
+ if len(client.redirect_uris) == 0:
+ invalidation_reasons.append("redirect_uris is required")
+
+ if client.token_endpoint_auth_method not in ["client_secret_basic"]:
+ invalidation_reasons.append("only client_secret_basic token_endpoint_auth_method is supported")
+
+ if client.grant_types not in ["authorization_code"]:
+ invalidation_reasons.append("only authorization_code and refresh_token grant types are supported")
+
+ if client.response_types not in ["code"]:
+ invalidation_reasons.append("only code response_type is supported")
+
+ if not frappe.conf.developer_mode and any(c.scheme != "https" for c in client.redirect_uris):
+ invalidation_reasons.append("redirect_uris must be https")
+
+ if invalidation_reasons:
+ return ",\n".join(invalidation_reasons)
+
+ return None
+
+
+def create_new_oauth_client(client: OAuth2DynamicClientMetadata):
+ doc = cast(OAuthClient, frappe.get_doc({"doctype": "OAuth Client"}))
+ redirect_uris = [str(uri) for uri in client.redirect_uris]
+
+ doc.app_name = client.client_name
+ doc.scopes = client.scope
+ doc.redirect_uris = "\n".join(redirect_uris)
+ doc.default_redirect_uri = redirect_uris[0]
+ doc.response_type = "Code"
+ doc.grant_type = "Authorization Code"
+ doc.skip_authorization = False
+
+ if client.client_uri:
+ doc.client_uri = client.client_uri.encoded_string()
+ if client.logo_uri:
+ doc.logo_uri = client.logo_uri.encoded_string()
+ if client.tos_uri:
+ doc.tos_uri = client.tos_uri.encoded_string()
+ if client.policy_uri:
+ doc.policy_uri = client.policy_uri.encoded_string()
+ if client.contacts:
+ doc.contacts = "\n".join(client.contacts)
+ if client.software_id:
+ doc.software_id = client.software_id
+ if client.software_version:
+ doc.software_version = client.software_version
+
+ doc.save()
+ return doc
From 4cd8115c4c7a8c6bca749f50752e8bc072a541b1 Mon Sep 17 00:00:00 2001
From: 18alantom <2.alan.tom@gmail.com>
Date: Wed, 2 Jul 2025 15:17:42 +0530
Subject: [PATCH 080/211] refactor: unify how .well-known routes are handled
---
frappe/app.py | 7 +++----
frappe/hooks.py | 4 ----
frappe/integrations/oauth2.py | 28 ++++++++++++++++++++++++----
3 files changed, 27 insertions(+), 12 deletions(-)
diff --git a/frappe/app.py b/frappe/app.py
index 910df78ae2..ada60979c7 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -22,6 +22,7 @@ import frappe.recorder
import frappe.utils.response
from frappe import _
from frappe.auth import SAFE_HTTP_METHODS, UNSAFE_HTTP_METHODS, HTTPRequest, check_request_ip, validate_auth
+from frappe.integrations.oauth2 import handle_wellknown
from frappe.middlewares import StaticDataMiddleware
from frappe.permissions import handle_does_not_exist_error
from frappe.utils import CallbackManager, cint, get_site_name
@@ -125,10 +126,8 @@ def application(request: Request):
elif request.path.startswith("/private/files/"):
response = frappe.utils.response.download_private_file(request.path)
- elif request.path.startswith("/.well-known/oauth-authorization-server") and request.method == "GET":
- from frappe.integrations.oauth2 import get_authorization_server_metadata
-
- response = get_authorization_server_metadata()
+ elif request.path.startswith("/.well-known/") and request.method == "GET":
+ response = handle_wellknown(request.path)
elif request.method in ("GET", "HEAD", "POST"):
response = get_response()
diff --git a/frappe/hooks.py b/frappe/hooks.py
index 0340e891d3..992cb2a2e0 100644
--- a/frappe/hooks.py
+++ b/frappe/hooks.py
@@ -62,10 +62,6 @@ website_route_rules = [
website_redirects = [
{"source": r"/desk(.*)", "target": r"/app\1"},
- {
- "source": "/.well-known/openid-configuration",
- "target": "/api/method/frappe.integrations.oauth2.openid_configuration",
- },
]
base_template = "templates/base.html"
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index c47fe7467b..96ee5f196e 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -7,6 +7,7 @@ from oauthlib.oauth2 import FatalClientError, OAuth2Error
from oauthlib.openid.connect.core.endpoints.pre_configured import Server as WebApplicationServer
from pydantic import ValidationError
from werkzeug import Response
+from werkzeug.exceptions import NotFound
import frappe
from frappe.integrations.doctype.oauth_provider_settings.oauth_provider_settings import (
@@ -188,10 +189,11 @@ def openid_profile(*args, **kwargs):
return generate_json_error_response(e)
-@frappe.whitelist(allow_guest=True)
-def openid_configuration():
+def get_openid_configuration():
+ response = Response()
+ response.mimetype = "application/json"
frappe_server_url = get_server_url()
- frappe.local.response = frappe._dict(
+ response.data = frappe.as_json(
{
"issuer": frappe_server_url,
"authorization_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.authorize",
@@ -211,6 +213,7 @@ def openid_configuration():
"id_token_signing_alg_values_supported": ["HS256"],
}
)
+ return response
@frappe.whitelist(allow_guest=True)
@@ -255,13 +258,27 @@ def introspect_token(token=None, token_type_hint=None):
frappe.local.response = frappe._dict({"active": False})
+def handle_wellknown(path: str):
+ """Path handler for /.well-known/ endpoints. Invoked in app.py"""
+
+ if path.startswith("/.well-known/openid-configuration"):
+ return get_openid_configuration()
+
+ if path.startswith("/.well-known/oauth-authorization-server"):
+ return get_authorization_server_metadata()
+
+ if path.startswith("/.well-known/oauth-protected-resource"):
+ return get_protected_resource_metadata()
+
+ raise NotFound
+
+
def get_authorization_server_metadata():
"""
Creates response for the /.well-known/oauth-authorization-server endpoint.
Reference: https://datatracker.ietf.org/doc/html/rfc8414
"""
- from werkzeug import Response
response = Response()
response.mimetype = "application/json"
@@ -366,3 +383,6 @@ def register_client():
response.data = frappe.as_json(response_data)
return response
+
+
+def get_protected_resource_metadata(): ...
From df950df47005984057cbdadc62d8f8f41801e4d4 Mon Sep 17 00:00:00 2001
From: Diptanil Saha /.well-known/oauth-authorization-server endpoint.",
+ "fieldname": "show_auth_server_metadata",
+ "fieldtype": "Check",
+ "label": "Show Auth Server Metadata"
+ },
+ {
+ "default": "1",
+ "description": "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint.",
+ "fieldname": "show_protected_resource_metadata",
+ "fieldtype": "Check",
+ "label": "Show Protected Resource Metadata"
+ },
+ {
+ "description": "New line separated list of scope values.",
+ "fieldname": "scopes_supported",
+ "fieldtype": "Small Text",
+ "label": "Scopes Supported"
+ },
+ {
+ "default": "1",
+ "description": "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry.",
+ "fieldname": "enable_dynamic_client_registration",
+ "fieldtype": "Check",
+ "label": "Enable Dynamic Client Registration"
+ }
+ ],
+ "grid_page_length": 50,
+ "index_web_pages_for_search": 1,
+ "issingle": 1,
+ "links": [],
+ "modified": "2025-07-03 12:49:31.650861",
+ "modified_by": "Administrator",
+ "module": "Integrations",
+ "name": "OAuth Settings",
+ "owner": "Administrator",
+ "permissions": [
+ {
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "print": 1,
+ "read": 1,
+ "role": "System Manager",
+ "share": 1,
+ "write": 1
+ }
+ ],
+ "row_format": "Dynamic",
+ "sort_field": "creation",
+ "sort_order": "DESC",
+ "states": []
+}
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
new file mode 100644
index 0000000000..55cc8e7ab4
--- /dev/null
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -0,0 +1,27 @@
+# Copyright (c) 2025, Frappe Technologies and contributors
+# For license information, please see license.txt
+
+# import frappe
+from frappe.model.document import Document
+
+
+class OAuthSettings(Document):
+ # begin: auto-generated types
+ # This code is auto-generated. Do not modify anything in this block.
+
+ from typing import TYPE_CHECKING
+
+ if TYPE_CHECKING:
+ from frappe.types import DF
+
+ enable_dynamic_client_registration: DF.Check
+ resource_documentation: DF.Data | None
+ resource_name: DF.Data | None
+ resource_policy_uri: DF.Data | None
+ resource_tos_uri: DF.Data | None
+ scopes_supported: DF.SmallText | None
+ show_auth_server_metadata: DF.Check
+ show_protected_resource_metadata: DF.Check
+ # end: auto-generated types
+
+ pass
diff --git a/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py b/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py
new file mode 100644
index 0000000000..887c9e7278
--- /dev/null
+++ b/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py
@@ -0,0 +1,20 @@
+# Copyright (c) 2025, Frappe Technologies and Contributors
+# See license.txt
+
+# import frappe
+from frappe.tests import IntegrationTestCase
+
+# On IntegrationTestCase, the doctype test records and all
+# link-field test record dependencies are recursively loaded
+# Use these module variables to add/remove to/from that list
+EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
+IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
+
+
+class IntegrationTestOAuthSettings(IntegrationTestCase):
+ """
+ Integration tests for OAuthSettings.
+ Use this class for testing interactions between multiple components.
+ """
+
+ pass
diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.json b/frappe/integrations/doctype/social_login_key/social_login_key.json
index 55c9f96abb..ab63adcec8 100644
--- a/frappe/integrations/doctype/social_login_key/social_login_key.json
+++ b/frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -20,6 +20,7 @@
"base_url",
"configuration_section",
"sign_ups",
+ "show_in_resource_metadata",
"client_urls",
"authorize_url",
"access_token_url",
@@ -172,11 +173,19 @@
"fieldtype": "Select",
"label": "Sign ups",
"options": "\nAllow\nDeny"
+ },
+ {
+ "default": "1",
+ "description": "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point.",
+ "fieldname": "show_in_resource_metadata",
+ "fieldtype": "Check",
+ "label": "Show in Resource Metadata"
}
],
+ "grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
- "modified": "2024-09-06 15:22:46.342392",
+ "modified": "2025-07-03 12:47:01.696817",
"modified_by": "Administrator",
"module": "Integrations",
"name": "Social Login Key",
@@ -195,9 +204,10 @@
"write": 1
}
],
+ "row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "DESC",
"states": [],
"title_field": "provider_name",
"track_changes": 1
-}
\ No newline at end of file
+}
diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.py b/frappe/integrations/doctype/social_login_key/social_login_key.py
index fbfa83fb3d..0e1567a995 100644
--- a/frappe/integrations/doctype/social_login_key/social_login_key.py
+++ b/frappe/integrations/doctype/social_login_key/social_login_key.py
@@ -54,6 +54,7 @@ class SocialLoginKey(Document):
icon: DF.Data | None
provider_name: DF.Data
redirect_url: DF.Data | None
+ show_in_resource_metadata: DF.Check
sign_ups: DF.Literal["", "Allow", "Deny"]
social_login_provider: DF.Literal[
"Custom",
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 96ee5f196e..47559b6e38 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -1,6 +1,6 @@
import datetime
import json
-from typing import cast
+from typing import Literal, cast
from urllib.parse import quote, urlencode, urlparse
from oauthlib.oauth2 import FatalClientError, OAuth2Error
@@ -10,6 +10,7 @@ from werkzeug import Response
from werkzeug.exceptions import NotFound
import frappe
+from frappe import oauth
from frappe.integrations.doctype.oauth_provider_settings.oauth_provider_settings import (
get_oauth_settings,
)
@@ -264,10 +265,12 @@ def handle_wellknown(path: str):
if path.startswith("/.well-known/openid-configuration"):
return get_openid_configuration()
- if path.startswith("/.well-known/oauth-authorization-server"):
+ if path.startswith("/.well-known/oauth-authorization-server") and is_oauth_metadata_enabled(
+ "auth_server"
+ ):
return get_authorization_server_metadata()
- if path.startswith("/.well-known/oauth-protected-resource"):
+ if path.startswith("/.well-known/oauth-protected-resource") and is_oauth_metadata_enabled("resource"):
return get_protected_resource_metadata()
raise NotFound
@@ -298,9 +301,8 @@ def _get_authorization_server_metadata():
is an unsafe practice, so code is the only supported response type.
"""
- request_url = urlparse(frappe.request.url)
- issuer = f"{request_url.scheme}://{request_url.netloc}"
- return dict(
+ issuer = get_resource_url()
+ metadata = dict(
issuer=issuer,
authorization_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.authorize",
token_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.get_token",
@@ -313,9 +315,13 @@ def _get_authorization_server_metadata():
revocation_endpoint_auth_methods_supported=["client_secret_basic"],
introspection_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.introspect_token",
userinfo_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.openid_profile",
- registration_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.register_client",
)
+ if frappe.get_cached_value("OAuth Settings", "OAuth Settings", "enable_dynamic_client_registration"):
+ metadata["registration_endpoint"] = f"{issuer}/api/method/frappe.integrations.oauth2.register_client"
+
+ return metadata
+
@frappe.whitelist(allow_guest=True)
def register_client():
@@ -325,6 +331,9 @@ def register_client():
Reference: https://datatracker.ietf.org/doc/html/rfc7591
"""
+ if not frappe.get_cached_value("OAuth Settings", "OAuth Settings", "enable_dynamic_client_registration"):
+ raise NotFound
+
response = Response()
response.mimetype = "application/json"
data = frappe.request.json
@@ -377,12 +386,84 @@ def register_client():
"contacts": doc.contacts.split("\n") if doc.contacts else None,
}
- for k in list(response_data.keys()):
- if k in response_data and response_data[k] is None:
- del response_data[k]
-
+ _del_none_values(response_data)
response.data = frappe.as_json(response_data)
return response
-def get_protected_resource_metadata(): ...
+def get_protected_resource_metadata():
+ """
+ Creates response for the /.well-known/oauth-protected-resource endpoint.
+
+ Reference: https://datatracker.ietf.org/doc/html/rfc9728
+ """
+
+ response = Response()
+ response.mimetype = "application/json"
+ response.data = frappe.as_json(_get_protected_resource_metadata())
+ return response
+
+
+def _get_protected_resource_metadata():
+ from frappe.integrations.doctype.oauth_settings.oauth_settings import OAuthSettings
+
+ # TODO:
+ # - header on 401
+ # - cache this response (5 minutes)
+ authorization_servers = frappe.get_list(
+ "Social Login Key",
+ filters={
+ "enable_social_login": True,
+ "show_in_resource_metadata": True,
+ },
+ pluck="base_url",
+ )
+ resource = get_resource_url()
+ oauth_settings = cast(OAuthSettings, frappe.get_cached_doc("OAuth Settings"))
+
+ metadata = dict(
+ resource=resource,
+ authorization_servers=[resource, *authorization_servers],
+ bearer_methods_supported=["header"],
+ resource_name=oauth_settings.resource_name,
+ resource_documentation=oauth_settings.resource_documentation,
+ resource_policy_uri=oauth_settings.resource_policy_uri,
+ resource_tos_uri=oauth_settings.resource_tos_uri,
+ )
+
+ if oauth_settings.scopes_supported is not None:
+ scopes = []
+ for _s in oauth_settings.scopes_supported.split("\n"):
+ s = _s.strip()
+ if s is None:
+ continue
+ scopes.append(s)
+
+ if scopes:
+ metadata["scopes_supported"] = scopes
+ _del_none_values(metadata)
+ return metadata
+
+
+def is_oauth_metadata_enabled(label: Literal["resource", "auth_server"]):
+ fieldname = (
+ "show_auth_server_metadata" if label == "authorization" else "show_protected_resource_metadata"
+ )
+
+ return frappe.get_cached_value(
+ "OAuth Settings",
+ "OAuth Settings",
+ fieldname,
+ )
+
+
+def get_resource_url():
+ """Uses request URL to reflect the resource URL"""
+ request_url = urlparse(frappe.request.url)
+ return f"{request_url.scheme}://{request_url.netloc}"
+
+
+def _del_none_values(d: dict):
+ for k in list(d.keys()):
+ if k in d and d[k] is None:
+ del d[k]
From 5ca8ad9d843d811c1fd92e1037dde9a1a041ff48 Mon Sep 17 00:00:00 2001
From: 18alantom <2.alan.tom@gmail.com>
Date: Thu, 3 Jul 2025 14:05:59 +0530
Subject: [PATCH 086/211] refactor: deprecate OAuth Provider Settings
OAuth Settings has its fields now (only one)
---
frappe/integrations/README.md | 26 +++++++++++++++++++
.../oauth_provider_settings.py | 7 -----
.../oauth_settings/oauth_settings.json | 10 ++++++-
.../doctype/oauth_settings/oauth_settings.py | 1 +
frappe/integrations/oauth2.py | 4 +--
frappe/integrations/utils.py | 16 +++++++++++-
6 files changed, 52 insertions(+), 12 deletions(-)
create mode 100644 frappe/integrations/README.md
diff --git a/frappe/integrations/README.md b/frappe/integrations/README.md
new file mode 100644
index 0000000000..1d9cc30d44
--- /dev/null
+++ b/frappe/integrations/README.md
@@ -0,0 +1,26 @@
+# Integrations
+
+## OAuth 2
+
+Frappe Framwork uses [`oauthlib`](https://github.com/oauthlib/oauthlib) to manage OAuth2 requirements. A Frappe instance can function as all of these:
+
+1. **Resource Server**: contains resources, for example the data in your DocTypes.
+2. **Authorization Server**: server that issues tokens to access some resource.
+3. **Client**: app that requires access to some resource on a resource server.
+
+Different DocTypes and features pertain to each of roles:
+
+0. **Common**:
+ - **OAuth Settings**: allows configuring certain OAuth features.
+1. **Authorization Server**
+ - **OAuth Client**: keeps records of _clients_ registered with the frappe instance.
+ - **OAuth Bearer Token**: tokens given out to registered _clients_ are maintained here.
+ - **OAuth Authorization Code**: keeps track of OAuth codes a client responds with in exchange for a token.
+ - **OAuth Provider Settings**: allows skipping authorization
+2. **Client**
+ - **Connected App**: keeps records of _authorization servers_ against whom this frappe instance is registered as a _client_ so some resource can be accessed. Eg. a users Google Drive account.
+ - **Social Key Login**: similar to **Connected App**, but for the purpose of logging into the frappe instance. Eg. a users Google account to enable "Login with Google".
+ - **Token Cache**: tokens received by the Frappe instance when accessing a **Connected App**.
+3.
+
+## OAuth Settings
diff --git a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py
index 74fa9fdd80..1b91bbfdeb 100644
--- a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py
+++ b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py
@@ -19,10 +19,3 @@ class OAuthProviderSettings(Document):
# end: auto-generated types
pass
-
-
-def get_oauth_settings():
- """Return OAuth settings."""
- return frappe._dict(
- {"skip_authorization": frappe.db.get_single_value("OAuth Provider Settings", "skip_authorization")}
- )
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.json b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
index 6a4fcfda26..add8b2eb70 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.json
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -9,6 +9,7 @@
"authorization_server_section",
"show_auth_server_metadata",
"enable_dynamic_client_registration",
+ "skip_authorization",
"resource_server_section",
"resource_name",
"resource_policy_uri",
@@ -86,13 +87,20 @@
"fieldname": "enable_dynamic_client_registration",
"fieldtype": "Check",
"label": "Enable Dynamic Client Registration"
+ },
+ {
+ "default": "0",
+ "description": "Allows skipping authorization if a user has active tokens.",
+ "fieldname": "skip_authorization",
+ "fieldtype": "Check",
+ "label": "Skip Authorization"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-03 12:49:31.650861",
+ "modified": "2025-07-03 14:07:31.542741",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
index 55cc8e7ab4..8b2aafd072 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.py
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -22,6 +22,7 @@ class OAuthSettings(Document):
scopes_supported: DF.SmallText | None
show_auth_server_metadata: DF.Check
show_protected_resource_metadata: DF.Check
+ skip_authorization: DF.Check
# end: auto-generated types
pass
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 47559b6e38..976532473b 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -11,12 +11,10 @@ from werkzeug.exceptions import NotFound
import frappe
from frappe import oauth
-from frappe.integrations.doctype.oauth_provider_settings.oauth_provider_settings import (
- get_oauth_settings,
-)
from frappe.integrations.utils import (
OAuth2DynamicClientMetadata,
create_new_oauth_client,
+ get_oauth_settings,
validate_dynamic_client_metadata,
)
from frappe.oauth import (
diff --git a/frappe/integrations/utils.py b/frappe/integrations/utils.py
index 602aec3c1a..07d649388a 100644
--- a/frappe/integrations/utils.py
+++ b/frappe/integrations/utils.py
@@ -3,7 +3,7 @@
import datetime
import json
-from typing import cast
+from typing import Any, cast
from urllib.parse import parse_qs
from pydantic import BaseModel, HttpUrl
@@ -254,3 +254,17 @@ def create_new_oauth_client(client: OAuth2DynamicClientMetadata):
doc.save()
return doc
+
+
+def get_oauth_settings():
+ """Return OAuth settings."""
+ settings: dict[str, Any] = frappe._dict({"skip_authorization": None})
+ if frappe.get_cached_value("OAuth Settings", "OAuth Settings", "skip_authorization"):
+ settings["skip_authorization"] = "Auto" # based on legacy OAuth Provider Settings value
+
+ elif value := frappe.get_cached_value(
+ "OAuth Provider Settings", "OAuth Provider Settings", "skip_authorization"
+ ):
+ settings["skip_authorization"] = value
+
+ return settings
From a1dae98560005e566b205d13642f2aae4184ebe9 Mon Sep 17 00:00:00 2001
From: Akhil Narang /.well-known/oauth-authorization-server endpoint.",
+ "description": "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414",
"fieldname": "show_auth_server_metadata",
"fieldtype": "Check",
"label": "Show Auth Server Metadata"
@@ -83,7 +83,7 @@
},
{
"default": "1",
- "description": "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry.",
+ "description": "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591",
"fieldname": "enable_dynamic_client_registration",
"fieldtype": "Check",
"label": "Enable Dynamic Client Registration"
@@ -100,7 +100,7 @@
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-03 14:07:31.542741",
+ "modified": "2025-07-03 14:29:35.314601",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
From 35c1cc0276f5849325a9370327a31762f920eb51 Mon Sep 17 00:00:00 2001
From: Ankush Menat /.well-known/oauth-protected-resource endpoint.",
+ "description": "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728",
"fieldname": "show_protected_resource_metadata",
"fieldtype": "Check",
"label": "Show Protected Resource Metadata"
@@ -94,13 +95,20 @@
"fieldname": "skip_authorization",
"fieldtype": "Check",
"label": "Skip Authorization"
+ },
+ {
+ "default": "0",
+ "description": "Allows enabled Social Login Key Base URL to be shown as authorization server.",
+ "fieldname": "show_social_login_key_as_authorization_server",
+ "fieldtype": "Check",
+ "label": "Show Social Login Key as Authorization Server"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-03 14:29:35.314601",
+ "modified": "2025-07-04 11:20:15.528611",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
index 8b2aafd072..afffb32226 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.py
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -22,6 +22,7 @@ class OAuthSettings(Document):
scopes_supported: DF.SmallText | None
show_auth_server_metadata: DF.Check
show_protected_resource_metadata: DF.Check
+ show_social_login_key_as_authorization_server: DF.Check
skip_authorization: DF.Check
# end: auto-generated types
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 07a2c28e14..06329b88eb 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -405,23 +405,26 @@ def get_protected_resource_metadata():
def _get_protected_resource_metadata():
from frappe.integrations.doctype.oauth_settings.oauth_settings import OAuthSettings
- # TODO:
- # - header on 401
- # - cache this response (5 minutes)
- authorization_servers = frappe.get_list(
- "Social Login Key",
- filters={
- "enable_social_login": True,
- "show_in_resource_metadata": True,
- },
- pluck="base_url",
- )
+ oauth_settings = cast(OAuthSettings, frappe.get_cached_doc("OAuth Settings", ignore_permissions=True))
resource = get_resource_url()
- oauth_settings = cast(OAuthSettings, frappe.get_cached_doc("OAuth Settings"))
+ authorization_servers = [resource]
+
+ if oauth_settings.show_social_login_key_as_authorization_server:
+ authorization_servers.extend(
+ frappe.get_list(
+ "Social Login Key",
+ filters={
+ "enable_social_login": True,
+ "show_in_resource_metadata": True,
+ },
+ pluck="base_url",
+ ignore_permissions=True,
+ )
+ )
metadata = dict(
resource=resource,
- authorization_servers=[resource, *authorization_servers],
+ authorization_servers=authorization_servers,
bearer_methods_supported=["header"],
resource_name=oauth_settings.resource_name,
resource_documentation=oauth_settings.resource_documentation,
From db4a7504e5335a7c44e5a4e1c92beb6fd865710d Mon Sep 17 00:00:00 2001
From: 18alantom <2.alan.tom@gmail.com>
Date: Fri, 4 Jul 2025 13:17:23 +0530
Subject: [PATCH 103/211] fix: add hooks to handle cors
---
frappe/app.py | 8 +--
frappe/hooks.py | 1 +
.../oauth_settings/oauth_settings.json | 50 ++++++++++++++---
.../doctype/oauth_settings/oauth_settings.py | 1 +
frappe/integrations/oauth2.py | 53 ++++++++++++++++++-
frappe/integrations/utils.py | 2 +-
6 files changed, 101 insertions(+), 14 deletions(-)
diff --git a/frappe/app.py b/frappe/app.py
index 2bac39016e..e5a1fba4a7 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -275,10 +275,12 @@ def process_response(response: Response):
def set_cors_headers(response):
+ allowed_origins = frappe.conf.allow_cors
+ if hasattr(frappe.local, "allow_cors"):
+ allowed_origins = frappe.local.allow_cors
+
if not (
- (allowed_origins := frappe.conf.allow_cors)
- and (request := frappe.local.request)
- and (origin := request.headers.get("Origin"))
+ allowed_origins and (request := frappe.local.request) and (origin := request.headers.get("Origin"))
):
return
diff --git a/frappe/hooks.py b/frappe/hooks.py
index 992cb2a2e0..bebb1f7e73 100644
--- a/frappe/hooks.py
+++ b/frappe/hooks.py
@@ -413,6 +413,7 @@ before_request = [
"frappe.recorder.record",
"frappe.monitor.start",
"frappe.rate_limiter.apply",
+ "frappe.integrations.oauth2.set_cors_for_privileged_requests",
]
after_request = [
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.json b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
index be8c13c590..f30124392f 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.json
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -6,15 +6,21 @@
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
+ "authorization_tab",
"authorization_server_section",
"show_auth_server_metadata",
- "enable_dynamic_client_registration",
"skip_authorization",
+ "column_break_ogmd",
+ "enable_dynamic_client_registration",
+ "allowed_origins_for_public_client_registration",
+ "resource_tab",
+ "config_section",
+ "show_protected_resource_metadata",
+ "column_break_wlfj",
+ "show_social_login_key_as_authorization_server",
"resource_server_section",
"resource_name",
"resource_policy_uri",
- "show_protected_resource_metadata",
- "show_social_login_key_as_authorization_server",
"column_break_zyte",
"resource_documentation",
"resource_tos_uri",
@@ -22,10 +28,10 @@
],
"fields": [
{
- "description": "These fields are used to provide resource server metadata to clients querying the \"/.well-known/oauth-protected-resource\" end point. For additional reference view: https://datatracker.ietf.org/doc/html/rfc9728",
+ "description": "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point.",
"fieldname": "resource_server_section",
"fieldtype": "Section Break",
- "label": "Resource Server"
+ "label": "Metadata"
},
{
"default": "Frappe Framework Application",
@@ -59,8 +65,7 @@
},
{
"fieldname": "authorization_server_section",
- "fieldtype": "Section Break",
- "label": "Authorization Server"
+ "fieldtype": "Section Break"
},
{
"default": "1",
@@ -102,13 +107,42 @@
"fieldname": "show_social_login_key_as_authorization_server",
"fieldtype": "Check",
"label": "Show Social Login Key as Authorization Server"
+ },
+ {
+ "fieldname": "column_break_ogmd",
+ "fieldtype": "Column Break"
+ },
+ {
+ "fieldname": "authorization_tab",
+ "fieldtype": "Tab Break",
+ "label": "Authorization"
+ },
+ {
+ "fieldname": "resource_tab",
+ "fieldtype": "Tab Break",
+ "label": "Resource"
+ },
+ {
+ "fieldname": "config_section",
+ "fieldtype": "Section Break",
+ "label": "Config"
+ },
+ {
+ "fieldname": "column_break_wlfj",
+ "fieldtype": "Column Break"
+ },
+ {
+ "description": "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n
\nPublic clients are restricted by default.",
+ "fieldname": "allowed_origins_for_public_client_registration",
+ "fieldtype": "Small Text",
+ "label": "Allowed Origins for Public Client Registration"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-04 11:20:15.528611",
+ "modified": "2025-07-04 12:05:50.723018",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
index afffb32226..7133b2b1f5 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.py
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -14,6 +14,7 @@ class OAuthSettings(Document):
if TYPE_CHECKING:
from frappe.types import DF
+ allowed_origins_for_public_client_registration: DF.SmallText | None
enable_dynamic_client_registration: DF.Check
resource_documentation: DF.Data | None
resource_name: DF.Data | None
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 06329b88eb..2e2dc6fab5 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -258,7 +258,7 @@ def introspect_token(token=None, token_type_hint=None):
def handle_wellknown(path: str):
- """Path handler for /.well-known/ endpoints. Invoked in app.py"""
+ """Path handler for GET requests to /.well-known/ endpoints. Invoked in app.py"""
if path.startswith("/.well-known/openid-configuration"):
return get_openid_configuration()
@@ -284,6 +284,7 @@ def get_authorization_server_metadata():
response = Response()
response.mimetype = "application/json"
response.data = frappe.as_json(_get_authorization_server_metadata())
+ frappe.local.allow_cors = "*"
return response
@@ -321,7 +322,7 @@ def _get_authorization_server_metadata():
return metadata
-@frappe.whitelist(allow_guest=True)
+@frappe.whitelist(allow_guest=True, methods=["POST"])
def register_client():
"""
Registers an OAuth client.
@@ -473,3 +474,51 @@ def _del_none_values(d: dict):
for k in list(d.keys()):
if k in d and d[k] is None:
del d[k]
+
+
+def set_cors_for_privileged_requests():
+ """
+ Called in before_request hook, prevents failure of privileged requests,
+ for OPTIONS and:
+ 1. GET requests on /.well-known/
+ 2. POST requests on /api/method/frappe.integrations.oauth2.register_client
+
+ Point 2. also depends on OAuth Settings for dynamic client registration.
+ Without these, registration requests from public clients will fail due to
+ preflight requests failing.
+ """
+ if (
+ frappe.conf.allow_cors == "*"
+ or not frappe.local.request
+ or not frappe.local.request.headers.get("Origin")
+ ):
+ return
+
+ if frappe.request.path.startswith("/.well-known/") and frappe.request.method in ("GET", "OPTIONS"):
+ frappe.local.allow_cors = "*"
+ return
+
+ if (
+ not frappe.request.path.startswith("/api/method/frappe.integrations.oauth2.register_client")
+ or frappe.request.method not in ("POST", "OPTIONS")
+ or not frappe.get_cached_value(
+ "OAuth Settings",
+ "OAuth Settings",
+ "enable_dynamic_client_registration",
+ )
+ ):
+ return
+
+ allowed = frappe.get_cached_value(
+ "OAuth Settings",
+ "OAuth Settings",
+ "allowed_origins_for_public_client_registration",
+ )
+ if not allowed:
+ return
+
+ allowed = allowed.strip().splitlines()
+ if "*" in allowed:
+ frappe.local.allow_cors = "*"
+ else:
+ frappe.local.allow_cors = allowed
diff --git a/frappe/integrations/utils.py b/frappe/integrations/utils.py
index e428b55b8d..a97ceba498 100644
--- a/frappe/integrations/utils.py
+++ b/frappe/integrations/utils.py
@@ -252,7 +252,7 @@ def create_new_oauth_client(client: OAuth2DynamicClientMetadata):
if client.software_version:
doc.software_version = client.software_version
- doc.save()
+ doc.save(ignore_permissions=True)
return doc
From c4f2335f1151c8b1046bd23b376297e7f8fb6086 Mon Sep 17 00:00:00 2001
From: 18alantom <2.alan.tom@gmail.com>
Date: Fri, 4 Jul 2025 14:35:59 +0530
Subject: [PATCH 104/211] fix: support public client
---
.../doctype/oauth_client/oauth_client.json | 11 ++-
.../doctype/oauth_client/oauth_client.py | 20 +++++
.../oauth_settings/oauth_settings.json | 8 +-
.../doctype/oauth_settings/oauth_settings.py | 2 +-
frappe/integrations/oauth2.py | 74 +++++++++++++------
frappe/integrations/utils.py | 14 ++--
6 files changed, 96 insertions(+), 33 deletions(-)
diff --git a/frappe/integrations/doctype/oauth_client/oauth_client.json b/frappe/integrations/doctype/oauth_client/oauth_client.json
index 5ddc61061c..a41d62ac4d 100644
--- a/frappe/integrations/doctype/oauth_client/oauth_client.json
+++ b/frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -29,6 +29,7 @@
"policy_uri",
"sb_advanced",
"grant_type",
+ "token_endpoint_auth_method",
"cb_2",
"response_type"
],
@@ -188,11 +189,19 @@
"fieldname": "contacts",
"fieldtype": "Small Text",
"label": "Contacts"
+ },
+ {
+ "default": "Client Secret Basic",
+ "description": "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE.",
+ "fieldname": "token_endpoint_auth_method",
+ "fieldtype": "Select",
+ "label": "Token Endpoint Auth Method",
+ "options": "Client Secret Basic\nClient Secret Post\nNone"
}
],
"grid_page_length": 50,
"links": [],
- "modified": "2025-07-02 11:52:00.978956",
+ "modified": "2025-07-04 14:07:36.146393",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Client",
diff --git a/frappe/integrations/doctype/oauth_client/oauth_client.py b/frappe/integrations/doctype/oauth_client/oauth_client.py
index 7d974e3e35..35df45dbc3 100644
--- a/frappe/integrations/doctype/oauth_client/oauth_client.py
+++ b/frappe/integrations/doctype/oauth_client/oauth_client.py
@@ -1,7 +1,11 @@
# Copyright (c) 2015, Frappe Technologies and contributors
# License: MIT. See LICENSE
+import datetime
+import time
+
import frappe
+import frappe.utils
from frappe import _
from frappe.model.document import Document
from frappe.permissions import SYSTEM_USER_ROLE
@@ -33,6 +37,7 @@ class OAuthClient(Document):
skip_authorization: DF.Check
software_id: DF.Data | None
software_version: DF.Data | None
+ token_endpoint_auth_method: DF.Literal["Client Secret Basic", "Client Secret Post", "None"]
tos_uri: DF.Data | None
user: DF.Link | None
# end: auto-generated types
@@ -62,3 +67,18 @@ class OAuthClient(Document):
"""Returns true if session user is allowed to use this client."""
allowed_roles = {d.role for d in self.allowed_roles}
return bool(allowed_roles & set(frappe.get_roles()))
+
+ def is_public_client(self) -> bool:
+ return self.token_endpoint_auth_method == "None"
+
+ def client_id_issued_at(self) -> int:
+ """Returns UNIX timestamp (seconds since epoch) of the client creation time."""
+
+ if isinstance(self.creation, datetime.datetime):
+ return int(self.creation.timestamp())
+
+ try:
+ d = datetime.datetime.fromisoformat(self.creation)
+ return int(d.timestamp())
+ except Exception:
+ return int(frappe.utils.now_datetime().timestamp())
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.json b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
index f30124392f..713bb04a9a 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.json
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -12,7 +12,7 @@
"skip_authorization",
"column_break_ogmd",
"enable_dynamic_client_registration",
- "allowed_origins_for_public_client_registration",
+ "allowed_public_client_origins",
"resource_tab",
"config_section",
"show_protected_resource_metadata",
@@ -133,16 +133,16 @@
},
{
"description": "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n
\nPublic clients are restricted by default.",
- "fieldname": "allowed_origins_for_public_client_registration",
+ "fieldname": "allowed_public_client_origins",
"fieldtype": "Small Text",
- "label": "Allowed Origins for Public Client Registration"
+ "label": "Allowed Public Client Origins"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-04 12:05:50.723018",
+ "modified": "2025-07-04 15:01:45.453238",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
index 7133b2b1f5..fb7b6e2263 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.py
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -14,7 +14,7 @@ class OAuthSettings(Document):
if TYPE_CHECKING:
from frappe.types import DF
- allowed_origins_for_public_client_registration: DF.SmallText | None
+ allowed_public_client_origins: DF.SmallText | None
enable_dynamic_client_registration: DF.Check
resource_documentation: DF.Data | None
resource_name: DF.Data | None
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 2e2dc6fab5..96224f4c5a 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -10,6 +10,7 @@ from werkzeug import Response
from werkzeug.exceptions import NotFound
import frappe
+import frappe.utils
from frappe import oauth
from frappe.integrations.utils import (
OAuth2DynamicClientMetadata,
@@ -24,6 +25,14 @@ from frappe.oauth import (
get_userinfo,
)
+ENDPOINTS = {
+ "token_endpoint": "/api/method/frappe.integrations.oauth2.get_token",
+ "userinfo_endpoint": "/api/method/frappe.integrations.oauth2.openid_profile",
+ "revocation_endpoint": "/api/method/frappe.integrations.oauth2.revoke_token",
+ "authorization_endpoint": "/api/method/frappe.integrations.oauth2.authorize",
+ "introspection_endpoint": "/api/method/frappe.integrations.oauth2.introspect_token",
+}
+
def get_oauth_server():
if not getattr(frappe.local, "oauth_server", None):
@@ -195,11 +204,11 @@ def get_openid_configuration():
response.data = frappe.as_json(
{
"issuer": frappe_server_url,
- "authorization_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.authorize",
- "token_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.get_token",
- "userinfo_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.openid_profile",
- "revocation_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.revoke_token",
- "introspection_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.introspect_token",
+ "authorization_endpoint": f"{frappe_server_url}{ENDPOINTS['authorization_endpoint']}",
+ "token_endpoint": f"{frappe_server_url}{ENDPOINTS['token_endpoint']}",
+ "userinfo_endpoint": f"{frappe_server_url}{ENDPOINTS['userinfo_endpoint']}",
+ "revocation_endpoint": f"{frappe_server_url}{ENDPOINTS['revocation_endpoint']}",
+ "introspection_endpoint": f"{frappe_server_url}{ENDPOINTS['introspection_endpoint']}",
"response_types_supported": [
"code",
"token",
@@ -303,17 +312,18 @@ def _get_authorization_server_metadata():
issuer = get_resource_url()
metadata = dict(
issuer=issuer,
- authorization_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.authorize",
- token_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.get_token",
+ authorization_endpoint=f"{issuer}{ENDPOINTS['authorization_endpoint']}",
+ token_endpoint=f"{issuer}{ENDPOINTS['token_endpoint']}",
response_types_supported=["code"],
response_modes_supported=["query"],
grant_types_supported=["authorization_code", "refresh_token"],
- token_endpoint_auth_methods_supported=["client_secret_basic"],
+ token_endpoint_auth_methods_supported=["none", "client_secret_basic"],
service_documentation="https://docs.frappe.io/framework/user/en/guides/integration/how_to_set_up_oauth#add-a-client-app",
- revocation_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.revoke_token",
+ revocation_endpoint=f"{issuer}{ENDPOINTS['revocation_endpoint']}",
revocation_endpoint_auth_methods_supported=["client_secret_basic"],
- introspection_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.introspect_token",
- userinfo_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.openid_profile",
+ introspection_endpoint=f"{issuer}{ENDPOINTS['introspection_endpoint']}",
+ userinfo_endpoint=f"{issuer}{ENDPOINTS['userinfo_endpoint']}",
+ code_challenge_methods_supported=["S256"],
)
if frappe.get_cached_value("OAuth Settings", "OAuth Settings", "enable_dynamic_client_registration"):
@@ -354,21 +364,27 @@ def register_client():
response.data = frappe.as_json({"error": "invalid_client_metadata", "error_description": str(e)})
return response
+ """
+ Note:
+
+ A check for existing client cannot be done unless a software_statement (JWT)
+ is issued. Use of software_statement is not yet implemented.
+
+ Doing an exists check based on just client_name or other replicable
+ parameters risks leaking client_id and client_secret. So it's better to
+ issue a new client.
+ """
+
if error := validate_dynamic_client_metadata(client):
response.status_code = 400
response.data = frappe.as_json({"error": "invalid_client_metadata", "error_description": error})
return response
doc = create_new_oauth_client(client)
- if isinstance(doc.creation, datetime.datetime):
- client_id_issued_at = doc.creation.isoformat()
- else:
- client_id_issued_at = doc.creation
-
response_data = {
"client_id": doc.client_id,
"client_secret": doc.client_secret,
- "client_id_issued_at": client_id_issued_at,
+ "client_id_issued_at": doc.client_id_issued_at(),
"client_secret_expires_at": 0,
# Response should include registered metadata
"client_name": doc.app_name,
@@ -385,7 +401,11 @@ def register_client():
"contacts": doc.contacts.split("\n") if doc.contacts else None,
}
+ if doc.is_public_client():
+ del response_data["client_secret"]
+
_del_none_values(response_data)
+ response.status_code = 201 # Created
response.data = frappe.as_json(response_data)
return response
@@ -499,20 +519,32 @@ def set_cors_for_privileged_requests():
return
if (
- not frappe.request.path.startswith("/api/method/frappe.integrations.oauth2.register_client")
- or frappe.request.method not in ("POST", "OPTIONS")
- or not frappe.get_cached_value(
+ frappe.request.path.startswith("/api/method/frappe.integrations.oauth2.register_client")
+ and frappe.request.method in ("POST", "OPTIONS")
+ and frappe.get_cached_value(
"OAuth Settings",
"OAuth Settings",
"enable_dynamic_client_registration",
)
):
+ _set_allowed_cors()
return
+ if (
+ frappe.request.path.startswith(ENDPOINTS["token_endpoint"])
+ or frappe.request.path.startswith(ENDPOINTS["revocation_endpoint"])
+ or frappe.request.path.startswith(ENDPOINTS["introspection_endpoint"])
+ or frappe.request.path.startswith(ENDPOINTS["userinfo_endpoint"])
+ ) and frappe.request.method in ("POST", "OPTIONS"):
+ _set_allowed_cors()
+ return
+
+
+def _set_allowed_cors():
allowed = frappe.get_cached_value(
"OAuth Settings",
"OAuth Settings",
- "allowed_origins_for_public_client_registration",
+ "allowed_public_client_origins",
)
if not allowed:
return
diff --git a/frappe/integrations/utils.py b/frappe/integrations/utils.py
index a97ceba498..4f7d27d461 100644
--- a/frappe/integrations/utils.py
+++ b/frappe/integrations/utils.py
@@ -29,7 +29,7 @@ class OAuth2DynamicClientMetadata(BaseModel):
# Client identifiers shown to user
client_name: str
- scope: str
+ scope: str | None = None
client_uri: HttpUrl | None = None
logo_uri: HttpUrl | None = None
@@ -207,11 +207,8 @@ def validate_dynamic_client_metadata(client: OAuth2DynamicClientMetadata):
if len(client.redirect_uris) == 0:
invalidation_reasons.append("redirect_uris is required")
- if client.token_endpoint_auth_method not in ["client_secret_basic"]:
- invalidation_reasons.append("only client_secret_basic token_endpoint_auth_method is supported")
-
if client.grant_types and not set(client.grant_types).issubset({"authorization_code", "refresh_token"}):
- invalidation_reasons.append("only authorization_code and refresh_token grant types are supported")
+ invalidation_reasons.append("only 'authorization_code' and 'refresh_token' grant types are supported")
if client.response_types and not all(rt == "code" for rt in client.response_types):
invalidation_reasons.append("only 'code' response_type is supported")
@@ -230,7 +227,7 @@ def create_new_oauth_client(client: OAuth2DynamicClientMetadata):
redirect_uris = [str(uri) for uri in client.redirect_uris]
doc.app_name = client.client_name
- doc.scopes = client.scope
+ doc.scopes = client.scope or "all"
doc.redirect_uris = "\n".join(redirect_uris)
doc.default_redirect_uri = redirect_uris[0]
doc.response_type = "Code"
@@ -252,6 +249,11 @@ def create_new_oauth_client(client: OAuth2DynamicClientMetadata):
if client.software_version:
doc.software_version = client.software_version
+ if client.token_endpoint_auth_method == "none":
+ doc.token_endpoint_auth_method = "None"
+ if client.token_endpoint_auth_method == "client_secret_post":
+ doc.token_endpoint_auth_method = "Client Secret Post"
+
doc.save(ignore_permissions=True)
return doc
From 3eab2b73b79a8936624b95780730f02aa05a73b3 Mon Sep 17 00:00:00 2001
From: 18alantom <2.alan.tom@gmail.com>
Date: Fri, 4 Jul 2025 15:24:44 +0530
Subject: [PATCH 105/211] chore: update readme
---
frappe/integrations/README.md | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/frappe/integrations/README.md b/frappe/integrations/README.md
index 211614e531..864665c25f 100644
--- a/frappe/integrations/README.md
+++ b/frappe/integrations/README.md
@@ -59,4 +59,12 @@ The settings allow toggling the following features:
- **Dynamic Client Registration**: by toggling the _Enable Dynamic Client Registration_ field.
- **Resource Server Metadata Discovery**: by toggling the _Show Protected Resource Metadata_.
-The remaining fields (in the **Resource Server** section) are used only when responding to requests on `/.well-known/oauth-protected-resource`
+The remaining fields (in the **Resource** section) are used only when responding to requests on `/.well-known/oauth-protected-resource`
+
+> **Regarding Public Clients**
+>
+> Public clients, for example an SPA, have restricted access by default. This
+> restriction is applied by use of CORS.
+>
+> To side-step this restriction for certain trusted clients, you may add their
+> hostnames to the **Allowed Public Client Origins** field.
From 9b3453c08864bf8748c293822062414889524570 Mon Sep 17 00:00:00 2001
From: MochaMind
\n"
msgstr "\n"
-"
\n"
" Variabler som stöds:\n"
@@ -321,8 +321,8 @@ msgstr ".{fieldname}. - fältnamn på dokument t.ex.\n"
" branch\n"
" \n"
-" .FY. - Bokföringsår (erfordrar ERPNext installation).ABBR. - Bolagsförkortning (erfordrar ERPNext installation).FY. - Bokföringsår (erfordrar Affärssystem installation).ABBR. - Bolagsförkortning (erfordrar Affärssystem installation)
\n\n"
"Default Naming will make the amended document to behave same as new documents."
msgstr "Konfigurera hur ändrade dokument ska namnges.\n\n"
"Standard är att följa ändring sekvens som lägger till version nummer i slutet av ursprungliga namn.\n"
-"Standard Nummer Serie gör att ändrade dokument fungerar på samma sätt som nya dokument."
+"Standard Namngivning Serie gör att ändrade dokument fungerar på samma sätt som nya dokument."
#. Description of a DocType
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -6211,7 +6211,7 @@ msgstr "Anpassa Formulär Fält"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Customize properties, naming, fields and more for standard doctypes"
-msgstr "Anpassa egenskaper, namn, fält och mer för standard doctypes"
+msgstr "Anpassa egenskaper, namngivning, fält och mer för standard doctypes"
#: frappe/public/js/frappe/views/file/file_view.js:144
msgid "Cut"
@@ -6629,7 +6629,7 @@ msgstr "Standard Adress Mall kan inte tas bort"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Amendment Naming"
-msgstr "Standard Ändring Namn"
+msgstr "Standard Ändring Namngivning"
#. Label of the default_app (Select) field in DocType 'System Settings'
#. Label of the default_app (Select) field in DocType 'User'
@@ -6667,7 +6667,7 @@ msgstr "Standard Brevhuvud"
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Naming"
-msgstr "Standard Nummer Serie"
+msgstr "Standard Namngivning Serie"
#. Label of the default_outgoing (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -7724,17 +7724,17 @@ msgstr "Dokument Namn måste vara sträng"
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Document Naming Rule"
-msgstr "Dokument Namn Regel"
+msgstr "Dokument Namngivning Regel"
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "Document Naming Rule Condition"
-msgstr "Dokument Namn Regel Villkor"
+msgstr "Dokument Namngivning Regel Villkor"
#. Name of a DocType
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Document Naming Settings"
-msgstr "Dokument Namn Inställningar"
+msgstr "Dokument Namngivning Inställningar"
#: frappe/model/document.py:476
msgid "Document Queued"
@@ -7927,7 +7927,7 @@ msgstr "Dokument namn ändrad från {0} till {1}"
#: frappe/public/js/frappe/form/toolbar.js:164
msgid "Document renaming from {0} to {1} has been queued"
-msgstr "Dokument namn byte från {0} till {1} är i kö"
+msgstr "Dokument namn ändring från {0} till {1} är i kö"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
@@ -9748,7 +9748,7 @@ msgstr "Misslyckades att exportera python typ tips"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249
msgid "Failed to generate names from the series"
-msgstr "Misslyckades att skapa namn serie"
+msgstr "Misslyckades att skapa namn från serie"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
msgid "Failed to generate preview of series"
@@ -11129,7 +11129,7 @@ msgstr "Hämta PDF"
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Get a preview of generated names with a series."
-msgstr "Förhandsgranskning av Nummer Serie."
+msgstr "Förhandsvisning av Namngivning Serie."
#: frappe/public/js/frappe/list/list_sidebar.js:305
msgid "Get more insights with"
@@ -12335,7 +12335,7 @@ msgstr "Om du uppdaterar, välj \"Skriv över\" annars kommer befintliga rader i
#: frappe/core/doctype/data_export/exporter.py:188
msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present."
-msgstr "Om du laddar upp ny information, blir \"Nummer Serie\" obligatorisk, om det finns."
+msgstr "Om du laddar upp ny information, blir \"Namngivning Serie\" erfordrad, om det finns."
#: frappe/core/doctype/data_export/exporter.py:186
msgid "If you are uploading new records, leave the \"name\" (ID) column blank."
@@ -13188,7 +13188,7 @@ msgstr "Ogiltig E-post Server. Rätta till och försök igen."
#: frappe/model/naming.py:101
msgid "Invalid Naming Series: {}"
-msgstr "Ogiltig Nummer Serie: {}"
+msgstr "Ogiltig Namngivning Serie: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
#: frappe/core/doctype/rq_job/rq_job.py:122
@@ -13369,7 +13369,7 @@ msgstr "Ogiltig namn typ (heltal) för varchar namn kolumn"
#: frappe/model/naming.py:62
msgid "Invalid naming series {}: dot (.) missing"
-msgstr "Ogiltig nummer serie {}: punkt (.) saknas"
+msgstr "Ogiltig namngivning serie {}: punkt (.) saknas"
#: frappe/core/doctype/data_import/importer.py:453
msgid "Invalid or corrupted content for import"
@@ -15203,7 +15203,7 @@ msgstr "Man"
#: frappe/www/me.html:56
msgid "Manage 3rd party apps"
-msgstr "Hantera tredjepartsappar"
+msgstr "Hantera Tredjepartsappar"
#. Description of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
@@ -16245,17 +16245,17 @@ msgstr "Namngivning Alternativ:\n"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
-msgstr "Nummer Serie Regel"
+msgstr "Namngivining Regel"
#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Naming Series"
-msgstr "Nummer Serie"
+msgstr "Namngivning Serie"
#: frappe/model/naming.py:260
msgid "Naming Series mandatory"
-msgstr "Nummer Serie erfordras"
+msgstr "Namngivning Serie erfordras"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
@@ -18839,22 +18839,22 @@ msgstr "Tillåtna Roller"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Personlig"
+msgstr "Personligt"
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Personal Data Deletion Request"
-msgstr "Personlig Data Borttagning Begäran"
+msgstr "Personligt Data Borttagning Begäran"
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Personal Data Deletion Step"
-msgstr "Personlig Data Borttagning Steg"
+msgstr "Personligt Data Borttagning Steg"
#. Name of a DocType
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Personal Data Download Request"
-msgstr "Personlig data Nedladdning Begäran"
+msgstr "Personligt Data Nedladdning Begäran"
#. Label of the phone (Data) field in DocType 'Address'
#. Label of the phone (Data) field in DocType 'Contact'
@@ -19259,7 +19259,7 @@ msgstr "Ange följande dokument i Översikt Panel som standard."
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120
msgid "Please set the series to be used."
-msgstr "Ange Nummer Serie som ska användas"
+msgstr "Ange Namngivning Serie som ska användas."
#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
@@ -19537,7 +19537,7 @@ msgstr "Förhandsgransknig Läge"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Preview of generated names"
-msgstr "Förhandsgranskning av genererade namn"
+msgstr "Förhandsvisning av skapade namn"
#: frappe/public/js/frappe/views/render_preview.js:19
msgid "Preview on {0}"
@@ -23201,20 +23201,20 @@ msgstr "Sekvens ID"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr "Nummer Serie Lista för denna Transaktion"
+msgstr "Namngivning Serie Lista för denna Transaktion"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
-msgstr "Nummer Serie uppdaterad för {}"
+msgstr "Namngivning Serie uppdaterad för {}"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223
msgid "Series counter for {} updated to {} successfully"
-msgstr "Nummer Serie räknare för {} är uppdaterad till {}"
+msgstr "Namngivning Serie räknare för {} är uppdaterad till {}"
#: frappe/core/doctype/doctype/doctype.py:1109
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
-msgstr "Nummer Serie {0} används redan i {1}"
+msgstr "Namngivning Serie {0} används redan i {1}"
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
@@ -23357,7 +23357,7 @@ msgstr "Ange gräns"
#. DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
-msgstr "Ange Nummer Serie alternativ för transaktioner"
+msgstr "Ange Namngivning Serie alternativ för transaktioner."
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -23602,7 +23602,7 @@ msgstr "Konfigurering Klar"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr "Ange Nummer Serie för Transaktioner"
+msgstr "Ange Namngivning Serie för Transaktioner"
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
@@ -25989,7 +25989,7 @@ msgstr "Det fanns fel när e-post skickades. Försök igen."
#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr "Det uppstod några fel vid namn angivning, kontakta administratören"
+msgstr "Det uppstod några fel vid namngivning, kontakta administratör"
#. Description of the 'Announcement Widget' (Text Editor) field in DocType
#. 'Navbar Settings'
@@ -26340,12 +26340,12 @@ msgstr "Tid Intervall"
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Tid Nummer Serie"
+msgstr "Tid Namngivning Serie"
#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series Based On"
-msgstr "Tid Nummer Serie Baserad på"
+msgstr "Tid Namngivning Serie Baserad på"
#. Label of the time_taken (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -26390,7 +26390,7 @@ msgstr "Tid i sekunder att behålla QR Kod Bild på server. Min: 240
Date: Wed, 2 Jul 2025 18:58:20 +0530
Subject: [PATCH 107/211] chore: update frappe charts
---
package.json | 4 ++--
yarn.lock | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/package.json b/package.json
index 27e2716c62..a7fdc106f5 100644
--- a/package.json
+++ b/package.json
@@ -51,9 +51,10 @@
"esbuild-plugin-vue3": "^0.3.0",
"fast-deep-equal": "^2.0.1",
"fast-glob": "^3.2.5",
- "frappe-charts": "^2.0.0-rc26",
+ "frappe-charts": "2.0.0-rc27",
"frappe-datatable": "1.19.0",
"frappe-gantt": "^0.6.0",
+ "frappe-quill-image-resize": "^3.0.9",
"highlight.js": "^10.4.1",
"html5-qrcode": "^2.3.8",
"jquery": "3.7.0",
@@ -70,7 +71,6 @@
"popper.js": "^1.16.0",
"postcss": "8",
"quill": "2.0.3",
- "frappe-quill-image-resize": "^3.0.9",
"quill-magic-url": "^3.0.0",
"qz-tray": "^2.0.8",
"rtlcss": "^4.0.0",
diff --git a/yarn.lock b/yarn.lock
index 798055edf4..ff6a721e28 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1426,10 +1426,10 @@ fraction.js@^4.3.6:
resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
-frappe-charts@^2.0.0-rc26:
- version "2.0.0-rc26"
- resolved "https://registry.yarnpkg.com/frappe-charts/-/frappe-charts-2.0.0-rc26.tgz#9632d620b92f2043cebd192a8899119f5715524b"
- integrity sha512-0vyXcwcekIeYA6pxCHGcRdG8llC6hpGR91nkbwRGSnBYMKomX2AQtfgTlIKMrE9nmAkewJeZsTx1scni8Ry0iA==
+frappe-charts@2.0.0-rc27:
+ version "2.0.0-rc27"
+ resolved "https://registry.yarnpkg.com/frappe-charts/-/frappe-charts-2.0.0-rc27.tgz#a04737d36bcce5381b25ad48896c43b02eb62852"
+ integrity sha512-J4WCrHYB6oR4Dfu28aaCxlUu64C/V+qJlNE1E0xpya2/yCeqDZ8LA6pS63SBMOdV2CTP8cJ6Isk5m+rZi9gElA==
frappe-datatable@1.19.0:
version "1.19.0"
From 8978d24f9df3188f5cbbdfccfb8b5c4f2255d982 Mon Sep 17 00:00:00 2001
From: Christian Werner
-
From 2bbf72061c7e41f3505c1338e7b0de3c0d895bf4 Mon Sep 17 00:00:00 2001
From: sokumon
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -885,7 +898,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1050,8 +1063,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1087,7 +1100,7 @@ msgid "Add Gray Background"
msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1903,6 +1916,12 @@ msgstr ""
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1919,6 +1938,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -2010,7 +2065,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2099,16 +2154,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2122,21 +2167,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2382,7 +2430,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2391,7 +2439,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2636,11 +2684,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2692,6 +2740,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2926,7 +2979,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3804,7 +3857,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3956,11 +4009,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3988,7 +4041,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4043,7 +4096,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4080,7 +4133,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4125,7 +4178,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4182,10 +4235,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4472,6 +4521,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4593,8 +4646,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4610,6 +4665,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4622,13 +4683,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4713,7 +4793,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4859,7 +4939,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5108,6 +5188,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5147,7 +5233,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5156,7 +5242,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5169,7 +5255,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5210,8 +5296,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5303,6 +5389,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5321,7 +5412,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5403,7 +5494,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5444,7 +5535,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5472,7 +5563,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6177,7 +6268,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7345,6 +7436,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7590,7 +7682,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7747,7 +7839,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7884,7 +7976,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8139,7 +8231,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8691,6 +8783,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9082,7 +9180,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9293,7 +9391,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9319,7 +9417,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9380,7 +9478,7 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9745,7 +9843,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9816,7 +9914,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9859,7 +9957,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9875,7 +9973,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10323,7 +10421,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10508,7 +10606,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10786,7 +10884,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10846,7 +10944,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10924,7 +11022,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11353,7 +11451,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11403,7 +11501,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11632,7 +11730,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11674,6 +11772,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11835,7 +11934,7 @@ msgstr ""
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11918,15 +12017,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr ""
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12607,11 +12711,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12678,11 +12782,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12769,7 +12873,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -13025,7 +13129,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13059,7 +13163,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13071,9 +13175,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13153,7 +13257,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13177,10 +13281,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13234,7 +13342,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13983,7 +14091,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14279,7 +14387,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14593,7 +14701,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr ""
@@ -14907,6 +15015,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15093,7 +15206,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15316,7 +15429,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15514,6 +15627,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15533,7 +15652,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15627,7 +15746,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15635,7 +15754,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15701,7 +15820,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16001,7 +16120,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16168,7 +16287,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16297,7 +16416,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16342,7 +16461,27 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid ""
+"New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16374,7 +16513,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16525,7 +16664,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16554,7 +16693,7 @@ msgid "No Copy"
msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16813,7 +16952,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16906,6 +17045,12 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr ""
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16941,7 +17086,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16967,9 +17112,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17077,7 +17222,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17398,6 +17543,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17647,7 +17797,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17678,7 +17828,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17686,7 +17836,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17819,7 +17969,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17934,7 +18084,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -18016,9 +18166,11 @@ msgstr ""
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18313,8 +18465,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18419,7 +18571,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18431,7 +18583,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18740,7 +18892,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18911,7 +19063,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18928,23 +19080,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18952,7 +19104,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18964,7 +19116,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18977,11 +19129,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18997,7 +19149,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19065,7 +19217,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19099,7 +19251,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19172,10 +19324,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19221,7 +19382,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19475,7 +19636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19536,6 +19697,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19546,6 +19712,10 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19581,7 +19751,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19599,7 +19769,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19709,6 +19879,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19831,6 +20005,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19970,7 +20148,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20183,7 +20361,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20683,7 +20861,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21012,6 +21190,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21027,8 +21207,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21097,7 +21280,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21153,7 +21336,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21169,7 +21352,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21390,6 +21573,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21766,7 +21974,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22051,7 +22259,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22078,7 +22286,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22254,6 +22462,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22534,7 +22747,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23075,7 +23288,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23141,7 +23354,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23199,7 +23412,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23420,7 +23633,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23509,6 +23722,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23535,6 +23750,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23652,6 +23873,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23678,6 +23905,12 @@ msgstr ""
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23708,6 +23941,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23761,6 +24000,12 @@ msgstr ""
msgid "Show in Module Section"
msgstr ""
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23846,7 +24091,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23932,8 +24177,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr ""
@@ -24097,6 +24344,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24164,7 +24421,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24254,7 +24511,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24270,7 +24527,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24491,7 +24748,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24822,7 +25079,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24890,7 +25147,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24999,7 +25256,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25177,6 +25434,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25236,6 +25494,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25306,7 +25569,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25568,7 +25831,7 @@ msgid ""
""
msgstr ""
-#: frappe/database/database.py:475
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr ""
@@ -25626,11 +25889,11 @@ msgstr ""
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1086
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1043
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr ""
@@ -25669,7 +25932,7 @@ msgstr ""
msgid "The number of seconds until the request expires"
msgstr ""
-#: frappe/www/update-password.html:88
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr ""
@@ -25693,7 +25956,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25833,6 +26096,12 @@ msgstr ""
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr ""
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr ""
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -25882,7 +26151,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr ""
@@ -25909,7 +26178,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -25925,7 +26194,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -25988,7 +26257,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26436,7 +26705,7 @@ msgid ""
"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr ""
@@ -27795,7 +28116,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28099,15 +28420,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28133,6 +28454,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28470,7 +28797,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28868,7 +29195,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -29009,7 +29336,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29197,7 +29524,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29276,7 +29603,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29292,7 +29619,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29300,7 +29627,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29345,7 +29672,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29464,7 +29791,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29484,7 +29811,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29557,15 +29884,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29733,11 +30060,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29751,7 +30078,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29763,7 +30090,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29787,7 +30114,7 @@ msgstr ""
msgid "_report"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29810,7 +30137,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29868,7 +30195,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30035,7 +30362,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30109,7 +30436,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30299,7 +30626,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30633,7 +30960,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30641,7 +30968,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30671,7 +30998,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30743,7 +31070,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30886,7 +31213,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30910,7 +31237,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30920,7 +31247,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -30970,23 +31298,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30998,7 +31326,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31027,12 +31355,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31069,7 +31397,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31185,11 +31513,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31338,11 +31666,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
From 0235d8fc6123fd03bfb88db79899eb91047b94ba Mon Sep 17 00:00:00 2001
From: Corentin Forler <10946971+cogk@users.noreply.github.com>
Date: Tue, 15 Jul 2025 08:57:22 +0200
Subject: [PATCH 145/211] fix(user): Destroy sessions after rename (#32253)
---
frappe/core/doctype/user/user.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py
index f53351b4ff..c3feed78f3 100644
--- a/frappe/core/doctype/user/user.py
+++ b/frappe/core/doctype/user/user.py
@@ -20,6 +20,7 @@ from frappe.desk.notifications import clear_notifications
from frappe.model.document import Document
from frappe.query_builder import DocType
from frappe.rate_limiter import rate_limit
+from frappe.sessions import clear_sessions
from frappe.utils import (
cint,
escape_html,
@@ -628,6 +629,9 @@ class User(Document):
# set email
frappe.db.set_value("User", new_name, "email", new_name)
+ clear_sessions(user=old_name, force=True)
+ clear_sessions(user=new_name, force=True)
+
def append_roles(self, *roles):
"""Add roles to user"""
current_roles = {d.role for d in self.get("roles")}
From ffe9ff5290df372f09ddb0c5900b7229fad01299 Mon Sep 17 00:00:00 2001
From: Hussain Nagaria <34810212+NagariaHussain@users.noreply.github.com>
Date: Tue, 15 Jul 2025 12:28:21 +0530
Subject: [PATCH 146/211] fix: handle user does not exist when session resume
(#33334)
---
frappe/auth.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/auth.py b/frappe/auth.py
index 5ce4462161..9e4e66dda0 100644
--- a/frappe/auth.py
+++ b/frappe/auth.py
@@ -131,7 +131,7 @@ class LoginManager:
self.make_session(resume=True)
self.get_user_info()
self.set_user_info(resume=True)
- except AttributeError:
+ except (AttributeError, frappe.DoesNotExistError):
self.user = "Guest"
self.get_user_info()
self.make_session()
From 8d62e4de01f4e29f2b7b212a9d9f1365af1f82bd Mon Sep 17 00:00:00 2001
From: Akhil Narang
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "كلمة في حد ذاتها هي سهلة التخمين."
@@ -860,7 +872,7 @@ msgstr "العمل / الطريق"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "فشل العمل"
@@ -1025,8 +1037,8 @@ msgid "Add Child"
msgstr "إضافة الطفل"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1062,7 +1074,7 @@ msgid "Add Gray Background"
msgstr "أضف خلفية رمادية"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "إضافة مجموعة"
@@ -1876,6 +1888,12 @@ msgstr "سمح في المذكرات"
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1892,6 +1910,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr "السماح DOCTYPE ، DOCTYPE . كن حذرا!"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "مسجل بالفعل"
@@ -1983,7 +2037,7 @@ msgstr "المعدل"
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2072,16 +2126,6 @@ msgstr ""
msgid "App"
msgstr "تطبيق"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "هوية العميل للتطبيق"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "كلمة مرور التطبيق الثانوي"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2095,21 +2139,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "اسم التطبيق"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "لم يتم تثبيت التطبيق {0}"
@@ -2355,7 +2402,7 @@ msgstr ""
msgid "Assign Condition"
msgstr "تعيين الشرط"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "تكليف إلى"
@@ -2364,7 +2411,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "تكليف إلى"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2609,11 +2656,11 @@ msgstr "تم حذف المرفق"
msgid "Attachments"
msgstr "المرفقات"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "محاولة الاتصال بـ QZ Tray ..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "محاولة إطلاق QZ Tray ..."
@@ -2665,6 +2712,11 @@ msgstr "فشلت المصادقة أثناء تلقي رسائل البريد ا
msgid "Author"
msgstr "مؤلف"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2899,7 +2951,7 @@ msgstr "الصورة الرمزية"
msgid "Average"
msgstr "معدل"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "متوسط {0}"
@@ -3776,7 +3828,7 @@ msgid "Camera"
msgstr "الة تصوير"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3928,11 +3980,11 @@ msgstr "لا يمكن الإلغاء قبل الإرسال. انظر الانت
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3960,7 +4012,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr "لا يمكن حذف المجلدات الرئيسية والمرفقات"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "لا يمكن حذف أو إلغاء لأن {0} {1} مرتبط مع {2} {3} {4}"
@@ -4015,7 +4067,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "لا يمكنك التعديل على التقارير القياسية. يرجى نسخ التقريرالقياسي و التعديل على النسخة الجديدة"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "لا يمكنك التعديل على وثيقة ملغية"
@@ -4052,7 +4104,7 @@ msgstr "لا يمكن تعيين طابعات متعددة على تنسيق ط
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "لا يمكن ربط وثيقة إلغاء: {0}"
@@ -4097,7 +4149,7 @@ msgstr "لا يمكن تحديث {0}"
msgid "Cannot use sub-query in order by"
msgstr "لا يمكن استخدام طلب البحث الفرعي بالترتيب"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4154,10 +4206,6 @@ msgstr "وصف الفئة"
msgid "Category Name"
msgstr "اسم التصنيف"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "سنت"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4442,6 +4490,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4563,8 +4615,10 @@ msgid "Client Credentials"
msgstr "وثائق تفويض العميل"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "رمز العميل"
@@ -4580,6 +4634,12 @@ msgstr ""
msgid "Client Information"
msgstr "معلومات العميل"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4592,13 +4652,32 @@ msgstr "العميل النصي"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "سر العميل"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4683,7 +4762,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "انهيار"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "انهيار جميع"
@@ -4829,7 +4908,7 @@ msgstr "الأعمدة / الحقول"
msgid "Columns based on"
msgstr "أعمدة بناء على"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "الجمع بين نوع المنحة ( {0} ) ونوع الاستجابة ( {1} ) غير مسموح به"
@@ -5078,6 +5157,12 @@ msgstr ""
msgid "Conditions"
msgstr "الظروف"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5114,7 +5199,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "أكد"
@@ -5123,7 +5208,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "أكد"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5136,7 +5221,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr "تأكيد كلمة المرور الجديدة"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5177,8 +5262,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "متصلا علبة QZ!"
@@ -5270,6 +5355,11 @@ msgstr "إعدادات الاتصال بنا"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "خيارات الاتصال، مثل "الاستعلام المبيعات والدعم الاستعلام" الخ كل على سطر جديد أو مفصولة بفواصل."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5288,7 +5378,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5370,7 +5460,7 @@ msgstr "حالة المساهمة"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "نسخ إلى الحافظة."
@@ -5411,7 +5501,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr "لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "لا يمكن أن تجد {0}"
@@ -5439,7 +5529,7 @@ msgstr "تعذر الحفظ ، يرجى التحقق من البيانات ال
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "عد"
@@ -6144,7 +6234,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "لوحة القيادة"
@@ -7311,6 +7401,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7556,7 +7647,7 @@ msgstr "شرط قاعدة تسمية المستند"
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "المستند في قائمة الانتظار"
@@ -7713,7 +7804,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7850,7 +7941,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8105,7 +8196,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8657,6 +8748,12 @@ msgstr "تمكين الربط التلقائي في المستندات"
msgid "Enable Comments"
msgstr "تمكين تعليقات"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9047,7 +9144,7 @@ msgstr ""
msgid "Error Message"
msgstr "رسالة خطأ"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "خطأ في الاتصال بـ QZ Tray Application ...
تحتاج إلى تثبيت تطبيق QZ Tray وتشغيله لاستخدام ميزة Raw Print.
انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ."
@@ -9258,7 +9355,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "وقت التنفيذ: {0} ثانية"
@@ -9284,7 +9381,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "وسعت"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "توسيع الكل"
@@ -9345,7 +9442,7 @@ msgstr "وقت انتهاء صلاحية رمز الاستجابة السريع
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9710,7 +9807,7 @@ msgstr "جلب مستندات البحث العالمي الافتراضية."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9781,7 +9878,7 @@ msgstr "حقل لتعقب"
msgid "Field type cannot be changed for {0}"
msgstr "لا يمكن تغيير نوع الحقل ل {0}"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9824,7 +9921,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "اسم الحقل محدد ب 64 حرف
Fieldname is limited to 64 characters ({0})"
@@ -9840,7 +9937,7 @@ msgstr "أسم الحقل الذي سيكون DOCTYPE لهذا الحقل الا
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}"
@@ -10288,7 +10385,7 @@ msgstr "إتبع"
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10472,7 +10569,7 @@ msgstr "للمستخدم"
msgid "For Value"
msgstr "للقيمة"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10)."
@@ -10750,7 +10847,7 @@ msgstr "من تاريخ"
msgid "From Date Field"
msgstr "من حقل التاريخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "من نوع المستند"
@@ -10810,7 +10907,7 @@ msgstr "وظيفة"
msgid "Function Based On"
msgstr "وظيفة على أساس"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10888,7 +10985,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11317,7 +11414,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11367,7 +11464,7 @@ msgstr "HH: MM: SS"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11596,7 +11693,7 @@ msgstr "هلفتيكا"
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11638,6 +11735,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "إخفاء"
@@ -11799,7 +11897,7 @@ msgstr "سيتم تطبيق قاعدة الأولوية الأعلى أولاً"
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "تلميح: تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور"
@@ -11882,15 +11980,20 @@ msgstr "ساعات"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "كيف ينبغي أن يتم تنسيق هذه العملة؟ إذا لم يتم تعيين و، استخدم افتراضيات النظام"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12571,11 +12674,11 @@ msgstr "تضمين سمة من التطبيقات"
msgid "Include Web View Link in Email"
msgstr "إرسال ارتباط عرض الويب للمستند بالبريد الإلكتروني"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "تشمل المسافة البادئة"
@@ -12642,11 +12745,11 @@ msgstr "مستخدم غير صحيح أو كلمة مرور"
msgid "Incorrect Verification code"
msgstr "رمز التحقق غير صحيح"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12733,7 +12836,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "إدراج بعد"
@@ -12989,7 +13092,7 @@ msgstr "قيمة تصفية غير صالحة"
msgid "Invalid Home Page"
msgstr "الصفحة الرئيسية غير صالحة"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "رابط غير صالح"
@@ -13023,7 +13126,7 @@ msgstr "خيار غير صالح"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "تنسيق الإخراج غير صالح"
@@ -13035,9 +13138,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "رمز مرور خاطئ"
@@ -13117,7 +13220,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13141,10 +13244,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "اسم الحقل غير صالح {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13198,7 +13305,7 @@ msgstr "محتوى غير صالح أو تالف للاستيراد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13947,7 +14054,7 @@ msgstr "التسمية إلزامية"
msgid "Landing Page"
msgstr "الصفحة المقصودة"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "المناظر الطبيعيه"
@@ -14243,7 +14350,7 @@ msgstr "رسالة"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14557,7 +14664,7 @@ msgstr "الروابط"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "قائمة"
@@ -14871,6 +14978,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15057,7 +15169,7 @@ msgstr "إلزامي يعتمد على"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "معلومات إلزامية مفقود:"
@@ -15280,7 +15392,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15478,6 +15590,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr "عنوان Meta لـ SEO"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15497,7 +15615,7 @@ msgstr "عنوان Meta لـ SEO"
msgid "Method"
msgstr "طريقة"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15591,7 +15709,7 @@ msgstr ""
msgid "Missing Fields"
msgstr "حقول مفقودة"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15599,7 +15717,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15665,7 +15783,7 @@ msgstr "عدل من قبل"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15965,7 +16083,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16131,7 +16249,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "قيمة سالبة"
@@ -16260,7 +16378,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "كلمة مرور جديدة"
@@ -16305,7 +16423,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16337,7 +16474,7 @@ msgstr "القيمة الجديدة التي سيتم تحديدها"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "{0} جديد"
@@ -16488,7 +16625,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "لا"
@@ -16517,7 +16654,7 @@ msgid "No Copy"
msgstr "اي نسخة"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16776,7 +16913,7 @@ msgstr "عدد الصفوف (بحد أقصى 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "لا يوجد صلاحية لـ {0}
No permission for {0}"
@@ -16869,6 +17006,12 @@ msgstr "غير سلبي"
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "لا شيء"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "لا شيء: نهاية سير العمل"
@@ -16904,7 +17047,7 @@ msgstr "ليس من أحفاد"
msgid "Not Equals"
msgstr "لا تساوي"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "لم يتم العثور على"
@@ -16930,9 +17073,9 @@ msgstr "غير مرتبط بأي سجل"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17040,7 +17183,7 @@ msgstr "ليس في وضع المطور! يقع في site_config.json أو جع
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "غير مسموح به"
@@ -17361,6 +17504,11 @@ msgstr "إعدادات موفرOAuth"
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17610,7 +17758,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17641,7 +17789,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17649,7 +17797,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17782,7 +17930,7 @@ msgstr "افتتح"
msgid "Operation"
msgstr "عملية"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "يجب أن يكون المشغل واحدا من {0}"
@@ -17897,7 +18045,7 @@ msgstr "تاريخ المنظمة"
msgid "Org History Heading"
msgstr "عنوان تاريخ المنظمة"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "توجيه"
@@ -17979,9 +18127,11 @@ msgstr "مالك"
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18276,8 +18426,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr "الأصل هو اسم المستند الذي ستتم إضافة البيانات إليه."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18382,7 +18532,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18394,7 +18544,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18703,7 +18853,7 @@ msgstr "رقم الهاتف"
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18874,7 +19024,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "يرجى تمكين النوافذ المنبثقة"
@@ -18891,23 +19041,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr "يرجى التأكد من أن التعريف الخاص بك لديه عنوان البريد الإلكتروني"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "الرجاء إدخال عنوان ورل لرمز الدخول المميز"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "الرجاء إدخال عنوان ورل للمصادقة"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "الرجاء إدخال عنوان ورل الأساسي"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "الرجاء إدخال معرف العميل قبل تمكين تسجيل الدخول الاجتماعي"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "الرجاء إدخال العميل السري قبل تمكين تسجيل الدخول الاجتماعي"
@@ -18915,7 +19065,7 @@ msgstr "الرجاء إدخال العميل السري قبل تمكين تسج
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "الرجاء إدخال عنوان ورل لإعادة التوجيه"
@@ -18927,7 +19077,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "الرجاء إدخال كلمة المرور"
@@ -18940,11 +19090,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr "الرجاء إدخال أرقام جوال صالحة"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18960,7 +19110,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "يرجى التأكد من أن وثائق الاتصال المرجعية غير مرتبطة بشكل دائري."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "يرجى تحديث للحصول على أحدث وثيقة."
@@ -19028,7 +19178,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح"
msgid "Please select applicable Doctypes"
msgstr "يرجى اختيار الأساليب المناسبة"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة"
@@ -19062,7 +19212,7 @@ msgstr "يرجى تعيين تعيين طابعة لتنسيق الطباعة ه
msgid "Please set filters"
msgstr "يرجى تعيين المرشحات"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "الرجاء تعيين قيمة عوامل التصفية في جدول تصفية التقرير."
@@ -19135,10 +19285,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19184,7 +19343,7 @@ msgstr "بوابة عنصر القائمة"
msgid "Portal Settings"
msgstr "إعدادات البوابة"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "صورة"
@@ -19438,7 +19597,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19499,6 +19658,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19509,6 +19673,10 @@ msgstr "تنسيق الطباعة مساعدة"
msgid "Print Format Type"
msgstr "نوع تنسيق الطباعة"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "تم تعطيل تنسيق الطباعة {0}"
@@ -19544,7 +19712,7 @@ msgstr "طباعة إخفاء إذا لا قيمة"
msgid "Print Language"
msgstr "لغة الطباعة"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "طباعة المرسلة إلى الطابعة!"
@@ -19562,7 +19730,7 @@ msgstr "ملقم الطباعة"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "إعدادات الطباعة"
@@ -19672,6 +19840,10 @@ msgstr "خاص"
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19794,6 +19966,10 @@ msgstr "جمهور"
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19933,7 +20109,7 @@ msgstr "رمز الاستجابة السريعة"
msgid "QR Code for Login Verification"
msgstr "رمز الاستجابة السريعة لتسجيل الدخول"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "فشل علبة QZ:"
@@ -20146,7 +20322,7 @@ msgstr "تقييم"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "أوامر الخام"
@@ -20646,7 +20822,7 @@ msgstr "المرجع"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20975,6 +21151,8 @@ msgstr "الرد على الجميع"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20990,8 +21168,11 @@ msgstr "الرد على الجميع"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "تقرير"
@@ -21060,7 +21241,7 @@ msgstr "مدير التقارير"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "تقرير الاسم"
@@ -21116,7 +21297,7 @@ msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21132,7 +21313,7 @@ msgstr "تم تحديث التقرير بنجاح"
msgid "Report was not saved (there were errors)"
msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي."
@@ -21353,6 +21534,31 @@ msgstr "إعادة تعيين إلى الإعدادات الافتراضية"
msgid "Reset your password"
msgstr "اعد ضبط كلمه السر"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21729,7 +21935,7 @@ msgstr "إعادة توجيه الطريق"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "صف"
@@ -22014,7 +22220,7 @@ msgstr "السبت"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22041,7 +22247,7 @@ msgstr "حفظ باسم"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "احفظ التقرير"
@@ -22217,6 +22423,11 @@ msgstr ""
msgid "Scopes"
msgstr "نطاقات"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22497,7 +22708,7 @@ msgid "Select Column"
msgstr "حدد العمود"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "تحديد الأعمدة"
@@ -23038,7 +23249,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}"
msgid "Server Action"
msgstr "عمل الخادم"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطأ في الخادم"
@@ -23104,7 +23315,7 @@ msgstr "الجلسة الافتراضية"
msgid "Session Defaults Saved"
msgstr "تم حفظ الإعدادات الافتراضية للجلسة"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "انتهت الجلسة"
@@ -23162,7 +23373,7 @@ msgstr "ضبط المرشحات"
msgid "Set Filters for {0}"
msgstr "تعيين عوامل التصفية لـ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23380,7 +23591,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "الإعداد التلقائي البريد الإلكتروني"
@@ -23469,6 +23680,8 @@ msgstr "اختصارات"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "تبين"
@@ -23495,6 +23708,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "إظهار التقويم"
@@ -23612,6 +23831,12 @@ msgstr "إظهار معاينة المنبثقة"
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23638,6 +23863,12 @@ msgstr "عرض عناوين القسم"
msgid "Show Sidebar"
msgstr "مشاهدة الشريط الجانبي"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23668,6 +23899,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "إظهار التحذيرات"
@@ -23721,6 +23958,12 @@ msgstr "إظهار شكل كامل بدلاً من إدخال سريع مشرو
msgid "Show in Module Section"
msgstr "تظهر في القسم وحدة"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23806,7 +24049,7 @@ msgid "Sign Up is disabled"
msgstr "تم تعطيل الاشتراك"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "سجل"
@@ -23892,8 +24135,10 @@ msgstr "تخطى"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "تجاهل حق الوصول"
@@ -24057,6 +24302,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr "لينة المرتجعة"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24124,7 +24379,7 @@ msgstr "يجب أن يكون حقل نوع {0} لFIELDNAME صحيح"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24214,7 +24469,7 @@ msgstr ""
msgid "Standard"
msgstr "اساسي"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24230,7 +24485,7 @@ msgstr "المعيار غير محدد"
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "لا يمكن تحديث تنسيق الطباعة القياسية"
@@ -24451,7 +24706,7 @@ msgstr "الفاصل الزمني للإحصائيات"
msgid "Status"
msgstr "الحالة"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "تم تحديث الحالة"
@@ -24782,7 +25037,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "نجاح! أنت جيد للذهاب 👍"
@@ -24850,7 +25105,7 @@ msgstr "اسم المستخدم اقترح: {0}"
msgid "Sum"
msgstr "مجموع"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "مجموع {0}"
@@ -24959,7 +25214,7 @@ msgstr "المزامنة"
msgid "Syncing {0} of {1}"
msgstr "مزامنة {0} من {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25137,6 +25392,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25196,6 +25452,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25266,7 +25527,7 @@ msgstr ""
msgid "Table updated"
msgstr "الجدول محدث"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "جدول {0} لا يمكن أن يكون فارغا"
@@ -25522,7 +25783,7 @@ msgid "The browser API key obtained from the Google Cloud Console under \\nThe resource you are looking for is not available"
@@ -25786,6 +26047,12 @@ msgstr "كانت هناك بعض الأخطاء التي تحدد الاسم،
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr ""
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr ""
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -25835,7 +26102,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "هذا الإجراء مسموح به فقط لـ {}"
@@ -25862,7 +26129,7 @@ msgstr ""
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr ""
@@ -25878,7 +26145,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr "تم تعديل هذا المستند بالفعل ، ولا يمكنك تعديله مرة أخرى"
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -25939,7 +26206,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "هذا يذهب فوق عرض الشرائح."
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة."
@@ -26381,7 +26648,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n"
"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "غير معروف"
@@ -27738,7 +28056,7 @@ msgstr "إذن المستخدم"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "ضوابط المستخدم"
@@ -28042,15 +28360,15 @@ msgstr "تم تغير القيمة"
msgid "Value To Be Set"
msgstr "قيمة ليتم تعيينها"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "لا يمكن تغير القيمة ل {0}"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "لا يمكن أن تكون القيمة سالبة لـ"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "لا يمكن أن تكون القيمة سالبة لـ {0}: {1}"
@@ -28076,6 +28394,12 @@ msgstr "سيتم تعيين القيمة من هذا الحقل كتاريخ ا
msgid "Value must be one of {0}"
msgstr "يجب أن تكون القيمة واحدة من {0}"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28413,7 +28737,7 @@ msgstr "صفحة على الإنترنت"
msgid "Web Page Block"
msgstr "كتلة صفحة الويب"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28811,7 +29135,7 @@ msgstr "سيتم عرض فقط إذا تم تمكين عناوين المقطع"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "مع رئيس رسالة"
@@ -28952,7 +29276,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29140,7 +29464,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "نعم"
@@ -29219,7 +29543,7 @@ msgstr "لا يسمح لك بطباعة هذا التقرير"
msgid "You are not allowed to send emails related to this document"
msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "لا يسمح لك بتحديث الوثيقة نموذج الويب هذه"
@@ -29235,7 +29559,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "لا يسمح لك بالوصول إلى هذه الصفحة."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29243,7 +29567,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "أنت الآن تتبع هذا المستند. سوف تتلقى التحديثات اليومية عبر البريد الإلكتروني. يمكنك تغيير هذا في إعدادات المستخدم."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29288,7 +29612,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29407,7 +29731,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل"
@@ -29427,7 +29751,7 @@ msgstr "ليس لديك أذونات لإلغاء كافة المستندات ا
msgid "You don't have access to Report: {0}"
msgstr "ليس لديك حق الوصول إلى التقرير: {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29500,15 +29824,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "يجب عليك تسجيل الدخول لإرسال هذا النموذج"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29676,11 +30000,11 @@ msgstr ""
msgid "Your login id is"
msgstr "معرف تسجيل الدخول الخاص بك هو"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29694,7 +30018,7 @@ msgstr "اسم المؤسسة وعنوانك لتذييل البريد الإل
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة."
@@ -29706,7 +30030,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "صفر"
@@ -29730,7 +30054,7 @@ msgstr ""
msgid "_report"
msgstr "_تقرير"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29753,7 +30077,7 @@ msgstr "أدخل_بعد"
msgid "amend"
msgstr "تعديل"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "و"
@@ -29811,7 +30135,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "د"
@@ -29978,7 +30302,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "ح"
@@ -30052,7 +30376,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "م"
@@ -30242,7 +30566,7 @@ msgid "restored {0} as {1}"
msgstr "استعادة {0} ك {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "س"
@@ -30576,7 +30900,7 @@ msgstr "{0} غير مشترك أصلاً"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} تم إلغاء الاشتراك في {1} {2}"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} و {1}"
@@ -30584,7 +30908,7 @@ msgstr "{0} و {1}"
msgid "{0} are currently {1}"
msgstr "{0} حاليًا {1}"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} مطلوبة"
@@ -30614,7 +30938,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30686,7 +31010,7 @@ msgstr "لا يمكن أن يحتوي اسم الحقل {0} على أحرف خا
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30829,7 +31153,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} ليس تنسيق تقرير صالحًا. يجب أن يكون تنسيق التقرير مما يلي {1}"
@@ -30853,7 +31177,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} هو الآن تنسيق الطباعة الافتراضي لنوع المستند {1}"
@@ -30863,7 +31187,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} مطلوب"
@@ -30913,23 +31238,23 @@ msgstr "قبل {0} دقائق"
msgid "{0} months ago"
msgstr "قبل {0} أشهر"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} يجب أن يكون بعد {1}"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} يجب أن يكون واحدا من {1}"
@@ -30941,7 +31266,7 @@ msgstr "يجب تعيين {0} أولا"
msgid "{0} must be unique"
msgstr "{0} يجب أن تكون فريدة من نوعها"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30970,12 +31295,12 @@ msgstr "{0} من {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} أو {1}"
@@ -31012,7 +31337,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31128,11 +31453,11 @@ msgstr "{0} {1} غير موجود ، حدد هدفا جديدا لدمج"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} غير موجود"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: لا يمكن حذف السجل المقدم. يجب عليك {2} إلغاء {3} أولاً."
@@ -31281,11 +31606,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na
msgid "{} Complete"
msgstr "{} اكتمال"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po
index 62129430b8..ee2e1294a1 100644
--- a/frappe/locale/bs.po
+++ b/frappe/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-28 17:46\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "1 Izvještaj"
msgid "1 comment"
msgstr "1 komentar"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "prije 1 dan"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "prije 1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "prije 1 minutu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "prije 1 mjesec"
@@ -180,37 +180,37 @@ msgstr "1 od 2"
msgid "1 record will be exported"
msgstr "1 zapis će biti eksportiran"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "prije 1 sekundu"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "prije 1 sedmicu"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "prije 1 godinu"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "prije 2 sata"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "prije 2 mjeseca"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "prije 2 sedmice"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "prije 2 godine"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "prije 3 minute"
@@ -226,7 +226,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 Zapisa"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "prije 5 dana"
@@ -739,6 +739,11 @@ msgstr ">="
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Ime DocType-a treba da počinje slovom i može se sastojati samo od slova, brojeva, razmaka, donjih crta i crtica"
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr "Instanca Sistema može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri."
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Istaknuta objava mora imati naslovnu sliku"
@@ -773,6 +778,15 @@ msgstr "Simbol za ovu valutu. Za npr. $"
msgid "A template already exists for field {0} of {1}"
msgstr "Šablon već postoji za polje {0} od {1}"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr "Niz identifikatora verzije za klijentski softver.\n"
+"
\n"
+"Vrijednost treba promijeniti pri svakom ažuriranju klijentskog softvera s istim ID softvera."
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Riječ samu po sebi lako je pogoditi."
@@ -1034,7 +1048,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1199,8 +1213,8 @@ msgid "Add Child"
msgstr "Dodaj Podređeni"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1236,7 +1250,7 @@ msgid "Add Gray Background"
msgstr "Dodaj Sivu Pozadinu"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Dodaj Grupu"
@@ -2051,6 +2065,12 @@ msgstr "Dozvoljeno u Spominjanju"
msgid "Allowed Modules"
msgstr "Dozvoljeni Moduli"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr "Dozvoljeni Javni Izvori Klijenta"
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -2067,6 +2087,42 @@ msgstr "Dozvoljeno ugrađivanje domena"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Dopuštanje DocType, DocType. Budite pažljivi!"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-authorization-server. Referenca: RFC8414"
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-protected-resource. Referenca: RFC9728"
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr "Omogućava klijentima da se registruju bez ručne intervencije. Registracija kreira OAuth Client unos. Referenca: RFC7591"
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr "Omogućava klijentima da ovo vide kao autorizacijski server prilikom upita krajnjoj tački /.well-known/oauth-protected-resource."
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na društvene mreže kao servera za autorizaciju."
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr "Omogućava preskakanje autorizacije ako korisnik ima aktivne tokene."
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Već Registrovan"
@@ -2158,7 +2214,7 @@ msgstr "Izmjena"
msgid "Amendment Naming Override"
msgstr "Zaobiđi izmjenu Imenovanja"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Izmjena nije Dozvoljena"
@@ -2247,16 +2303,6 @@ msgstr "Osim Upravitelja Sistema, uloge s pravom Postavi korisničke dozvole mog
msgid "App"
msgstr "Aplikacija"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "ID Aplikacije Klijenta"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Tajna Aplikacije Klijenta"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2270,21 +2316,24 @@ msgstr "Logotip aplikacije"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Naziv Aplikacije"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr "Naziv Aplikacije (Ime Klijenta)"
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2530,7 +2579,7 @@ msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom
msgid "Assign Condition"
msgstr "Dodijeli Uslov"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Dodijeli"
@@ -2539,7 +2588,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodijeli"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Dodijeli Korisničkoj Grupi"
@@ -2784,11 +2833,11 @@ msgstr "Prilog Uklonjen"
msgid "Attachments"
msgstr "Prilozi"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Pokušaj povezivanja na QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Pokušaj pokretanja QZ Tray..."
@@ -2840,6 +2889,11 @@ msgstr "Autentifikacija nije uspjela prilikom primanja e-pošte sa naloga e-poš
msgid "Author"
msgstr "Autor"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr "Autorizacija"
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3074,7 +3128,7 @@ msgstr "Avatar"
msgid "Average"
msgstr "Prosjek"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Prosjek {0}"
@@ -3951,7 +4005,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4103,11 +4157,11 @@ msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}"
msgid "Cannot cancel {0}."
msgstr "Nije moguće otkazati {0}."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)"
@@ -4135,7 +4189,7 @@ msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika"
msgid "Cannot delete Home and Attachments folders"
msgstr "Nije moguće izbrisati mape Početna i Prilozi"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}"
@@ -4190,7 +4244,7 @@ msgstr "Nije moguće uređivati Standardne Grafikone"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Nije moguće uređivati standard izvještaj.Dupliciraj i kreiraj novi izvještaj"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Nije moguće uređivati otkazani dokument"
@@ -4227,7 +4281,7 @@ msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača."
msgid "Cannot import table with more than 5000 rows."
msgstr "Nije moguće uvesti tabelu sa više od 5000 redova."
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Nije moguće povezati otkazani dokument: {0}"
@@ -4272,7 +4326,7 @@ msgstr "Nije moguće ažurirati {0}"
msgid "Cannot use sub-query in order by"
msgstr "Nije moguće koristiti podupit po redoslijedu"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po"
@@ -4329,10 +4383,6 @@ msgstr "Opis Kategorije"
msgid "Category Name"
msgstr "Naziv Kategorije"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Cent"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4618,6 +4668,10 @@ msgstr "Očisti & Dodaj Šablon"
msgid "Clear & Add template"
msgstr "Očisti & Dodaj Šablon"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Obriši Sve"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4739,8 +4793,10 @@ msgid "Client Credentials"
msgstr "Akreditivi Klijenta"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "ID Klijenta"
@@ -4756,6 +4812,12 @@ msgstr "Id. Klijenta"
msgid "Client Information"
msgstr "Informacije o Klijentu"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr "Metapodaci Klijenta"
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4768,13 +4830,32 @@ msgstr "Klijent Skripta"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Tajna Klijenta"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr "Osnovna Tajna Klijenta"
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr "Upis Tajne Klijenta"
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr "URI Klijenta"
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4859,7 +4940,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sklopi Sve"
@@ -5005,7 +5086,7 @@ msgstr "Kolone / Polja"
msgid "Columns based on"
msgstr "Kolone zasnovane na"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "Kombinacija tipa odobrenja ({0}) i tipa odgovora ({1}) nije dozvoljena"
@@ -5254,6 +5335,12 @@ msgstr "Opis Stanja"
msgid "Conditions"
msgstr "Uslovi"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr "Konfiguracija"
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5292,7 +5379,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Potvrdi"
@@ -5301,7 +5388,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Potvrdi"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Potvrdi Pristup"
@@ -5314,7 +5401,7 @@ msgstr "Potvrdi Brisanje Računa"
msgid "Confirm New Password"
msgstr "Potvrdi Novu Lozinku"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Potvrdi Lozinku"
@@ -5355,8 +5442,8 @@ msgstr "Povezana Aplikacija"
msgid "Connected User"
msgstr "Povezani Korisnik"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Povezano na QZ Tray!"
@@ -5448,6 +5535,11 @@ msgstr "Postavke Kontaktirajte nas"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Opcije za Kontakt, kao što su \"Upit za Prodaju, Upit za Podršku\" itd., svaka u novom redu ili odvojena zarezima."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Kontakti"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "Sadrži {0} sigurnosnu ispravku"
@@ -5466,7 +5558,7 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5548,7 +5640,7 @@ msgstr "Status Doprinosa"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Kontrolira mogu li se novi korisnici prijaviti pomoću ovog ključa prijave putem društvenih mreža. Ako se ne postavljaju, poštuju se Postavke Web Stranice."
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Kopirano u Međuspremnik."
@@ -5589,7 +5681,7 @@ msgstr "Ispravna verzija:"
msgid "Could not connect to outgoing email server"
msgstr "Povezivanje sa serverom odlazne e-pošte nije uspjelo"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "Nije moguće pronaći {0}"
@@ -5617,7 +5709,7 @@ msgstr "Nije moguće spremiti, provjerite podatke koje ste unijeli"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Broj"
@@ -6322,7 +6414,7 @@ msgstr "Tamna Tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Nadzorna Tabla"
@@ -7492,6 +7584,7 @@ msgstr "Dokument Status sljedećih stanja je promijenjen:
{0}
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."
msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...
Morate imati instaliranu i pokrenutu aplikaciju QZ Tray da biste koristili funkciju Direktni Ispis.
Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju."
@@ -9440,7 +9539,7 @@ msgstr "Izvršava se Kod"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "Vrijeme izvršenja: {0} sek"
@@ -9466,7 +9565,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Rasklopi Sve"
@@ -9527,7 +9626,7 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9892,7 +9991,7 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9963,7 +10062,7 @@ msgstr "Polje za Praćenje"
msgid "Field type cannot be changed for {0}"
msgstr "Tip polja se ne može promijeniti za {0}"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "Polje {0} ne postoji na {1}"
@@ -10006,7 +10105,7 @@ msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
@@ -10022,7 +10121,7 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze."
msgid "Fieldname {0} appears multiple times"
msgstr "Ime polja {0} pojavljuje se više puta"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
@@ -10470,7 +10569,7 @@ msgstr "Prati"
msgid "Followed by"
msgstr "Praćen od"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "Sljedeći Filteri Izvještaja nemaju vrijednosti:"
@@ -10655,7 +10754,7 @@ msgstr "Za Korisnika"
msgid "For Value"
msgstr "Za Vrijednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
@@ -10933,7 +11032,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -10993,7 +11092,7 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
@@ -11071,7 +11170,7 @@ msgid "Generate Random Password"
msgstr "Generiši Nasumičnu Lozinku"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11500,7 +11599,7 @@ msgstr "Objekt Klase Grupe"
msgid "Group your custom doctypes under modules"
msgstr "Grupiraj vaše prilagođene tipove dokumenata pod modulima"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "Grupirano po {0}"
@@ -11550,7 +11649,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11779,7 +11878,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "Ovdje je vaš URL-a za praćenje"
@@ -11821,6 +11920,7 @@ msgstr "Sakrivena Polja"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Sakrij"
@@ -11982,7 +12082,7 @@ msgstr "Prvo će se primijeniti pravilo višeg prioriteta"
msgid "Highlight"
msgstr "Istaknuto"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Savjet: Uključi simbole, brojeve i velika slova u lozinku"
@@ -12065,15 +12165,20 @@ msgstr "Sati"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "Kako treba formatirati ovu valutu? Ako nije postavljeno, koristit će se standard postavke sistema"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr "Naziv namijenjen je za prikaz krajnjem korisniku."
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga možete kreirati samo za sebe. Kliknite na dugme Kreiraj Radni Prostor da biste ga kreirali.
"
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12754,11 +12859,11 @@ msgstr "Uključite Teme iz Aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi Web Pregled vezu u e-poštu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "Uključi Filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "Uključi Uvlačenje"
@@ -12825,11 +12930,11 @@ msgstr "Netačan korisnik ili lozinka"
msgid "Incorrect Verification code"
msgstr "Netačan Verifikacioni Kod"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "Netačna vrijednost u redu {0}:"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "Netačna vrijednost:"
@@ -12916,7 +13021,7 @@ msgstr "Umetni Iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "Umetni Poslije"
@@ -13172,7 +13277,7 @@ msgstr "Nevažeća Vrijednost Filtera"
msgid "Invalid Home Page"
msgstr "Nevažeća Početna Stranica"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Nevažeća Veza"
@@ -13206,7 +13311,7 @@ msgstr "Nevažeća Opcija"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "Nevažeći Server Odlazne Pošte ili port: {0}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Nevažeći Izlazni Format"
@@ -13218,9 +13323,9 @@ msgstr "Nevažeće Nadjačavanje"
msgid "Invalid Parameters."
msgstr "Nevažeći Parametri."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "Nevažeća Lozinka"
@@ -13300,7 +13405,7 @@ msgstr "Nevažeći tip uslova u ugniježđenim filterima: {0}"
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'."
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13324,10 +13429,14 @@ msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field'
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja."
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr "Nevažeći naziv polja: {0}"
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr "Nevažeći tip polja: {0}"
@@ -13381,7 +13490,7 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahtjeva"
@@ -14130,7 +14239,7 @@ msgstr "Oznaka je obavezna"
msgid "Landing Page"
msgstr "Početna Stranica"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Pejzaž"
@@ -14426,7 +14535,7 @@ msgstr "Pismo"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14740,7 +14849,7 @@ msgstr "Veze"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Lista"
@@ -15054,6 +15163,11 @@ msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena."
msgid "Login with {0}"
msgstr "Prijavi se sa {0}"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr "URI Logotipa"
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15240,7 +15354,7 @@ msgstr "Obavezno Zavisi od"
msgid "Mandatory Depends On (JS)"
msgstr "Obavezno Zavisi od (JS)"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Nedostaju obavezne informacije:"
@@ -15463,7 +15577,7 @@ msgstr "Značenje Podnesi, Otkaži, Izmjeni"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15661,6 +15775,12 @@ msgstr "Meta Naziv"
msgid "Meta title for SEO"
msgstr "Meta naslov za SEO"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr "Metapodaci"
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15680,7 +15800,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr "Metoda nije Dozvoljena"
@@ -15774,7 +15894,7 @@ msgstr "Nedostaje Polje"
msgid "Missing Fields"
msgstr "Nedostajuća Polja"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "Obavezni Nedostajući Filteri"
@@ -15782,7 +15902,7 @@ msgstr "Obavezni Nedostajući Filteri"
msgid "Missing Permission"
msgstr "Nedostaje Dozvola"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "Nedostaje Vrijednost"
@@ -15848,7 +15968,7 @@ msgstr "Izmijenjeno Od"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16148,7 +16268,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16316,7 +16436,7 @@ msgstr "Postavke Navigacije"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Negativna Vrijednost"
@@ -16445,7 +16565,7 @@ msgstr "Nova Numerička Kartica"
msgid "New Onboarding"
msgstr "Nova Introdukcija"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nova Lozinka"
@@ -16490,7 +16610,28 @@ msgstr "Novi Naziv Radnog Toka"
msgid "New Workspace"
msgstr "Novi Radni Prostor"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr "Lista dozvoljenih URL-ova javnih klijenata odvojenih novim redovima (npr. https://frappe.io), ili * za prihvatanje svih.\n"
+"
\n"
+"Javni klijenti su standardno ograničeni."
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr "Lista vrijednosti opsega odvojena novim redom."
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr "Lista stringova odvojenih novim redovima predstavlja načine kontaktiranja osoba odgovornih za ovog klijenta, obično adrese e-pošte."
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "Nova lozinka ne može biti ista kao stara lozinka"
@@ -16522,7 +16663,7 @@ msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "Novi {0}"
@@ -16673,7 +16814,7 @@ msgstr "Sljedeća na Klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16702,7 +16843,7 @@ msgid "No Copy"
msgstr "Ne Kopiraj"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16961,7 +17102,7 @@ msgstr "Broj Redova (Max. 500)"
msgid "No of Sent SMS"
msgstr "Broj Poslanih SMS-ova"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Nema dozvole za {0}"
@@ -17054,6 +17195,12 @@ msgstr "Nije Negativno"
msgid "Non-Conforming"
msgstr "Neusklađen"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Nijedan"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Ništa: Kraj Radnog Toka"
@@ -17089,7 +17236,7 @@ msgstr "Nisu Podređeni Od"
msgid "Not Equals"
msgstr "Nije Jednako"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije Pronađeno"
@@ -17115,9 +17262,9 @@ msgstr "Nije povezano ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Nemože se Nulirati"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17225,7 +17372,7 @@ msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili naprav
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17546,6 +17693,11 @@ msgstr "OAuth Postavke Dobavljača"
msgid "OAuth Scope"
msgstr "OAuth Opseg"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr "OAuth Postavke"
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "OAuth je omogućen, ali nije ovlašten. Koristi dugme \"Odobri API Pristup\" da učinite isto."
@@ -17795,7 +17947,7 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
msgid "Only allowed to export customizations in developer mode"
msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "Mogu se odbaciti samo nacrti dokumenata"
@@ -17826,7 +17978,7 @@ msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja"
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr "Samo Administrator može izbrisati standardni DocType."
@@ -17834,7 +17986,7 @@ msgstr "Samo Administrator može izbrisati standardni DocType."
msgid "Only the assignee can complete this to-do."
msgstr "Samo dodjeljeni može izvršiti ovu obavezu."
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "Dozvoljeni su samo {0} izvještaja poslatih e-poštom po korisniku."
@@ -17967,7 +18119,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
@@ -18082,7 +18234,7 @@ msgstr "Istorija"
msgid "Org History Heading"
msgstr "Naslov Istorije Organizacije"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "Orijentacija"
@@ -18164,9 +18316,11 @@ msgstr "Vlasnik"
msgid "PATCH"
msgstr "ZAKRPA"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "PDF"
@@ -18461,9 +18615,9 @@ msgstr "Tip nadređenog dokumenta je obavezan za kreiranje grafikona nadzorne ta
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
-msgstr "Grupiranje roditelj-dijete ili dijete-roditelj nije dozvoljeno."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
+msgstr "Nadređeni-Podređeni ili Podređeni-Drugi Podrđeni nije dozvoljeno."
#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
@@ -18567,7 +18721,7 @@ msgstr "Lozinka nije pronađena za {0} {1} {2}"
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "Lozinka postavljena"
@@ -18579,7 +18733,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "Lozinke se ne podudaraju"
@@ -18888,7 +19042,7 @@ msgstr "Broj Telefona."
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -19059,7 +19213,7 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Omogući iskačuće prozore"
@@ -19076,23 +19230,23 @@ msgstr "Omogući {} prije nego nastavite."
msgid "Please ensure that your profile has an email address"
msgstr "Potvrdi da vaš profil ima adresu e-pošte"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Unesi URL Pristupnog Tokena"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Unesi URL Autorizacije"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Unesi Osnovni URL"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Unesi ID Klijenta prije nego što se omogući prijava na društvene mreže"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim mrežama"
@@ -19100,7 +19254,7 @@ msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim
msgid "Please enter OpenID Configuration URL"
msgstr "Unesi URL Konfiguracije OpenID-a"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Unesi URL Preusmjeravanja"
@@ -19112,7 +19266,7 @@ msgstr "Unesite ispravnu adresu e-pošte."
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr "Unesi vašu e-poštu i poruku kako bismo vam mogli odgovoriti. Hvala!"
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Unesi Lozinku"
@@ -19125,11 +19279,11 @@ msgstr "Unesi Lozinku za: {0}"
msgid "Please enter valid mobile nos"
msgstr "Unesi važeće brojeve mobitela"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "Unesi novu lozinku."
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "Unesi staru lozinku."
@@ -19145,7 +19299,7 @@ msgstr "Prijavi se da biste objavili komentar."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Osvježi da dobijete najnoviji dokument."
@@ -19213,7 +19367,7 @@ msgstr "Odaberi važeći filter datuma"
msgid "Please select applicable Doctypes"
msgstr "Odaberi primjenjive Dokumente"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje"
@@ -19247,7 +19401,7 @@ msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisa
msgid "Please set filters"
msgstr "Postavi filtere"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja."
@@ -19320,10 +19474,19 @@ msgstr "Ažuriraj {} prije nego nastavite."
msgid "Please use a valid LDAP search filter"
msgstr "Koristi važeći LDAP filter za pretraživanje"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr "Koristi sljedeće linkove za preuzimanje sigurnosne kopije datoteka."
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key."
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr "URI Pravila"
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19369,7 +19532,7 @@ msgstr "Stavka Menija Portala"
msgid "Portal Settings"
msgstr "Postavke Portala"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "Portret"
@@ -19623,7 +19786,7 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19684,6 +19847,11 @@ msgstr "Greška u Ispis Formatu"
msgid "Print Format Field Template"
msgstr "Šablon Polja Ispis Formata"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr "Format Ispisa za"
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19694,6 +19862,10 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr "Format Ispisa nije pronađen"
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "Ispis Format {0} je onemogućen"
@@ -19729,7 +19901,7 @@ msgstr "Sakrij ispis ako nema vrijednost"
msgid "Print Language"
msgstr "Jezik Ispisa"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "Ispis Poslan na pisač!"
@@ -19747,7 +19919,7 @@ msgstr "Ispisni Server"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Postavke Ispisa"
@@ -19857,6 +20029,10 @@ msgstr "Privatno"
msgid "Private Files (MB)"
msgstr "Privatne datoteke (MB)"
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr "Sigurnosna Kopija Privatnih Datoteka:"
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19979,6 +20155,10 @@ msgstr "Javno"
msgid "Public Files (MB)"
msgstr "Javne Datoteke (MB)"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr "Sigurnosna Kopija Javnih Datoteka:"
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -20118,7 +20298,7 @@ msgstr "QR Kod"
msgid "QR Code for Login Verification"
msgstr "QR Kod za Provjeru Prijave"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "QZ Tray neuspješan: "
@@ -20331,7 +20511,7 @@ msgstr "Ocjena"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Direktne Naredbe"
@@ -20831,7 +21011,7 @@ msgstr "Preporučitelj"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21160,6 +21340,8 @@ msgstr "Odgovori Svima"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21175,8 +21357,11 @@ msgstr "Odgovori Svima"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Izvještaj"
@@ -21245,7 +21430,7 @@ msgstr "Upravitelj izvještaja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "Naziv Izvještaja"
@@ -21301,7 +21486,7 @@ msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "Granica Izvještaja Dostignuta"
@@ -21317,7 +21502,7 @@ msgstr "Izvještaj je uspješno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izvještaj nije spremljen (bilo je grešaka)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada."
@@ -21538,6 +21723,31 @@ msgstr "Vrati na Standard Postavke"
msgid "Reset your password"
msgstr "Poništi Lozinku"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr "Resurs"
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr "Dokumentacija Resursa"
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr "Naziv Resursa"
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr "URI Pravila Resursa"
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr "URI Uvjeta Pružanja Usluge Resursa"
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21914,7 +22124,7 @@ msgstr "Preusmjeravanja Rute"
msgid "Route: Example \"/app\""
msgstr "Ruta: Primjer \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Red"
@@ -22199,7 +22409,7 @@ msgstr "Subota"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22226,7 +22436,7 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "Spremi Izvještaj"
@@ -22402,6 +22612,11 @@ msgstr "Obim"
msgid "Scopes"
msgstr "Opsezi"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr "Podržani Opsezi"
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22682,7 +22897,7 @@ msgid "Select Column"
msgstr "Odaberi Kolonu"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Odaberi Kolone"
@@ -23223,7 +23438,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23289,7 +23504,7 @@ msgstr "Standard Sesije"
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "Sesija Istekla"
@@ -23347,7 +23562,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -23589,7 +23804,7 @@ msgstr "Postavljanje> Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -23678,6 +23893,8 @@ msgstr "Prečice"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Prikaži"
@@ -23704,6 +23921,12 @@ msgstr "Prikaži Apsolutne Vrijednosti"
msgid "Show All"
msgstr "Prikaži Sve"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr "Prikaži metapodatke autentifikacijskog servera"
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Prikaži Kalendar"
@@ -23821,6 +24044,12 @@ msgstr "Prikaži skočni prozor za pregled"
msgid "Show Processlist"
msgstr "Prikaži Procesnu Listu"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr "Prikaži metapodatke zaštićenih resursa"
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "Prikaži Povezane Greške"
@@ -23847,6 +24076,12 @@ msgstr "Prikaži Naslove Sekcije"
msgid "Show Sidebar"
msgstr "Prikaži Bočnu Traku"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr "Prikaži ključ za prijavu na socijalnu mrežu kao server za autorizaciju"
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23877,6 +24112,12 @@ msgstr "Prikaži Introdukciju"
msgid "Show Traceback"
msgstr "Prikaži Povratno Praćenje"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr "Prikaži vrijednosti preko Grafikona"
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Prikaži Upozorenja"
@@ -23930,6 +24171,12 @@ msgstr "Prikaži punu formu umjesto modalnog za brzi unos"
msgid "Show in Module Section"
msgstr "Prikaži u Sekciji Modula"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr "Prikaži u Metapodacima Resursa"
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -24015,7 +24262,7 @@ msgid "Sign Up is disabled"
msgstr "Prijava je onemogućena"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "Prijavi se"
@@ -24101,8 +24348,10 @@ msgstr "Preskoči"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Preskoči Autorizaciju"
@@ -24266,6 +24515,16 @@ msgstr "SocketIO Transport Način"
msgid "Soft-Bounced"
msgstr "Mekano Odbijeno"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr "ID Softvera"
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr "Verzija Softvera"
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "Neke kolone mogu biti odsječene prilikom ispisa u PDF. Pokušaj zadržati broj kolona ispod 10."
@@ -24333,7 +24592,7 @@ msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24423,7 +24682,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "Standardni DocType se ne može izbrisati."
@@ -24439,7 +24698,7 @@ msgstr "Standard nije Postavljeno"
msgid "Standard Permissions"
msgstr "Standard Dozvole"
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "Standard Ispis Format ne može se ažurirati"
@@ -24660,7 +24919,7 @@ msgstr "Vremenski Interval Statistike"
msgid "Status"
msgstr "Status"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Status Ažuriran"
@@ -24991,7 +25250,7 @@ msgstr "Poruka Uspjeha"
msgid "Success title"
msgstr "Naziv Uspjeha"
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "Uspjeh! Spremni ste 👍"
@@ -25059,7 +25318,7 @@ msgstr "Predloženo Korisničko Ime: {0}"
msgid "Sum"
msgstr "Suma"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Suma od {0}"
@@ -25168,7 +25427,7 @@ msgstr "Sinhronizacija u toku"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizira se {0} od {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "Greška Sintakse"
@@ -25346,6 +25605,7 @@ msgstr "Sistemski Zapisnici"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25405,6 +25665,11 @@ msgctxt "Number system"
msgid "T"
msgstr "T"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr "URI Uvjeta Pružanja Usluge"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25475,7 +25740,7 @@ msgstr "Tabela Optimizirana"
msgid "Table updated"
msgstr "Tabela Ažurirana"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25737,7 +26002,7 @@ msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod "
-#: frappe/database/database.py:475
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr "Promjene su vraćene."
@@ -25795,11 +26060,11 @@ msgstr "Sljedeći Dani Dodjele su ponovljeni: {0}"
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
msgstr "Sljedeća Skripta Zaglavlja će dodati trenutni datum elementu u 'HTML-u zaglavlja' s klasom 'header-content'"
-#: frappe/core/doctype/data_import/importer.py:1086
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr "Sljedeće vrijednosti su nevažeće: {0}. Vrijednosti moraju biti jedna od {1}"
-#: frappe/core/doctype/data_import/importer.py:1043
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr "Sljedeće vrijednosti ne postoje za {0}: {1}"
@@ -25838,7 +26103,7 @@ msgstr "Sljedeća introdukcija će početi od mjesta gdje je korisnik stao."
msgid "The number of seconds until the request expires"
msgstr "Broj sekundi do isteka zahtjeva"
-#: frappe/www/update-password.html:88
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "Lozinka vašeg računa je istekla."
@@ -25863,7 +26128,7 @@ msgstr "Veza za poništavanje lozinke je istekla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
-#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26003,6 +26268,12 @@ msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru"
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr "Te će se obavijesti pojaviti unutar upozorenja koje se može odbaciti ispod navigacijske trake."
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr "Ova polja se koriste za pružanje metapodataka servera resursa klijentima koji upituju krajnju tačku \"dobro poznatog zaštićenog resursa\"."
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -26052,7 +26323,7 @@ msgstr "Ove Godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
@@ -26079,7 +26350,7 @@ msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena."
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena."
@@ -26095,7 +26366,7 @@ msgstr "Ovaj dokument ima nespremljene promjene koje se možda neće pojaviti u
msgid "This document is already amended, you cannot ammend it again"
msgstr "Ovaj dokument je već izmijenjen, ne možete ga ponovo mijenjati"
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Ovaj dokument je trenutno zaključan i na čekanju za izvršenje. Molimo pokušajte ponovo nakon nekog vremena."
@@ -26160,7 +26431,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo ide iznad projekcije slajdova."
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
@@ -26608,7 +26879,7 @@ msgstr "Za dodavanje dinamičkih vrijednosti iz dokumenta upotrijebite jinja ozn
"\n"
"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr "Jedinstveni ID koji dodjeljuje klijentski programer i koristi se za identifikaciju klijentskog softvera koji se dinamički registruje.\n"
+"
\n"
+"Treba da ostane isti u više verzija ili ažuriranja softvera."
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Nepoznato"
@@ -27968,7 +28292,7 @@ msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Korisničke Dozvole"
@@ -28272,15 +28596,15 @@ msgstr "Vrijednost Promijenjena"
msgid "Value To Be Set"
msgstr "Vrijednost Koju Treba Postaviti"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Vrijednost se ne može promijeniti za {0}"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "Vrijednost ne može biti negativna za"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "Vrijednost ne može biti negativna za {0}: {1}"
@@ -28306,6 +28630,12 @@ msgstr "Vrijednost iz ovog polja će biti postavljena kao krajnji datum za Uradi
msgid "Value must be one of {0}"
msgstr "Vrijednost mora biti jedna od {0}"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, tajna klijenta se ne daje klijentu i razmjena tokena koristi PKCE."
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28643,7 +28973,7 @@ msgstr "Web Stranica"
msgid "Web Page Block"
msgstr "Blok Web Stranice"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr "URL Web Stranice"
@@ -29041,7 +29371,7 @@ msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Pokrenut će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača."
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "Sa Zaglavljem"
@@ -29182,7 +29512,7 @@ msgstr "Radni Tok je uspješno ažuriran"
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Radni Prostor"
@@ -29370,7 +29700,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29449,7 +29779,7 @@ msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
msgid "You are not allowed to send emails related to this document"
msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
@@ -29465,7 +29795,7 @@ msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave."
msgid "You are not permitted to access this page."
msgstr "Nije vam dozvoljen pristup ovoj stranici."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -29473,7 +29803,7 @@ msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije."
@@ -29518,7 +29848,7 @@ msgstr "Pravila zadržavanja možete promijeniti u {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu"
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete."
@@ -29637,7 +29967,7 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite radnju"
@@ -29657,7 +29987,7 @@ msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup Izvještaju: {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvolu za pristup {0} DocType."
@@ -29730,15 +30060,15 @@ msgstr "Zadnji put ste uređivali ovo"
msgid "You must add atleast one link."
msgstr "Morate dodati barem jednu vezu."
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "Morate se prijaviti da pošaljete ovu formu"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Potrebna vam je '{0}' dozvola za {1} {2} da biste izvršili ovu radnju."
@@ -29906,11 +30236,11 @@ msgstr "Vaša forma je uspješno ažurirana"
msgid "Your login id is"
msgstr "Vaš Id za prijavu je"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr "Vaša nova lozinka je uspješno postavljena."
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr "Vaša stara lozinka nije tačna."
@@ -29924,7 +30254,7 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
@@ -29936,7 +30266,7 @@ msgstr "Vaša je stranica u toku održavanja ili ažuriranja."
msgid "Your verification code is {0}"
msgstr "Vaš verifikacioni kod je {0}"
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "Nula"
@@ -29960,7 +30290,7 @@ msgstr "_doctype"
msgid "_report"
msgstr "_izvještaj"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`"
@@ -29983,7 +30313,7 @@ msgstr "nakon_umetanja"
msgid "amend"
msgstr "izmijeni"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "i"
@@ -30041,7 +30371,7 @@ msgid "cyan"
msgstr "cijan"
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -30208,7 +30538,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nije pronađen u PATH! Ovo je potrebno za izradu sigurnosne kopije."
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
@@ -30282,7 +30612,7 @@ msgid "long"
msgstr "dugo"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
@@ -30472,7 +30802,7 @@ msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -30806,7 +31136,7 @@ msgstr "{0} je već odjavljen"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} je već otkazan za {1} {2}"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} i {1}"
@@ -30814,7 +31144,7 @@ msgstr "{0} i {1}"
msgid "{0} are currently {1}"
msgstr "{0} su trenutno {1}"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} su obavezni"
@@ -30844,7 +31174,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} je otkazao ovaj dokument {1}"
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} ne može se mijenjati jer nije otkazan. Molimo otkažite dokument prije kreiranja izmjene."
@@ -30916,7 +31246,7 @@ msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoj
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "Polja {0} ne mogu sadržavati povratne naznake (`): {1}"
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format nije mogao biti određen iz vrijednosti u ovoj koloni. Standard je {1}."
@@ -31059,7 +31389,7 @@ msgstr "{0} nije važeći nadređeni DocType za {1}"
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće nadređeno polje za {1}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}"
@@ -31083,7 +31413,7 @@ msgstr "{0} nije jedno od {1}"
msgid "{0} is not set"
msgstr "{0} nije postavljeno"
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
@@ -31093,7 +31423,8 @@ msgstr "{0} je jedan od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je obavezan"
@@ -31143,23 +31474,23 @@ msgstr "prije {0} minuta"
msgid "{0} months ago"
msgstr "{0} mjeseci prije"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} mora biti iza {1}"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora početi sa '{1}'"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr "{0} ne smije biti ni jedna od {1}"
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
@@ -31171,7 +31502,7 @@ msgstr "{0} se mora prvo postaviti"
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31200,12 +31531,12 @@ msgstr "{0} od {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr "Samo {0}."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} ili {1}"
@@ -31242,7 +31573,7 @@ msgstr "{0} je uklonio(la) svoju dodjelu."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr "{0} red #{1}: "
@@ -31358,11 +31689,11 @@ msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}."
@@ -31511,11 +31842,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam
msgid "{} Complete"
msgstr "{} Završeno"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Možda nevažeći python kod.
{}"
diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po
index 939db438e0..2af0bdb6f4 100644
--- a/frappe/locale/cs.po
+++ b/frappe/locale/cs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -555,6 +555,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr ""
@@ -589,6 +594,13 @@ msgstr ""
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -850,7 +862,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1015,8 +1027,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1052,7 +1064,7 @@ msgid "Add Gray Background"
msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1866,6 +1878,12 @@ msgstr ""
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1882,6 +1900,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Kontakty"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9248,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9274,7 +9371,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9335,7 +9432,7 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9700,7 +9797,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9771,7 +9868,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9814,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9830,7 +9927,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10278,7 +10375,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10462,7 +10559,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10740,7 +10837,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10800,7 +10897,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10878,7 +10975,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11307,7 +11404,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11357,7 +11454,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11586,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11628,6 +11725,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11789,7 +11887,7 @@ msgstr ""
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11872,15 +11970,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr ""
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12561,11 +12664,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12632,11 +12735,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12723,7 +12826,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12979,7 +13082,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13013,7 +13116,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13025,9 +13128,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13107,7 +13210,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13131,10 +13234,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13188,7 +13295,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13937,7 +14044,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14233,7 +14340,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14547,7 +14654,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr ""
@@ -14861,6 +14968,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15047,7 +15159,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15270,7 +15382,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15468,6 +15580,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15487,7 +15605,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15581,7 +15699,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15589,7 +15707,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15655,7 +15773,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15955,7 +16073,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16239,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16250,7 +16368,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16295,7 +16413,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16327,7 +16464,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16478,7 +16615,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16507,7 +16644,7 @@ msgid "No Copy"
msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16766,7 +16903,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16859,6 +16996,12 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr ""
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16894,7 +17037,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16920,9 +17063,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17030,7 +17173,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17351,6 +17494,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17600,7 +17748,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17631,7 +17779,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17639,7 +17787,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17772,7 +17920,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17887,7 +18035,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17969,9 +18117,11 @@ msgstr ""
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18266,8 +18416,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18372,7 +18522,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18384,7 +18534,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18693,7 +18843,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18864,7 +19014,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18881,23 +19031,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18905,7 +19055,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18917,7 +19067,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18930,11 +19080,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18950,7 +19100,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19018,7 +19168,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19052,7 +19202,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19125,10 +19275,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19174,7 +19333,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19428,7 +19587,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19489,6 +19648,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19499,6 +19663,10 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19534,7 +19702,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19552,7 +19720,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19662,6 +19830,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19784,6 +19956,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19923,7 +20099,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20136,7 +20312,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20636,7 +20812,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20965,6 +21141,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20980,8 +21158,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21050,7 +21231,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21106,7 +21287,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21122,7 +21303,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21343,6 +21524,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21719,7 +21925,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22004,7 +22210,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22031,7 +22237,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22207,6 +22413,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22487,7 +22698,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23028,7 +23239,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23094,7 +23305,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23152,7 +23363,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23370,7 +23581,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23459,6 +23670,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23485,6 +23698,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23602,6 +23821,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23628,6 +23853,12 @@ msgstr ""
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23658,6 +23889,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23711,6 +23948,12 @@ msgstr ""
msgid "Show in Module Section"
msgstr ""
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23796,7 +24039,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23882,8 +24125,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr ""
@@ -24047,6 +24292,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24114,7 +24369,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24204,7 +24459,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24220,7 +24475,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24441,7 +24696,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24772,7 +25027,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24840,7 +25095,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24949,7 +25204,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25127,6 +25382,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25186,6 +25442,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25256,7 +25517,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25512,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26503,6 +26770,12 @@ msgstr ""
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26530,7 +26803,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26723,7 +26996,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26770,7 +27043,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27024,10 +27297,48 @@ msgstr ""
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27077,7 +27388,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27094,7 +27405,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27138,6 +27449,13 @@ msgstr ""
msgid "Unique"
msgstr ""
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr ""
@@ -27728,7 +28046,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28032,15 +28350,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28066,6 +28384,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28403,7 +28727,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28801,7 +29125,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28942,7 +29266,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29130,7 +29454,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29209,7 +29533,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29225,7 +29549,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29233,7 +29557,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29278,7 +29602,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29397,7 +29721,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29417,7 +29741,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29490,15 +29814,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29666,11 +29990,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29684,7 +30008,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29696,7 +30020,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29720,7 +30044,7 @@ msgstr ""
msgid "_report"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29743,7 +30067,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29801,7 +30125,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29968,7 +30292,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30042,7 +30366,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30232,7 +30556,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30566,7 +30890,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30574,7 +30898,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30604,7 +30928,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30676,7 +31000,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30819,7 +31143,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30843,7 +31167,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30853,7 +31177,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -30903,23 +31228,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30931,7 +31256,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30960,12 +31285,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31002,7 +31327,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31118,11 +31443,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31271,11 +31596,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index 06c1204850..87ff0ce4e0 100644
--- a/frappe/locale/de.po
+++ b/frappe/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-29 17:46\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "1 Bericht"
msgid "1 comment"
msgstr "1 Kommentar"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "vor 1 Tag"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 Stunde"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "vor einer Stunde"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "vor einer Minute"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "vor 1 Monat"
@@ -180,37 +180,37 @@ msgstr "1 von 2"
msgid "1 record will be exported"
msgstr "1 Datensatz wird exportiert"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "vor 1 Sekunde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "vor einer Woche"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "vor einem Jahr"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "vor 2 Stunden"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "vor 2 Monaten"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "vor 2 Wochen"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "vor 2 Jahren"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "vor 3 Minuten"
@@ -226,7 +226,7 @@ msgstr "4 Stunden"
msgid "5 Records"
msgstr "5 Datensätze"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "vor 5 Tagen"
@@ -740,6 +740,11 @@ msgstr ">="
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Der Name eines DocTypes sollte mit einem Buchstaben beginnen und darf nur aus Buchstaben, Zahlen, Leerzeichen, Unterstrichen und Bindestrichen bestehen"
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Ein vorgestellter Beitrag muss ein Titelbild haben"
@@ -774,6 +779,13 @@ msgstr "Ein Symbol für diese Währung, z. B. €"
msgid "A template already exists for field {0} of {1}"
msgstr "Es existiert bereits eine Vorlage für das Feld {0} von {1}"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Ein Wort allein ist leicht zu erraten."
@@ -1035,7 +1047,7 @@ msgstr "Aktion / Route"
msgid "Action Complete"
msgstr "Aktion abgeschlossen"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Aktion fehlgeschlagen"
@@ -1200,8 +1212,8 @@ msgid "Add Child"
msgstr "Unterpunkt hinzufügen"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1237,7 +1249,7 @@ msgid "Add Gray Background"
msgstr "Grauen Hintergrund hinzufügen"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Gruppe hinzufügen"
@@ -2052,6 +2064,12 @@ msgstr "In Erwähnungen erlaubt"
msgid "Allowed Modules"
msgstr "Erlaubte Module"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -2068,6 +2086,42 @@ msgstr "Erlaubte Einbettungsdomänen"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "DocType, DocType zulassen. Achtung!"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Bereits registriert"
@@ -2159,7 +2213,7 @@ msgstr "Änderung"
msgid "Amendment Naming Override"
msgstr "Überschreibung der Berichtigungsbenennung"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Berichtigung nicht erlaubt"
@@ -2248,16 +2302,6 @@ msgstr "Abgesehen vom Systemmanager können Rollen mit der Berechtigung „Benut
msgid "App"
msgstr "Anwendung"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "App Client-ID"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "App Client Geheimnis"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2271,21 +2315,24 @@ msgstr "Anwendungslogo"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "App-Name"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "App nicht gefunden für Modul: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "App {0} ist nicht installiert"
@@ -2531,7 +2578,7 @@ msgstr "Wie von Ihnen gewünscht, wurden Ihr Konto und die Daten auf {0}, die mi
msgid "Assign Condition"
msgstr "Zuweisungsbedingung"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Zuweisen an"
@@ -2540,7 +2587,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Zuweisen an"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "An Benutzergruppe zuweisen"
@@ -2785,11 +2832,11 @@ msgstr "Anlage entfernt"
msgid "Attachments"
msgstr "Anhänge"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Es wird versucht, eine Verbindung zum QZ-Fach herzustellen ..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Es wird versucht, QZ Tray zu starten ..."
@@ -2841,6 +2888,11 @@ msgstr "Die Authentifizierung ist beim Empfang von E-Mails vom E-Mail-Konto fehl
msgid "Author"
msgstr "Autor"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3075,7 +3127,7 @@ msgstr "Avatar"
msgid "Average"
msgstr "Durchschnittlich"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Durchschnitt von {0}"
@@ -3953,7 +4005,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4105,11 +4157,11 @@ msgstr "Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten"
msgid "Cannot cancel {0}."
msgstr "{0} kann nicht storniert werden."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Status kann nicht von 0 (Entwurf) zu 2 (Abgebrochen) geändert werden"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Der Dokumentstatus kann nicht von 1 (Gebucht) auf 0 (Entwurf) geändert werden"
@@ -4137,7 +4189,7 @@ msgstr "Privater Arbeitsbereich für andere Benutzer kann nicht erstellt werden"
msgid "Cannot delete Home and Attachments folders"
msgstr "Die Ordner \"Startseite\" und \"Anlagen\" können nicht gelöscht werden"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Kann nicht gelöscht oder abgebrochen werden, weil {0} {1} mit {2} {3} {4} verknüpft ist"
@@ -4192,7 +4244,7 @@ msgstr "Standarddiagramme können nicht bearbeitet werden"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Der Standard-Report kann nicht bearbeitet werden. Bitte kopieren und einen neuen Bericht erstellen"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Aufgehobenes Dokument kann nicht bearbeitet werden"
@@ -4229,7 +4281,7 @@ msgstr "Es können nicht mehrere Drucker einem Druckformat zugeordnet werden."
msgid "Cannot import table with more than 5000 rows."
msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden."
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Aufgehobenes Dokument kann nicht verknüpft werden: {0}"
@@ -4274,7 +4326,7 @@ msgstr "Kann {0} nicht aktualisieren"
msgid "Cannot use sub-query in order by"
msgstr "Kann in \"sortieren nach\" keine Unterabfrage verwenden."
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden"
@@ -4331,10 +4383,6 @@ msgstr "Kategoriebeschreibung"
msgid "Category Name"
msgstr "Kategoriename"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Cent"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4620,6 +4668,10 @@ msgstr "Leeren und Vorlage einfügen"
msgid "Clear & Add template"
msgstr "Leeren und Vorlage einfügen"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Alles leeren"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4741,8 +4793,10 @@ msgid "Client Credentials"
msgstr "Mandant-Zugangsdaten"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "Client-ID"
@@ -4758,6 +4812,12 @@ msgstr "Client-ID"
msgid "Client Information"
msgstr "Mandanteninformationen"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4770,13 +4830,32 @@ msgstr "Clientskript"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Mandanten-Geheimnis"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4861,7 +4940,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Zuklappen"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Alle zuklappen"
@@ -5007,7 +5086,7 @@ msgstr "Spalten / Felder"
msgid "Columns based on"
msgstr "Spalten basierend auf"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "Kombination von Grant-Typ ( {0} ) und Antworttyp ( {1} ) nicht zulässig"
@@ -5256,6 +5335,12 @@ msgstr "Bedingungsbeschreibung"
msgid "Conditions"
msgstr "Bedingungen"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5294,7 +5379,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Konfigurieren Sie verschiedene Aspekte der Funktionsweise der Dokumentbenennung, z. B. die Nummernkreise und den aktuellen Zähler."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Bestätigen"
@@ -5303,7 +5388,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Bestätigen"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Zugang bestätigen"
@@ -5316,7 +5401,7 @@ msgstr "Löschen des Kontos bestätigen"
msgid "Confirm New Password"
msgstr "Bestätige neues Passwort"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Kennwort bestätigen"
@@ -5357,8 +5442,8 @@ msgstr "Verbundene Anwendung"
msgid "Connected User"
msgstr "Verbundener Benutzer"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Verbunden mit QZ Tray!"
@@ -5450,6 +5535,11 @@ msgstr "Einstellungen zu „Kontaktieren Sie uns“"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Kontaktalternativen wie „Vertriebsanfrage\", \"Support-Anfrage“ usw., jede in einer neuen Zeile oder durch Kommas getrennt."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Kontakte"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "Enthält {0} Sicherheitsfix"
@@ -5468,7 +5558,7 @@ msgstr "Enthält {0} Sicherheitsfixes"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5550,7 +5640,7 @@ msgstr "Beitragsstatus"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Steuert, ob sich neue Benutzer mit diesem Social Login Key anmelden können. Wenn nicht eingestellt, werden die Website-Einstellungen berücksichtigt."
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "In die Zwischenablage kopiert."
@@ -5591,7 +5681,7 @@ msgstr "Korrekte Version :"
msgid "Could not connect to outgoing email server"
msgstr "Konnte keine Verbindung zum Postausgangsserver herstellen"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "{0} konnte nicht gefunden werden"
@@ -5619,7 +5709,7 @@ msgstr "Konnte nicht speichern, überprüfen Sie bitte die eingegebenen Daten"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Anzahl"
@@ -6324,7 +6414,7 @@ msgstr "Dunkles Design"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Dashboard"
@@ -7493,6 +7583,7 @@ msgstr "Der DocStatus der folgenden Zustände hat sich geändert:
{0}
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7738,7 +7829,7 @@ msgstr "Bedingung für die Benennungsregel für Dokumente"
msgid "Document Naming Settings"
msgstr "Dokumentenbenennungseinstellungen"
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "anstehendes Dokument"
@@ -7895,7 +7986,7 @@ msgid "Document Types and Permissions"
msgstr "Dokumenttypen und Berechtigungen"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr "Dokument entsperrt"
@@ -8032,7 +8123,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr "HTML-Tags wie <script> oder Zeichen wie < oder > nicht kodieren, da diese absichtlich in diesem Feld verwendet werden könnten"
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "Sie haben noch kein Benutzerkonto?"
@@ -8287,7 +8378,7 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8839,6 +8930,12 @@ msgstr "Automatisches Verknüpfen in Dokumenten aktivieren"
msgid "Enable Comments"
msgstr "Kommentare aktivieren"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9230,7 +9327,7 @@ msgstr "Fehlerprotokolle"
msgid "Error Message"
msgstr "Fehlermeldung"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "Fehler beim Verbinden mit der QZ-Tray-Anwendung ...
Sie müssen die QZ Tray-Anwendung installiert haben und ausführen, 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 den Rohdruck zu erfahren ."
@@ -9441,7 +9538,7 @@ msgstr "Code wird ausgeführt"
msgid "Executing..."
msgstr "Wird ausgeführt..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "Ausführungszeit: {0} Sek"
@@ -9467,7 +9564,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Erweitern"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Alle ausklappen"
@@ -9528,7 +9625,7 @@ msgstr "Ablaufzeit der QR-Code-Bildseite"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9893,7 +9990,7 @@ msgstr "Abrufen von Standarddokumenten der globalen Suche."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9964,7 +10061,7 @@ msgstr "Zu verfolgendes Feld"
msgid "Field type cannot be changed for {0}"
msgstr "Feldtyp kann nicht für {0} geändert werden"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "Das Feld {0} existiert nicht auf {1}"
@@ -10007,7 +10104,7 @@ msgstr "Feldname '{0}' im Konflikt mit einem {1} mit dem Namen {2} in {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermöglichen"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Feldname ist auf 64 Zeichen ({0})"
@@ -10023,7 +10120,7 @@ msgstr "Feldname, der der DocType für dieses Verknüpfungsfeld sein wird."
msgid "Fieldname {0} appears multiple times"
msgstr "Feldname {0} erscheint mehrfach"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten"
@@ -10471,7 +10568,7 @@ msgstr "Folgen"
msgid "Followed by"
msgstr "Gefolgt von"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "Die folgenden Berichtsfilter haben fehlende Werte:"
@@ -10656,7 +10753,7 @@ msgstr "Für Benutzer"
msgid "For Value"
msgstr "Für Wert"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)."
@@ -10934,7 +11031,7 @@ msgstr "Von-Datum"
msgid "From Date Field"
msgstr "Von-Datum-Feld"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "Vom Dokumenttyp"
@@ -10994,7 +11091,7 @@ msgstr "Funktion"
msgid "Function Based On"
msgstr "Funktion basiert auf"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} ist nicht freigegeben."
@@ -11072,7 +11169,7 @@ msgid "Generate Random Password"
msgstr "Zufälliges Passwort generieren"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Tracking-URL generieren"
@@ -11501,7 +11598,7 @@ msgstr "Gruppenobjektklasse"
msgid "Group your custom doctypes under modules"
msgstr "Gruppieren Sie Ihre benutzerdefinierten Doctypes unter Modulen"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "Gruppiert nach {0}"
@@ -11551,7 +11648,7 @@ msgstr "HH: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11780,7 +11877,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "Hier ist Ihre Tracking-URL"
@@ -11822,6 +11919,7 @@ msgstr "Versteckte Felder"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Ausblenden"
@@ -11983,7 +12081,7 @@ msgstr "Die Regel mit der höheren Priorität wird zuerst angewendet"
msgid "Highlight"
msgstr "Hervorheben"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein"
@@ -12066,15 +12164,20 @@ msgstr "Stunden"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "Wie soll diese Währung formatiert werden? Wenn nichts festgelegt ist, werden die Standardeinstellungen verwendet"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr "Vermutlich haben Sie noch keinen Zugang zu einem Arbeitsbereich, aber Sie können einen für sich selbst erstellen. Klicken Sie dafür auf die Schaltfläche Arbeitsbereich erstellen.
"
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12755,11 +12858,11 @@ msgstr "Thema aus Apps einschließen"
msgid "Include Web View Link in Email"
msgstr "Dokument Web View Link per E-Mail senden"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "Filter einbeziehen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "Einrückung einschließen"
@@ -12826,11 +12929,11 @@ msgstr "Falscher Benutzer oder Passwort"
msgid "Incorrect Verification code"
msgstr "Falscher Bestätigungscode"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "Falscher Wert in Zeile {0}:"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "Falscher Wert:"
@@ -12917,7 +13020,7 @@ msgstr "Darüber einfügen"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "Einfügen nach"
@@ -13173,7 +13276,7 @@ msgstr "Ungültiger Filterwert"
msgid "Invalid Home Page"
msgstr "Ungültige Startseite"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Ungültige Verknüpfung"
@@ -13207,7 +13310,7 @@ msgstr "Ungültige Option"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "Ungültiger Postausgang Server oder Port: {0}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Ungültige Ausgabeformat"
@@ -13219,9 +13322,9 @@ msgstr "Ungültige Überschreibung"
msgid "Invalid Parameters."
msgstr "Ungültige Parameter."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "Ungültiges Passwort"
@@ -13301,7 +13404,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "Ungültiger Status"
@@ -13325,10 +13428,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Ungültiger Feldname {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13382,7 +13489,7 @@ msgstr "Ungültiger oder beschädigter Inhalt für den Import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "Ungültige Anfrageargumente"
@@ -14131,7 +14238,7 @@ msgstr "Bezeichnung ist zwingend erforderlich"
msgid "Landing Page"
msgstr "Landing Page"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Querformat"
@@ -14427,7 +14534,7 @@ msgstr "Letter"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14741,7 +14848,7 @@ msgstr "Verknüpfungen"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Liste"
@@ -15055,6 +15162,11 @@ msgstr "Login mit Benutzername und Passwort ist nicht erlaubt."
msgid "Login with {0}"
msgstr "Anmelden mit {0}"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15241,7 +15353,7 @@ msgstr "Bedingung für Pflichtfeld"
msgid "Mandatory Depends On (JS)"
msgstr "Bedingung für Pflichtfeld (JS)"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Pflichtangaben fehlen:"
@@ -15464,7 +15576,7 @@ msgstr "Bedeutung von Buchen, Stornieren, Berichtigen"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15662,6 +15774,12 @@ msgstr "Meta-Titel"
msgid "Meta title for SEO"
msgstr "Metatitel für SEO"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15681,7 +15799,7 @@ msgstr "Metatitel für SEO"
msgid "Method"
msgstr "Methode"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr "Methode nicht erlaubt"
@@ -15775,7 +15893,7 @@ msgstr "Fehlendes Feld"
msgid "Missing Fields"
msgstr "Nicht ausgefüllte Felder"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "Fehlende Filter erforderlich"
@@ -15783,7 +15901,7 @@ msgstr "Fehlende Filter erforderlich"
msgid "Missing Permission"
msgstr "Fehlende Berechtigung"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "Fehlender Wert"
@@ -15849,7 +15967,7 @@ msgstr "Geändert von"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16149,7 +16267,7 @@ msgid "Mx"
msgstr "Divers"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16317,7 +16435,7 @@ msgstr "Navigationseinstellungen"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeitsbereich anderer Benutzer zu bearbeiten"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Negativer Wert"
@@ -16446,7 +16564,7 @@ msgstr "Neue Zahlenkarte"
msgid "New Onboarding"
msgstr "Neues Onboarding"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Neues Passwort"
@@ -16491,7 +16609,26 @@ msgstr "Neuer Workflow-Name"
msgid "New Workspace"
msgstr "Neuer Arbeitsbereich"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "Das neue Passwort darf nicht mit dem alten Passwort identisch sein"
@@ -16523,7 +16660,7 @@ msgstr "Neuer Wert muss gesetzt werden"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "Neu {0}"
@@ -16674,7 +16811,7 @@ msgstr "Weiter bei Klick"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nein"
@@ -16703,7 +16840,7 @@ msgid "No Copy"
msgstr "Keine Kopie"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16962,7 +17099,7 @@ msgstr "Keine der Zeilen (Max 500)"
msgid "No of Sent SMS"
msgstr "Anzahl der gesendeten SMS"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Keine Berechtigung für {0}"
@@ -17055,6 +17192,12 @@ msgstr "Nicht negativ"
msgid "Non-Conforming"
msgstr "Nicht konform"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Keine"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Kein: Ende des Workflows"
@@ -17090,7 +17233,7 @@ msgstr "Nicht Nachkommen von"
msgid "Not Equals"
msgstr "Ungleich"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nicht gefunden"
@@ -17116,9 +17259,9 @@ msgstr "Nicht mit jedem Datensatz verknüpft"
msgid "Not Nullable"
msgstr "Nicht nullbar"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17226,7 +17369,7 @@ msgstr "Nicht im Entwicklungsmodus! In site_config.json erstellen oder \"Benutze
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nicht gestattet"
@@ -17547,6 +17690,11 @@ msgstr "OAuth-Provider-Einstellungen"
msgid "OAuth Scope"
msgstr "OAuth Scope"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "OAuth wurde aktiviert, aber nicht autorisiert. Bitte verwenden Sie die Schaltfläche „API-Zugang autorisieren“, um dies zu tun."
@@ -17796,7 +17944,7 @@ msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten"
msgid "Only allowed to export customizations in developer mode"
msgstr "Anpassungen können nur im Entwicklermodus exportiert werden"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "Nur Dokumente im Entwurfsstatus können verworfen werden"
@@ -17827,7 +17975,7 @@ msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können bearbeitet werde
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Nur Standard-DocTypes dürfen über Formular anpassen angepasst werden."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr "Nur der Administrator kann einen Standard-DocType löschen."
@@ -17835,7 +17983,7 @@ msgstr "Nur der Administrator kann einen Standard-DocType löschen."
msgid "Only the assignee can complete this to-do."
msgstr "Nur der zugewiesene Benutzer kann diese Aufgabe abschließen."
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "Pro Benutzer sind nur {0} per E-Mail versandte Berichte erlaubt."
@@ -17968,7 +18116,7 @@ msgstr "Geöffnet"
msgid "Operation"
msgstr "Arbeitsgang"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "Betreiber muss einer von {0}"
@@ -18083,7 +18231,7 @@ msgstr "Unternehmensgeschichte"
msgid "Org History Heading"
msgstr "Überschrift zur Unternehmensgeschichte"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "Ausrichtung"
@@ -18165,9 +18313,11 @@ msgstr "Eigentümer"
msgid "PATCH"
msgstr "PATCH"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "PDF"
@@ -18462,8 +18612,8 @@ msgstr "Übergeordneter Dokumententyp wird benötigt, um ein Dashboard-Diagramm
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18568,7 +18718,7 @@ msgstr "Passwort für {0} {1} {2} nicht gefunden"
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} gesendet"
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "Passwort gesetzt"
@@ -18580,7 +18730,7 @@ msgstr "Passwort überschreitet die maximal zulässige Länge"
msgid "Password size exceeded the maximum allowed size."
msgstr "Passwort überschreitet die maximal zulässige Länge."
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "Passwörter stimmen nicht überein"
@@ -18889,7 +19039,7 @@ msgstr "Telefonnr."
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonnummer {0} im Feld {1} ist ungültig."
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -19060,7 +19210,7 @@ msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Bitte Pop-ups aktivieren"
@@ -19077,23 +19227,23 @@ msgstr "Bitte aktivieren Sie {} bevor Sie fortfahren."
msgid "Please ensure that your profile has an email address"
msgstr "Bitte stellen Sie sicher, dass Ihr Profil eine E-Mail-Adresse hat"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Bitte geben Sie die Access Token URL ein"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Bitte geben Sie die URL Autorisieren ein"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Bitte geben Sie die Basis-URL ein"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Bitte geben Sie die Client ID ein, bevor der Social Login aktiviert wird"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Bitte geben Sie das Client Secret ein, bevor Social Login aktiviert wird"
@@ -19101,7 +19251,7 @@ msgstr "Bitte geben Sie das Client Secret ein, bevor Social Login aktiviert wird
msgid "Please enter OpenID Configuration URL"
msgstr "Bitte geben Sie die OpenID Konfigurations-URL ein"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Bitte geben Sie die Weiterleitungs-URL ein"
@@ -19113,7 +19263,7 @@ msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr "Bitte geben Sie sowohl Ihre E-Mail-Adresse als auch Ihre Nachricht an, damit wir uns bei Ihnen melden können. Vielen Dank!"
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Bitte Passwort eingeben"
@@ -19126,11 +19276,11 @@ msgstr "Bitte geben Sie das Passwort ein für: {0}"
msgid "Please enter valid mobile nos"
msgstr "Bitte gültige Mobilnummern eingeben"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "Bitte geben Sie Ihr neues Passwort ein."
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "Bitte geben Sie Ihr altes Passwort ein."
@@ -19146,7 +19296,7 @@ msgstr "Bitte melden Sie sich an, um einen Kommentar zu schreiben."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Bitte stellen Sie sicher, dass die Referenzkommunikationsdokumente nicht zirkulär verknüpft sind."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Bitte aktualisieren, um das neueste Dokument zu erhalten."
@@ -19214,7 +19364,7 @@ msgstr "Bitte wählen Sie einen gültigen Datumsfilter"
msgid "Please select applicable Doctypes"
msgstr "Bitte zutreffende Doctypes auswählen"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe"
@@ -19248,7 +19398,7 @@ msgstr "Bitte legen Sie in den Druckereinstellungen eine Druckerzuordnung für d
msgid "Please set filters"
msgstr "Bitte Filter einstellen"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Bitte setzen Sie Filter Wert in Berichtsfiltertabelle."
@@ -19321,10 +19471,19 @@ msgstr "Bitte aktualisieren Sie {}, bevor Sie fortfahren."
msgid "Please use a valid LDAP search filter"
msgstr "Bitte verwenden Sie einen gültigen LDAP-Suchfilter"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Bitte besuchen Sie https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key für weitere Informationen."
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19370,7 +19529,7 @@ msgstr "Portal Menüpunkt"
msgid "Portal Settings"
msgstr "Portaleinstellungen"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "Hochformat"
@@ -19624,7 +19783,7 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19685,6 +19844,11 @@ msgstr "Druckformatfehler"
msgid "Print Format Field Template"
msgstr "Druckformat Feldvorlage"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19695,6 +19859,10 @@ msgstr "Hilfe zu Druckformaten"
msgid "Print Format Type"
msgstr "Druckformattyp"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "Druckformat {0} ist deaktiviert"
@@ -19730,7 +19898,7 @@ msgstr "Drucken ausblenden wenn kein Wert"
msgid "Print Language"
msgstr "Drucksprache"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "Drucken An den Drucker gesendet!"
@@ -19748,7 +19916,7 @@ msgstr "Druck Server"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Druckeinstellungen"
@@ -19858,6 +20026,10 @@ msgstr "Privat"
msgid "Private Files (MB)"
msgstr "Private Dateien (MB)"
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19980,6 +20152,10 @@ msgstr "Öffentlich"
msgid "Public Files (MB)"
msgstr "Öffentliche Dateien (MB)"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -20119,7 +20295,7 @@ msgstr "QR-Code"
msgid "QR Code for Login Verification"
msgstr "QR-Code für Zwei-Faktor-Authentifizierung"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "QZ-Fach fehlgeschlagen:"
@@ -20332,7 +20508,7 @@ msgstr "Bewertung"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Raw-Befehle"
@@ -20832,7 +21008,7 @@ msgstr "Referrer"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21161,6 +21337,8 @@ msgstr "Allen antworten"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21176,8 +21354,11 @@ msgstr "Allen antworten"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Bericht"
@@ -21246,7 +21427,7 @@ msgstr "Berichts-Manager"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "Berichtsname"
@@ -21302,7 +21483,7 @@ msgstr "Der Bericht enthält keine numerischen Felder. Bitte ändern Sie den Ber
msgid "Report initiated, click to view status"
msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "Berichtsgrenze erreicht"
@@ -21318,7 +21499,7 @@ msgstr "Bericht erfolgreich aktualisiert"
msgid "Report was not saved (there were errors)"
msgstr "Bericht wurde nicht gespeichert (es gab Fehler)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus."
@@ -21539,6 +21720,31 @@ msgstr "Auf Standardeinstellungen zurücksetzen"
msgid "Reset your password"
msgstr "Setze dein Passwort zurück"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21915,7 +22121,7 @@ msgstr "Routenumleitungen"
msgid "Route: Example \"/app\""
msgstr "Route: Beispiel \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Zeile"
@@ -22200,7 +22406,7 @@ msgstr "Samstag"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22227,7 +22433,7 @@ msgstr "Speichern als"
msgid "Save Customizations"
msgstr "Anpassungen speichern"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "Bericht speichern"
@@ -22403,6 +22609,11 @@ msgstr "Geltungsbereich"
msgid "Scopes"
msgstr "Geltungsbereiche"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22683,7 +22894,7 @@ msgid "Select Column"
msgstr "Wählen Sie Spalte"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Spalten auswählen"
@@ -23224,7 +23435,7 @@ msgstr "Serie {0} bereits verwendet in {1}"
msgid "Server Action"
msgstr "Serveraktion"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfehler"
@@ -23290,7 +23501,7 @@ msgstr "Sitzungsstandards"
msgid "Session Defaults Saved"
msgstr "Sitzungsstandards gespeichert"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "Sitzung abgelaufen"
@@ -23348,7 +23559,7 @@ msgstr "Filter setzen"
msgid "Set Filters for {0}"
msgstr "Setze Filter für {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr "Ebenen einstellen"
@@ -23590,7 +23801,7 @@ msgstr "Einrichtung > Benutzer"
msgid "Setup > User Permissions"
msgstr "Einrichtung > Benutzerberechtigungen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Einstellungen Auto E-Mail"
@@ -23679,6 +23890,8 @@ msgstr "Tastenkombinationen"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Anzeigen"
@@ -23705,6 +23918,12 @@ msgstr "Absolutwerte anzeigen"
msgid "Show All"
msgstr "Alle anzeigen"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Kalender anzeigen"
@@ -23822,6 +24041,12 @@ msgstr "Vorschau-Popup anzeigen"
msgid "Show Processlist"
msgstr "Prozessliste anzeigen"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "Zugehörige Fehler anzeigen"
@@ -23848,6 +24073,12 @@ msgstr "Zeige Abschnittsüberschriften"
msgid "Show Sidebar"
msgstr "Seitenleiste anzeigen"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23878,6 +24109,12 @@ msgstr "Tour anzeigen"
msgid "Show Traceback"
msgstr "Traceback anzeigen"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Warnungen anzeigen"
@@ -23931,6 +24168,12 @@ msgstr "Vollständiges Formular anstelle eines Schnelleingabe-Modals anzeigen"
msgid "Show in Module Section"
msgstr "Im Modulbereich anzeigen"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -24016,7 +24259,7 @@ msgid "Sign Up is disabled"
msgstr "Die Registrierung ist deaktiviert"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "Registrieren"
@@ -24102,8 +24345,10 @@ msgstr "Überspringen"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Autorisierung überspringen"
@@ -24267,6 +24512,16 @@ msgstr "SocketIO-Transportmodus"
msgid "Soft-Bounced"
msgstr "Temporär unzustellbar"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "Beim Drucken als PDF werden möglicherweise einige Spalten abgeschnitten. Versuchen Sie, die Anzahl der Spalten unter 10 zu halten."
@@ -24334,7 +24589,7 @@ msgstr "Sortierfeld {0} muss ein gültiger Feldname sein"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24424,7 +24679,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "Standard DocType kann nicht gelöscht werden."
@@ -24440,7 +24695,7 @@ msgstr "Standard nicht festgelegt"
msgid "Standard Permissions"
msgstr "Standardberechtigungen"
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "Standard-Druckformat kann nicht aktualisiert werden"
@@ -24661,7 +24916,7 @@ msgstr "Statistik Zeitintervall"
msgid "Status"
msgstr "Status"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Status aktualisiert"
@@ -24992,7 +25247,7 @@ msgstr "Erfolgsmeldung"
msgid "Success title"
msgstr "Erfolgstitel"
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "Erfolg! Du kannst nun durchstarten 👍"
@@ -25060,7 +25315,7 @@ msgstr "Empfohlener Benutzername: {0}"
msgid "Sum"
msgstr "Summe"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Summe von {0}"
@@ -25169,7 +25424,7 @@ msgstr "Synchronisiert"
msgid "Syncing {0} of {1}"
msgstr "{0} von {1} synchronisieren"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "Syntaxfehler"
@@ -25347,6 +25602,7 @@ msgstr "Systemprotokolle"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25406,6 +25662,11 @@ msgctxt "Number system"
msgid "T"
msgstr "Bio"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25476,7 +25737,7 @@ msgstr "Tabelle gekürzt"
msgid "Table updated"
msgstr "Tabelle aktualisiert"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "Tabelle {0} darf nicht leer sein"
@@ -25738,7 +25999,7 @@ msgstr "Der Browser-API-Schlüssel, den Sie von der Google Cloud Console unter <
"\"APIs & Dienste\" > \"Zugangsdaten\"\n"
"erhalten"
-#: frappe/database/database.py:475
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr "Die Änderungen wurden rückgängig gemacht."
@@ -25796,11 +26057,11 @@ msgstr "Die folgenden Zuweisungs-Tage wurden wiederholt: {0}"
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
msgstr "Das folgende Header-Skript fügt das aktuelle Datum zu einem Element in 'Header HTML' mit der Klasse 'header-content' hinzu"
-#: frappe/core/doctype/data_import/importer.py:1086
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr "Die folgenden Werte sind ungültig: {0}. Die Werte müssen einer der folgenden sein: {1}"
-#: frappe/core/doctype/data_import/importer.py:1043
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr "Die folgenden Werte existieren nicht für {0}: {1}"
@@ -25839,7 +26100,7 @@ msgstr "Die nächste Tour beginnt dort, wo der Benutzer aufgehört hat."
msgid "The number of seconds until the request expires"
msgstr "Die Anzahl der Sekunden bis die Anfrage abläuft"
-#: frappe/www/update-password.html:88
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "Das Passwort Ihres Kontos ist abgelaufen."
@@ -25864,7 +26125,7 @@ msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen"
msgid "The reset password link has either been used before or is invalid"
msgstr "Der Link zum Zurücksetzen des Passworts wurde bereits verwendet oder ist ungültig"
-#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Die von Ihnen gesuchte Ressource ist nicht verfügbar"
@@ -26004,6 +26265,12 @@ msgstr "Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bi
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr "Diese Ankündigungen werden in einem abweisbaren Hinweis unterhalb der Navigationsleiste angezeigt."
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr ""
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -26053,7 +26320,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Diese Aktion ist unumkehrbar. Möchten Sie fortfahren?"
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "Diese Aktion ist nur für {} zulässig"
@@ -26080,7 +26347,7 @@ msgstr "Dieser Doctype hat keine verwaisten Felder zum Kürzen"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Dieser Doctype hat anstehende Migrationen. Führen Sie 'bench migrate' aus, bevor Sie den Doctype ändern, damit die Änderungen nicht verloren gehen."
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Dieses Dokument kann im Moment nicht gelöscht werden, da es von einem anderen Benutzer geändert wird. Bitte versuchen Sie es nach einiger Zeit erneut."
@@ -26096,7 +26363,7 @@ msgstr "Dieses Dokument enthält ungespeicherte Änderungen, die möglicherweise
msgid "This document is already amended, you cannot ammend it again"
msgstr "Dieses Dokument wurde bereits geändert. Sie können es nicht erneut ändern"
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Dieses Dokument ist derzeit gesperrt und befindet sich in der Warteschlange für die Ausführung. Bitte versuchen Sie es nach einiger Zeit erneut."
@@ -26161,7 +26428,7 @@ msgstr "Dieser Geolokalisierungsanbieter wird noch nicht unterstützt."
msgid "This goes above the slideshow."
msgstr "Dies erscheint oberhalb der Diaschau."
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Dies ist ein Hintergrundbericht. Bitte setzen Sie die entsprechenden Filter und generieren Sie dann einen neuen."
@@ -26609,7 +26876,7 @@ msgstr "Um dynamische Werte aus dem Dokument hinzuzufügen, verwenden Sie Jinja-
"\n"
"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Unbekannt"
@@ -27969,7 +28287,7 @@ msgstr "Benutzerberechtigung"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
@@ -28273,15 +28591,15 @@ msgstr "Wert geändert"
msgid "Value To Be Set"
msgstr "Wert, der gesetzt werden soll"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Wert kann für {0} nicht geändert werden"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "Wert kann nicht negativ sein für"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "Der Wert kann für {0} nicht negativ sein: {1}"
@@ -28307,6 +28625,12 @@ msgstr "Der Wert aus diesem Feld wird als Fälligkeitsdatum im ToDo festgelegt"
msgid "Value must be one of {0}"
msgstr "Wert muss einer von {0} sein"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28644,7 +28968,7 @@ msgstr "Webseite"
msgid "Web Page Block"
msgstr "Webseitenblock"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr "URL der Webseite"
@@ -29042,7 +29366,7 @@ msgstr "Wird nur dann angezeigt wenn Überschriften aktiviert sind"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Führt geplante Prozesse für inaktive Instanzen nur einmal pro Tag aus. Setzen Sie den Wert auf 0, um die automatische Deaktivierung des Planers zu vermeiden."
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "Mit Briefkopf"
@@ -29183,7 +29507,7 @@ msgstr "Workflow erfolgreich aktualisiert"
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Arbeitsbereich"
@@ -29371,7 +29695,7 @@ msgstr "Gelb"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29450,7 +29774,7 @@ msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken"
msgid "You are not allowed to send emails related to this document"
msgstr "Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren"
@@ -29466,7 +29790,7 @@ msgstr "Sie sind nicht berechtigt, ohne Anmeldung auf diese Seite zuzugreifen."
msgid "You are not permitted to access this page."
msgstr "Sie sind nicht berechtigt auf diese Seite zuzugreifen."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um darauf zuzugreifen"
@@ -29474,7 +29798,7 @@ msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um dar
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Sie folgen nun diesem Dokument. Sie erhalten tägliche Updates per E-Mail. Sie können dies in den Benutzereinstellungen ändern."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Sie können nur die Reihenfolge verändern, keine Anwendungen entfernen oder hinzufügen."
@@ -29519,7 +29843,7 @@ msgstr "Sie können die Aufbewahrungsrichtlinie unter {0} ändern."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Sie können nach Erkundung dieser Seite mit dem Onboarding fortfahren"
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr "Du kannst diese(n) {0} deaktivieren, anstatt es zu löschen."
@@ -29638,7 +29962,7 @@ msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen"
@@ -29658,7 +29982,7 @@ msgstr "Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren.
msgid "You don't have access to Report: {0}"
msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen."
@@ -29731,15 +30055,15 @@ msgstr "Zuletzt von Ihnen bearbeitet"
msgid "You must add atleast one link."
msgstr "Sie müssen mindestens einen Link hinzufügen."
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr "Sie müssen angemeldet sein, um dieses Formular zu nutzen."
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Sie benötigen die Berechtigung '{0}' auf {1} {2}, um diese Aktion durchzuführen."
@@ -29907,11 +30231,11 @@ msgstr "Ihr Formular wurde erfolgreich aktualisiert"
msgid "Your login id is"
msgstr "Ihre Login-ID ist"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr "Ihr Passwort wurde erfolgreich aktualisiert."
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr "Ihr altes Passwort ist falsch."
@@ -29925,7 +30249,7 @@ msgstr "Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren."
@@ -29937,7 +30261,7 @@ msgstr "Ihre Website wird gerade gewartet oder aktualisiert."
msgid "Your verification code is {0}"
msgstr "Ihr Bestätigungscode ist {0}"
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "Null"
@@ -29961,7 +30285,7 @@ msgstr "_doctype"
msgid "_report"
msgstr "_Bericht"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` funktioniert nur mit `as_list=True` oder `as_dict=True`"
@@ -29984,7 +30308,7 @@ msgstr "nach_einfügen"
msgid "amend"
msgstr "berichtigen"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "und"
@@ -30042,7 +30366,7 @@ msgid "cyan"
msgstr "türkis"
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "T"
@@ -30209,7 +30533,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nicht in PATH gefunden! Dies ist erforderlich, um ein Backup zu erstellen."
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "Std"
@@ -30283,7 +30607,7 @@ msgid "long"
msgstr "lang"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
@@ -30473,7 +30797,7 @@ msgid "restored {0} as {1}"
msgstr "restauriert {0} als {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "Sek"
@@ -30807,7 +31131,7 @@ msgstr "{0} bereits abgemeldet"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} bereits abgemeldet für {1} {2}"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} und {1}"
@@ -30815,7 +31139,7 @@ msgstr "{0} und {1}"
msgid "{0} are currently {1}"
msgstr "{0} sind derzeit {1}"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} sind erforderlich"
@@ -30845,7 +31169,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} dieses Dokument storniert {1}"
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} kann nicht berichtigt werden, da es nicht storniert ist. Bitte stornieren Sie das Dokument, bevor Sie eine Berichtigung erstellen."
@@ -30917,7 +31241,7 @@ msgstr "Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-e
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "Das {0} Format konnte nicht von den Werten in dieser Spalte bestimmt werden. Standard ist {1}."
@@ -31060,7 +31384,7 @@ msgstr "{0} ist kein gültiger übergeordneter DocType für {1}"
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} ist kein gültiges Berichtsformat. Berichtsformat sollte eines der folgenden {1} sein"
@@ -31084,7 +31408,7 @@ msgstr "{0} ist keine von {1}"
msgid "{0} is not set"
msgstr "{0} ist nicht eingetragen"
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}"
@@ -31094,7 +31418,8 @@ msgstr "{0} ist eine von {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} ist erforderlich"
@@ -31144,23 +31469,23 @@ msgstr "vor {0} Minuten"
msgid "{0} months ago"
msgstr "vor {0} Monaten"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} muss nach {1} liegen"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr "{0} muss mit '{1}' beginnen"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr "{0} muss gleich '{1}' sein"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr "{0} darf nichts von {1} sein"
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} muss aus {1} sein"
@@ -31172,7 +31497,7 @@ msgstr "{0} muss als erstes gesetzt sein"
msgid "{0} must be unique"
msgstr "{0} muss einmalig sein"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr "{0} muss {1} {2} sein"
@@ -31201,12 +31526,12 @@ msgstr "{0} von {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0}."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} oder {1}"
@@ -31243,7 +31568,7 @@ msgstr "{0} hat seine Zuordnung entfernt."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype"
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr "{0} Zeile #{1}: "
@@ -31359,11 +31684,11 @@ msgstr "{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wähle
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nicht gefunden"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Übermittelter Datensatz kann nicht gelöscht werden. Sie müssen {2} zuerst {3} abbrechen."
@@ -31512,11 +31837,11 @@ msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field
msgid "{} Complete"
msgstr "{} Komplett"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr "{} Ungültiger Python-Code in Zeile {}"
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Possibly invalid python code.
{}"
diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po
index 9b6e677942..9fa7c413ff 100644
--- a/frappe/locale/eo.po
+++ b/frappe/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr "crwdns110780:0crwdne110780:0"
msgid "1 comment"
msgstr "crwdns90550:0crwdne90550:0"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "crwdns90552:0crwdne90552:0"
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr "crwdns90554:0crwdne90554:0"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "crwdns90556:0crwdne90556:0"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "crwdns90558:0crwdne90558:0"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "crwdns90560:0crwdne90560:0"
@@ -179,37 +179,37 @@ msgstr "crwdns142972:0crwdne142972:0"
msgid "1 record will be exported"
msgstr "crwdns90562:0crwdne90562:0"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "crwdns90564:0crwdne90564:0"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "crwdns90566:0crwdne90566:0"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "crwdns90568:0crwdne90568:0"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "crwdns90570:0crwdne90570:0"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "crwdns90572:0crwdne90572:0"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "crwdns90574:0crwdne90574:0"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "crwdns90576:0crwdne90576:0"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "crwdns90578:0crwdne90578:0"
@@ -225,7 +225,7 @@ msgstr "crwdns90582:0crwdne90582:0"
msgid "5 Records"
msgstr "crwdns90584:0crwdne90584:0"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "crwdns90586:0crwdne90586:0"
@@ -557,6 +557,11 @@ msgstr "crwdns127956:0crwdne127956:0"
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "crwdns90640:0crwdne90640:0"
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr "crwdns155934:0crwdne155934:0"
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "crwdns90642:0crwdne90642:0"
@@ -591,6 +596,13 @@ msgstr "crwdns127960:0crwdne127960:0"
msgid "A template already exists for field {0} of {1}"
msgstr "crwdns90656:0{0}crwdnd90656:0{1}crwdne90656:0"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr "crwdns155936:0crwdne155936:0"
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "crwdns90658:0crwdne90658:0"
@@ -852,7 +864,7 @@ msgstr "crwdns128016:0crwdne128016:0"
msgid "Action Complete"
msgstr "crwdns90762:0crwdne90762:0"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "crwdns90764:0crwdne90764:0"
@@ -1017,8 +1029,8 @@ msgid "Add Child"
msgstr "crwdns90826:0crwdne90826:0"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1054,7 +1066,7 @@ msgid "Add Gray Background"
msgstr "crwdns128040:0crwdne128040:0"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "crwdns90842:0crwdne90842:0"
@@ -1868,6 +1880,12 @@ msgstr "crwdns128186:0crwdne128186:0"
msgid "Allowed Modules"
msgstr "crwdns128188:0crwdne128188:0"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr "crwdns155938:0crwdne155938:0"
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1884,6 +1902,42 @@ msgstr "crwdns151416:0crwdne151416:0"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "crwdns91150:0crwdne91150:0"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr "crwdns155940:0crwdne155940:0"
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr "crwdns155942:0crwdne155942:0"
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr "crwdns155944:0crwdne155944:0"
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr "crwdns155946:0crwdne155946:0"
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr "crwdns155948:0crwdne155948:0"
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr "crwdns155950:0crwdne155950:0"
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "crwdns91152:0crwdne91152:0"
@@ -1975,7 +2029,7 @@ msgstr "crwdns91186:0crwdne91186:0"
msgid "Amendment Naming Override"
msgstr "crwdns128208:0crwdne128208:0"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "crwdns151842:0crwdne151842:0"
@@ -2064,16 +2118,6 @@ msgstr "crwdns110802:0crwdne110802:0"
msgid "App"
msgstr "crwdns128226:0crwdne128226:0"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "crwdns128230:0crwdne128230:0"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "crwdns128232:0crwdne128232:0"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2087,21 +2131,24 @@ msgstr "crwdns110804:0crwdne110804:0"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "crwdns91230:0crwdne91230:0"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr "crwdns155952:0crwdne155952:0"
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "crwdns91240:0{0}crwdne91240:0"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "crwdns91242:0{0}crwdne91242:0"
@@ -2347,7 +2394,7 @@ msgstr "crwdns91340:0{0}crwdnd91340:0{1}crwdne91340:0"
msgid "Assign Condition"
msgstr "crwdns128278:0crwdne128278:0"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "crwdns91344:0crwdne91344:0"
@@ -2356,7 +2403,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "crwdns91346:0crwdne91346:0"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "crwdns127858:0crwdne127858:0"
@@ -2601,11 +2648,11 @@ msgstr "crwdns128314:0crwdne128314:0"
msgid "Attachments"
msgstr "crwdns91476:0crwdne91476:0"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "crwdns91482:0crwdne91482:0"
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "crwdns91484:0crwdne91484:0"
@@ -2657,6 +2704,11 @@ msgstr "crwdns91500:0{0}crwdne91500:0"
msgid "Author"
msgstr "crwdns128320:0crwdne128320:0"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr "crwdns155954:0crwdne155954:0"
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2891,7 +2943,7 @@ msgstr "crwdns128366:0crwdne128366:0"
msgid "Average"
msgstr "crwdns91602:0crwdne91602:0"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "crwdns91608:0{0}crwdne91608:0"
@@ -3768,7 +3820,7 @@ msgid "Camera"
msgstr "crwdns91992:0crwdne91992:0"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3920,11 +3972,11 @@ msgstr "crwdns92066:0{0}crwdne92066:0"
msgid "Cannot cancel {0}."
msgstr "crwdns92068:0{0}crwdne92068:0"
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "crwdns92070:0crwdne92070:0"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "crwdns92072:0crwdne92072:0"
@@ -3952,7 +4004,7 @@ msgstr "crwdns92082:0crwdne92082:0"
msgid "Cannot delete Home and Attachments folders"
msgstr "crwdns92084:0crwdne92084:0"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "crwdns92086:0{0}crwdnd92086:0{1}crwdnd92086:0{2}crwdnd92086:0{3}crwdnd92086:0{4}crwdne92086:0"
@@ -4007,7 +4059,7 @@ msgstr "crwdns92110:0crwdne92110:0"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "crwdns92112:0crwdne92112:0"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "crwdns92114:0crwdne92114:0"
@@ -4044,7 +4096,7 @@ msgstr "crwdns92126:0crwdne92126:0"
msgid "Cannot import table with more than 5000 rows."
msgstr "crwdns154588:0crwdne154588:0"
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "crwdns92128:0{0}crwdne92128:0"
@@ -4089,7 +4141,7 @@ msgstr "crwdns92146:0{0}crwdne92146:0"
msgid "Cannot use sub-query in order by"
msgstr "crwdns92148:0crwdne92148:0"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "crwdns92150:0{0}crwdne92150:0"
@@ -4146,10 +4198,6 @@ msgstr "crwdns128592:0crwdne128592:0"
msgid "Category Name"
msgstr "crwdns128594:0crwdne128594:0"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "crwdns92178:0crwdne92178:0"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4434,6 +4482,10 @@ msgstr "crwdns92296:0crwdne92296:0"
msgid "Clear & Add template"
msgstr "crwdns92298:0crwdne92298:0"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "crwdns155956:0crwdne155956:0"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4555,8 +4607,10 @@ msgid "Client Credentials"
msgstr "crwdns128646:0crwdne128646:0"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "crwdns128648:0crwdne128648:0"
@@ -4572,6 +4626,12 @@ msgstr "crwdns128650:0crwdne128650:0"
msgid "Client Information"
msgstr "crwdns128652:0crwdne128652:0"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr "crwdns155958:0crwdne155958:0"
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4584,13 +4644,32 @@ msgstr "crwdns92352:0crwdne92352:0"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "crwdns128654:0crwdne128654:0"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr "crwdns155960:0crwdne155960:0"
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr "crwdns155962:0crwdne155962:0"
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr "crwdns155964:0crwdne155964:0"
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4675,7 +4754,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "crwdns92402:0crwdne92402:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "crwdns92404:0crwdne92404:0"
@@ -4821,7 +4900,7 @@ msgstr "crwdns128680:0crwdne128680:0"
msgid "Columns based on"
msgstr "crwdns92484:0crwdne92484:0"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "crwdns92486:0{0}crwdnd92486:0{1}crwdne92486:0"
@@ -5070,6 +5149,12 @@ msgstr "crwdns151422:0crwdne151422:0"
msgid "Conditions"
msgstr "crwdns128718:0crwdne128718:0"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr "crwdns155966:0crwdne155966:0"
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5106,7 +5191,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "crwdns111490:0crwdne111490:0"
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "crwdns92612:0crwdne92612:0"
@@ -5115,7 +5200,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "crwdns92614:0crwdne92614:0"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "crwdns151116:0crwdne151116:0"
@@ -5128,7 +5213,7 @@ msgstr "crwdns92616:0crwdne92616:0"
msgid "Confirm New Password"
msgstr "crwdns92618:0crwdne92618:0"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "crwdns92620:0crwdne92620:0"
@@ -5169,8 +5254,8 @@ msgstr "crwdns92634:0crwdne92634:0"
msgid "Connected User"
msgstr "crwdns128726:0crwdne128726:0"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "crwdns92642:0crwdne92642:0"
@@ -5262,6 +5347,11 @@ msgstr "crwdns92678:0crwdne92678:0"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "crwdns128736:0crwdne128736:0"
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "crwdns155968:0crwdne155968:0"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "crwdns127602:0{0}crwdne127602:0"
@@ -5280,7 +5370,7 @@ msgstr "crwdns127604:0{0}crwdne127604:0"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5362,7 +5452,7 @@ msgstr "crwdns128754:0crwdne128754:0"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "crwdns128756:0crwdne128756:0"
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "crwdns92730:0crwdne92730:0"
@@ -5403,7 +5493,7 @@ msgstr "crwdns127608:0crwdne127608:0"
msgid "Could not connect to outgoing email server"
msgstr "crwdns92742:0crwdne92742:0"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "crwdns92744:0{0}crwdne92744:0"
@@ -5431,7 +5521,7 @@ msgstr "crwdns92748:0crwdne92748:0"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "crwdns92750:0crwdne92750:0"
@@ -6136,7 +6226,7 @@ msgstr "crwdns93092:0crwdne93092:0"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "crwdns93094:0crwdne93094:0"
@@ -7303,6 +7393,7 @@ msgstr "crwdns93582:0{0}crwdne93582:0"
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7548,7 +7639,7 @@ msgstr "crwdns93722:0crwdne93722:0"
msgid "Document Naming Settings"
msgstr "crwdns93724:0crwdne93724:0"
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "crwdns93726:0crwdne93726:0"
@@ -7705,7 +7796,7 @@ msgid "Document Types and Permissions"
msgstr "crwdns129022:0crwdne129022:0"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr "crwdns93812:0crwdne93812:0"
@@ -7842,7 +7933,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr "crwdns129038:0crwdne129038:0"
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "crwdns93874:0crwdne93874:0"
@@ -8097,7 +8188,7 @@ msgstr "crwdns110894:0crwdne110894:0"
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8649,6 +8740,12 @@ msgstr "crwdns129116:0crwdne129116:0"
msgid "Enable Comments"
msgstr "crwdns129118:0crwdne129118:0"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr "crwdns155970:0crwdne155970:0"
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9039,7 +9136,7 @@ msgstr "crwdns143308:0crwdne143308:0"
msgid "Error Message"
msgstr "crwdns129186:0crwdne129186:0"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "crwdns94412:0crwdne94412:0"
@@ -9250,7 +9347,7 @@ msgstr "crwdns155330:0crwdne155330:0"
msgid "Executing..."
msgstr "crwdns94496:0crwdne94496:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "crwdns94498:0{0}crwdne94498:0"
@@ -9276,7 +9373,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "crwdns94504:0crwdne94504:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "crwdns94506:0crwdne94506:0"
@@ -9337,7 +9434,7 @@ msgstr "crwdns129232:0crwdne129232:0"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9702,7 +9799,7 @@ msgstr "crwdns94660:0crwdne94660:0"
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9773,7 +9870,7 @@ msgstr "crwdns129286:0crwdne129286:0"
msgid "Field type cannot be changed for {0}"
msgstr "crwdns94702:0{0}crwdne94702:0"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "crwdns94704:0{0}crwdnd94704:0{1}crwdne94704:0"
@@ -9816,7 +9913,7 @@ msgstr "crwdns94726:0{0}crwdnd94726:0{1}crwdnd94726:0{2}crwdnd94726:0{3}crwdne94
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "crwdns94728:0{0}crwdne94728:0"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "crwdns94730:0{0}crwdne94730:0"
@@ -9832,7 +9929,7 @@ msgstr "crwdns94734:0crwdne94734:0"
msgid "Fieldname {0} appears multiple times"
msgstr "crwdns94736:0{0}crwdne94736:0"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0"
@@ -10280,7 +10377,7 @@ msgstr "crwdns94950:0crwdne94950:0"
msgid "Followed by"
msgstr "crwdns110944:0crwdne110944:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "crwdns94952:0crwdne94952:0"
@@ -10464,7 +10561,7 @@ msgstr "crwdns95024:0crwdne95024:0"
msgid "For Value"
msgstr "crwdns129392:0crwdne129392:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "crwdns95034:0crwdne95034:0"
@@ -10742,7 +10839,7 @@ msgstr "crwdns95156:0crwdne95156:0"
msgid "From Date Field"
msgstr "crwdns129430:0crwdne129430:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "crwdns95162:0crwdne95162:0"
@@ -10802,7 +10899,7 @@ msgstr "crwdns95188:0crwdne95188:0"
msgid "Function Based On"
msgstr "crwdns95192:0crwdne95192:0"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "crwdns95194:0{0}crwdne95194:0"
@@ -10880,7 +10977,7 @@ msgid "Generate Random Password"
msgstr "crwdns95226:0crwdne95226:0"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "crwdns95228:0crwdne95228:0"
@@ -11309,7 +11406,7 @@ msgstr "crwdns129504:0crwdne129504:0"
msgid "Group your custom doctypes under modules"
msgstr "crwdns127656:0crwdne127656:0"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "crwdns95414:0{0}crwdne95414:0"
@@ -11359,7 +11456,7 @@ msgstr "crwdns129510:0crwdne129510:0"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11588,7 +11685,7 @@ msgstr "crwdns129552:0crwdne129552:0"
msgid "Helvetica Neue"
msgstr "crwdns129554:0crwdne129554:0"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "crwdns95544:0crwdne95544:0"
@@ -11630,6 +11727,7 @@ msgstr "crwdns129556:0crwdne129556:0"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "crwdns95568:0crwdne95568:0"
@@ -11791,7 +11889,7 @@ msgstr "crwdns129588:0crwdne129588:0"
msgid "Highlight"
msgstr "crwdns129590:0crwdne129590:0"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "crwdns95642:0crwdne95642:0"
@@ -11874,15 +11972,20 @@ msgstr "crwdns155542:0crwdne155542:0"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "crwdns129602:0crwdne129602:0"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr "crwdns155972:0crwdne155972:0"
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr "crwdns148656:0crwdne148656:0"
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12563,11 +12666,11 @@ msgstr "crwdns95976:0crwdne95976:0"
msgid "Include Web View Link in Email"
msgstr "crwdns129732:0crwdne129732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "crwdns95980:0crwdne95980:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "crwdns95982:0crwdne95982:0"
@@ -12634,11 +12737,11 @@ msgstr "crwdns96004:0crwdne96004:0"
msgid "Incorrect Verification code"
msgstr "crwdns96006:0crwdne96006:0"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "crwdns148658:0{0}crwdne148658:0"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "crwdns148660:0crwdne148660:0"
@@ -12725,7 +12828,7 @@ msgstr "crwdns110970:0crwdne110970:0"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "crwdns96046:0crwdne96046:0"
@@ -12981,7 +13084,7 @@ msgstr "crwdns96156:0crwdne96156:0"
msgid "Invalid Home Page"
msgstr "crwdns96158:0crwdne96158:0"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "crwdns96160:0crwdne96160:0"
@@ -13015,7 +13118,7 @@ msgstr "crwdns96170:0crwdne96170:0"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "crwdns96172:0{0}crwdne96172:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "crwdns96174:0crwdne96174:0"
@@ -13027,9 +13130,9 @@ msgstr "crwdns127664:0crwdne127664:0"
msgid "Invalid Parameters."
msgstr "crwdns96176:0crwdne96176:0"
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "crwdns96178:0crwdne96178:0"
@@ -13109,7 +13212,7 @@ msgstr "crwdns155556:0{0}crwdne155556:0"
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "crwdns155558:0{0}crwdne155558:0"
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "crwdns96200:0crwdne96200:0"
@@ -13133,10 +13236,14 @@ msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0"
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "crwdns155564:0{0}crwdne155564:0"
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "crwdns96206:0{0}crwdne96206:0"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr "crwdns155974:0{0}crwdne155974:0"
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr "crwdns155566:0{0}crwdne155566:0"
@@ -13190,7 +13297,7 @@ msgstr "crwdns96222:0crwdne96222:0"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "crwdns96224:0crwdne96224:0"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "crwdns96226:0crwdne96226:0"
@@ -13939,7 +14046,7 @@ msgstr "crwdns96572:0crwdne96572:0"
msgid "Landing Page"
msgstr "crwdns129930:0crwdne129930:0"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "crwdns96576:0crwdne96576:0"
@@ -14235,7 +14342,7 @@ msgstr "crwdns129986:0crwdne129986:0"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14549,7 +14656,7 @@ msgstr "crwdns96842:0crwdne96842:0"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "crwdns130052:0crwdne130052:0"
@@ -14863,6 +14970,11 @@ msgstr "crwdns96970:0crwdne96970:0"
msgid "Login with {0}"
msgstr "crwdns148308:0{0}crwdne148308:0"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr "crwdns155976:0crwdne155976:0"
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15049,7 +15161,7 @@ msgstr "crwdns130120:0crwdne130120:0"
msgid "Mandatory Depends On (JS)"
msgstr "crwdns130122:0crwdne130122:0"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "crwdns97056:0crwdne97056:0"
@@ -15272,7 +15384,7 @@ msgstr "crwdns111006:0crwdne111006:0"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15470,6 +15582,12 @@ msgstr "crwdns151434:0crwdne151434:0"
msgid "Meta title for SEO"
msgstr "crwdns97252:0crwdne97252:0"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr "crwdns155978:0crwdne155978:0"
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15489,7 +15607,7 @@ msgstr "crwdns97252:0crwdne97252:0"
msgid "Method"
msgstr "crwdns130200:0crwdne130200:0"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr "crwdns142858:0crwdne142858:0"
@@ -15583,7 +15701,7 @@ msgstr "crwdns97292:0crwdne97292:0"
msgid "Missing Fields"
msgstr "crwdns97294:0crwdne97294:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "crwdns97296:0crwdne97296:0"
@@ -15591,7 +15709,7 @@ msgstr "crwdns97296:0crwdne97296:0"
msgid "Missing Permission"
msgstr "crwdns97298:0crwdne97298:0"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "crwdns97300:0crwdne97300:0"
@@ -15657,7 +15775,7 @@ msgstr "crwdns97316:0crwdne97316:0"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15957,7 +16075,7 @@ msgid "Mx"
msgstr "crwdns148678:0crwdne148678:0"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16123,7 +16241,7 @@ msgstr "crwdns130268:0crwdne130268:0"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "crwdns97572:0crwdne97572:0"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "crwdns97576:0crwdne97576:0"
@@ -16252,7 +16370,7 @@ msgstr "crwdns111022:0crwdne111022:0"
msgid "New Onboarding"
msgstr "crwdns111024:0crwdne111024:0"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "crwdns97622:0crwdne97622:0"
@@ -16297,7 +16415,26 @@ msgstr "crwdns97628:0crwdne97628:0"
msgid "New Workspace"
msgstr "crwdns97630:0crwdne97630:0"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr "crwdns155980:0crwdne155980:0"
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr "crwdns155982:0crwdne155982:0"
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr "crwdns155984:0crwdne155984:0"
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "crwdns97632:0crwdne97632:0"
@@ -16329,7 +16466,7 @@ msgstr "crwdns130276:0crwdne130276:0"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "crwdns97640:0{0}crwdne97640:0"
@@ -16480,7 +16617,7 @@ msgstr "crwdns130294:0crwdne130294:0"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "crwdns97696:0crwdne97696:0"
@@ -16509,7 +16646,7 @@ msgid "No Copy"
msgstr "crwdns130296:0crwdne130296:0"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16768,7 +16905,7 @@ msgstr "crwdns130300:0crwdne130300:0"
msgid "No of Sent SMS"
msgstr "crwdns130302:0crwdne130302:0"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "crwdns97808:0{0}crwdne97808:0"
@@ -16861,6 +16998,12 @@ msgstr "crwdns130304:0crwdne130304:0"
msgid "Non-Conforming"
msgstr "crwdns148684:0crwdne148684:0"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "crwdns155986:0crwdne155986:0"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "crwdns97840:0crwdne97840:0"
@@ -16896,7 +17039,7 @@ msgstr "crwdns97850:0crwdne97850:0"
msgid "Not Equals"
msgstr "crwdns97852:0crwdne97852:0"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "crwdns97854:0crwdne97854:0"
@@ -16922,9 +17065,9 @@ msgstr "crwdns97862:0crwdne97862:0"
msgid "Not Nullable"
msgstr "crwdns130314:0crwdne130314:0"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17032,7 +17175,7 @@ msgstr "crwdns97910:0crwdne97910:0"
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "crwdns97912:0crwdne97912:0"
@@ -17353,6 +17496,11 @@ msgstr "crwdns98044:0crwdne98044:0"
msgid "OAuth Scope"
msgstr "crwdns98048:0crwdne98048:0"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr "crwdns155988:0crwdne155988:0"
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "crwdns98050:0crwdne98050:0"
@@ -17602,7 +17750,7 @@ msgstr "crwdns98128:0crwdne98128:0"
msgid "Only allowed to export customizations in developer mode"
msgstr "crwdns98132:0crwdne98132:0"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "crwdns127690:0crwdne127690:0"
@@ -17633,7 +17781,7 @@ msgstr "crwdns98144:0crwdne98144:0"
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "crwdns98146:0crwdne98146:0"
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr "crwdns151810:0crwdne151810:0"
@@ -17641,7 +17789,7 @@ msgstr "crwdns151810:0crwdne151810:0"
msgid "Only the assignee can complete this to-do."
msgstr "crwdns98148:0crwdne98148:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "crwdns98152:0{0}crwdne98152:0"
@@ -17774,7 +17922,7 @@ msgstr "crwdns130426:0crwdne130426:0"
msgid "Operation"
msgstr "crwdns130428:0crwdne130428:0"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "crwdns98200:0{0}crwdne98200:0"
@@ -17889,7 +18037,7 @@ msgstr "crwdns130440:0crwdne130440:0"
msgid "Org History Heading"
msgstr "crwdns130442:0crwdne130442:0"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "crwdns98256:0crwdne98256:0"
@@ -17971,9 +18119,11 @@ msgstr "crwdns98284:0crwdne98284:0"
msgid "PATCH"
msgstr "crwdns130460:0crwdne130460:0"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "crwdns98288:0crwdne98288:0"
@@ -18268,9 +18418,9 @@ msgstr "crwdns98414:0crwdne98414:0"
msgid "Parent is the name of the document to which the data will get added to."
msgstr "crwdns98416:0crwdne98416:0"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
-msgstr "crwdns154732:0crwdne154732:0"
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
+msgstr "crwdns155990:0crwdne155990:0"
#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
@@ -18374,7 +18524,7 @@ msgstr "crwdns98464:0{0}crwdnd98464:0{1}crwdnd98464:0{2}crwdne98464:0"
msgid "Password reset instructions have been sent to {}'s email"
msgstr "crwdns142862:0crwdne142862:0"
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "crwdns98468:0crwdne98468:0"
@@ -18386,7 +18536,7 @@ msgstr "crwdns98470:0crwdne98470:0"
msgid "Password size exceeded the maximum allowed size."
msgstr "crwdns98472:0crwdne98472:0"
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "crwdns98474:0crwdne98474:0"
@@ -18695,7 +18845,7 @@ msgstr "crwdns130564:0crwdne130564:0"
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "crwdns98606:0{0}crwdnd98606:0{1}crwdne98606:0"
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18866,7 +19016,7 @@ msgstr "crwdns98678:0crwdne98678:0"
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "crwdns98680:0crwdne98680:0"
@@ -18883,23 +19033,23 @@ msgstr "crwdns98684:0crwdne98684:0"
msgid "Please ensure that your profile has an email address"
msgstr "crwdns98686:0crwdne98686:0"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "crwdns98688:0crwdne98688:0"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "crwdns98690:0crwdne98690:0"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "crwdns98692:0crwdne98692:0"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "crwdns98694:0crwdne98694:0"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "crwdns98696:0crwdne98696:0"
@@ -18907,7 +19057,7 @@ msgstr "crwdns98696:0crwdne98696:0"
msgid "Please enter OpenID Configuration URL"
msgstr "crwdns98698:0crwdne98698:0"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "crwdns98700:0crwdne98700:0"
@@ -18919,7 +19069,7 @@ msgstr "crwdns98702:0crwdne98702:0"
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr "crwdns148318:0crwdne148318:0"
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "crwdns98704:0crwdne98704:0"
@@ -18932,11 +19082,11 @@ msgstr "crwdns98706:0{0}crwdne98706:0"
msgid "Please enter valid mobile nos"
msgstr "crwdns98708:0crwdne98708:0"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "crwdns98710:0crwdne98710:0"
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "crwdns98712:0crwdne98712:0"
@@ -18952,7 +19102,7 @@ msgstr "crwdns98718:0crwdne98718:0"
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "crwdns98720:0crwdne98720:0"
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "crwdns98722:0crwdne98722:0"
@@ -19020,7 +19170,7 @@ msgstr "crwdns98752:0crwdne98752:0"
msgid "Please select applicable Doctypes"
msgstr "crwdns98754:0crwdne98754:0"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "crwdns98756:0{0}crwdne98756:0"
@@ -19054,7 +19204,7 @@ msgstr "crwdns98770:0crwdne98770:0"
msgid "Please set filters"
msgstr "crwdns98772:0crwdne98772:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "crwdns98774:0crwdne98774:0"
@@ -19127,10 +19277,19 @@ msgstr "crwdns98800:0crwdne98800:0"
msgid "Please use a valid LDAP search filter"
msgstr "crwdns98802:0crwdne98802:0"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr "crwdns155992:0crwdne155992:0"
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "crwdns111462:0crwdne111462:0"
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr "crwdns155994:0crwdne155994:0"
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19176,7 +19335,7 @@ msgstr "crwdns98830:0crwdne98830:0"
msgid "Portal Settings"
msgstr "crwdns98832:0crwdne98832:0"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "crwdns98836:0crwdne98836:0"
@@ -19430,7 +19589,7 @@ msgstr "crwdns112704:0{0}crwdne112704:0"
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19491,6 +19650,11 @@ msgstr "crwdns98956:0crwdne98956:0"
msgid "Print Format Field Template"
msgstr "crwdns98958:0crwdne98958:0"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr "crwdns155996:0crwdne155996:0"
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19501,6 +19665,10 @@ msgstr "crwdns130624:0crwdne130624:0"
msgid "Print Format Type"
msgstr "crwdns130626:0crwdne130626:0"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr "crwdns155998:0crwdne155998:0"
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "crwdns98964:0{0}crwdne98964:0"
@@ -19536,7 +19704,7 @@ msgstr "crwdns130630:0crwdne130630:0"
msgid "Print Language"
msgstr "crwdns111422:0crwdne111422:0"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "crwdns98984:0crwdne98984:0"
@@ -19554,7 +19722,7 @@ msgstr "crwdns130632:0crwdne130632:0"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "crwdns98988:0crwdne98988:0"
@@ -19664,6 +19832,10 @@ msgstr "crwdns99040:0crwdne99040:0"
msgid "Private Files (MB)"
msgstr "crwdns130646:0crwdne130646:0"
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr "crwdns156000:0crwdne156000:0"
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19786,6 +19958,10 @@ msgstr "crwdns99086:0crwdne99086:0"
msgid "Public Files (MB)"
msgstr "crwdns130662:0crwdne130662:0"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr "crwdns156002:0crwdne156002:0"
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19925,7 +20101,7 @@ msgstr "crwdns99152:0crwdne99152:0"
msgid "QR Code for Login Verification"
msgstr "crwdns99154:0crwdne99154:0"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "crwdns99156:0crwdne99156:0"
@@ -20138,7 +20314,7 @@ msgstr "crwdns130722:0crwdne130722:0"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "crwdns99256:0crwdne99256:0"
@@ -20638,7 +20814,7 @@ msgstr "crwdns99526:0crwdne99526:0"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20967,6 +21143,8 @@ msgstr "crwdns99642:0crwdne99642:0"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20982,8 +21160,11 @@ msgstr "crwdns99642:0crwdne99642:0"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "crwdns99644:0crwdne99644:0"
@@ -21052,7 +21233,7 @@ msgstr "crwdns99694:0crwdne99694:0"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "crwdns99696:0crwdne99696:0"
@@ -21108,7 +21289,7 @@ msgstr "crwdns99722:0crwdne99722:0"
msgid "Report initiated, click to view status"
msgstr "crwdns99724:0crwdne99724:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "crwdns99726:0crwdne99726:0"
@@ -21124,7 +21305,7 @@ msgstr "crwdns99730:0crwdne99730:0"
msgid "Report was not saved (there were errors)"
msgstr "crwdns99732:0crwdne99732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "crwdns99734:0crwdne99734:0"
@@ -21345,6 +21526,31 @@ msgstr "crwdns99826:0crwdne99826:0"
msgid "Reset your password"
msgstr "crwdns99828:0crwdne99828:0"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr "crwdns156004:0crwdne156004:0"
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr "crwdns156006:0crwdne156006:0"
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr "crwdns156008:0crwdne156008:0"
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr "crwdns156010:0crwdne156010:0"
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr "crwdns156012:0crwdne156012:0"
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21721,7 +21927,7 @@ msgstr "crwdns130930:0crwdne130930:0"
msgid "Route: Example \"/app\""
msgstr "crwdns130932:0crwdne130932:0"
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "crwdns100054:0crwdne100054:0"
@@ -22006,7 +22212,7 @@ msgstr "crwdns130978:0crwdne130978:0"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22033,7 +22239,7 @@ msgstr "crwdns100178:0crwdne100178:0"
msgid "Save Customizations"
msgstr "crwdns100180:0crwdne100180:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "crwdns100182:0crwdne100182:0"
@@ -22209,6 +22415,11 @@ msgstr "crwdns130996:0crwdne130996:0"
msgid "Scopes"
msgstr "crwdns130998:0crwdne130998:0"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr "crwdns156014:0crwdne156014:0"
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22489,7 +22700,7 @@ msgid "Select Column"
msgstr "crwdns100386:0crwdne100386:0"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "crwdns100388:0crwdne100388:0"
@@ -23030,7 +23241,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0"
msgid "Server Action"
msgstr "crwdns131128:0crwdne131128:0"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "crwdns100646:0crwdne100646:0"
@@ -23096,7 +23307,7 @@ msgstr "crwdns100674:0crwdne100674:0"
msgid "Session Defaults Saved"
msgstr "crwdns100678:0crwdne100678:0"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "crwdns100680:0crwdne100680:0"
@@ -23154,7 +23365,7 @@ msgstr "crwdns100696:0crwdne100696:0"
msgid "Set Filters for {0}"
msgstr "crwdns100698:0{0}crwdne100698:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr "crwdns148706:0crwdne148706:0"
@@ -23372,7 +23583,7 @@ msgstr "crwdns111216:0crwdne111216:0"
msgid "Setup > User Permissions"
msgstr "crwdns111218:0crwdne111218:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "crwdns100774:0crwdne100774:0"
@@ -23461,6 +23672,8 @@ msgstr "crwdns111226:0crwdne111226:0"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "crwdns100814:0crwdne100814:0"
@@ -23487,6 +23700,12 @@ msgstr "crwdns131174:0crwdne131174:0"
msgid "Show All"
msgstr "crwdns111228:0crwdne111228:0"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr "crwdns156016:0crwdne156016:0"
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "crwdns100822:0crwdne100822:0"
@@ -23604,6 +23823,12 @@ msgstr "crwdns131200:0crwdne131200:0"
msgid "Show Processlist"
msgstr "crwdns131202:0crwdne131202:0"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr "crwdns156018:0crwdne156018:0"
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "crwdns100872:0crwdne100872:0"
@@ -23630,6 +23855,12 @@ msgstr "crwdns131204:0crwdne131204:0"
msgid "Show Sidebar"
msgstr "crwdns131206:0crwdne131206:0"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr "crwdns156020:0crwdne156020:0"
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23660,6 +23891,12 @@ msgstr "crwdns100896:0crwdne100896:0"
msgid "Show Traceback"
msgstr "crwdns111234:0crwdne111234:0"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr "crwdns156022:0crwdne156022:0"
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "crwdns100898:0crwdne100898:0"
@@ -23713,6 +23950,12 @@ msgstr "crwdns131218:0crwdne131218:0"
msgid "Show in Module Section"
msgstr "crwdns131220:0crwdne131220:0"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr "crwdns156024:0crwdne156024:0"
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23798,7 +24041,7 @@ msgid "Sign Up is disabled"
msgstr "crwdns100938:0crwdne100938:0"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "crwdns100940:0crwdne100940:0"
@@ -23884,8 +24127,10 @@ msgstr "crwdns100974:0crwdne100974:0"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "crwdns131254:0crwdne131254:0"
@@ -24049,6 +24294,16 @@ msgstr "crwdns131284:0crwdne131284:0"
msgid "Soft-Bounced"
msgstr "crwdns131286:0crwdne131286:0"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr "crwdns156026:0crwdne156026:0"
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr "crwdns156028:0crwdne156028:0"
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "crwdns111246:0crwdne111246:0"
@@ -24116,7 +24371,7 @@ msgstr "crwdns101064:0{0}crwdne101064:0"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24206,7 +24461,7 @@ msgstr "crwdns101090:0crwdne101090:0"
msgid "Standard"
msgstr "crwdns101094:0crwdne101094:0"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "crwdns101108:0crwdne101108:0"
@@ -24222,7 +24477,7 @@ msgstr "crwdns101112:0crwdne101112:0"
msgid "Standard Permissions"
msgstr "crwdns142898:0crwdne142898:0"
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "crwdns101114:0crwdne101114:0"
@@ -24443,7 +24698,7 @@ msgstr "crwdns131324:0crwdne131324:0"
msgid "Status"
msgstr "crwdns101196:0crwdne101196:0"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "crwdns101242:0crwdne101242:0"
@@ -24774,7 +25029,7 @@ msgstr "crwdns151444:0crwdne151444:0"
msgid "Success title"
msgstr "crwdns151446:0crwdne151446:0"
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "crwdns101392:0crwdne101392:0"
@@ -24842,7 +25097,7 @@ msgstr "crwdns101420:0{0}crwdne101420:0"
msgid "Sum"
msgstr "crwdns101422:0crwdne101422:0"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "crwdns101428:0{0}crwdne101428:0"
@@ -24951,7 +25206,7 @@ msgstr "crwdns101474:0crwdne101474:0"
msgid "Syncing {0} of {1}"
msgstr "crwdns101476:0{0}crwdnd101476:0{1}crwdne101476:0"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "crwdns101478:0crwdne101478:0"
@@ -25129,6 +25384,7 @@ msgstr "crwdns101486:0crwdne101486:0"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25188,6 +25444,11 @@ msgctxt "Number system"
msgid "T"
msgstr "crwdns101504:0crwdne101504:0"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr "crwdns156030:0crwdne156030:0"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25258,7 +25519,7 @@ msgstr "crwdns112742:0crwdne112742:0"
msgid "Table updated"
msgstr "crwdns101536:0crwdne101536:0"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "crwdns101538:0{0}crwdne101538:0"
@@ -25514,7 +25775,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr "crwdns131544:0{{ doc.name }}crwdne131544:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr "crwdns102040:0crwdne102040:0"
@@ -26505,6 +26772,12 @@ msgstr "crwdns131556:0crwdne131556:0"
msgid "Token Cache"
msgstr "crwdns102094:0crwdne102094:0"
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr "crwdns156034:0crwdne156034:0"
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26532,7 +26805,7 @@ msgstr "crwdns102106:0crwdne102106:0"
msgid "Too Many Requests"
msgstr "crwdns102108:0crwdne102108:0"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr "crwdns102110:0crwdne102110:0"
@@ -26725,7 +26998,7 @@ msgstr "crwdns111548:0crwdne111548:0"
msgid "Tracking"
msgstr "crwdns148952:0crwdne148952:0"
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr "crwdns102180:0crwdne102180:0"
@@ -26772,7 +27045,7 @@ msgstr "crwdns131616:0crwdne131616:0"
msgid "Translatable"
msgstr "crwdns131618:0crwdne131618:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr "crwdns154320:0crwdne154320:0"
@@ -27026,10 +27299,48 @@ msgstr "crwdns131656:0crwdne131656:0"
msgid "URL must start with http:// or https://"
msgstr "crwdns102322:0crwdne102322:0"
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr "crwdns156036:0crwdne156036:0"
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr "crwdns156038:0crwdne156038:0"
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr "crwdns156040:0crwdne156040:0"
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr "crwdns156042:0crwdne156042:0"
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr "crwdns102324:0crwdne102324:0"
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr "crwdns156044:0crwdne156044:0"
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr "crwdns156046:0crwdne156046:0"
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr "crwdns156048:0crwdne156048:0"
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27079,7 +27390,7 @@ msgstr "crwdns102334:0crwdne102334:0"
msgid "Unable to read file format for {0}"
msgstr "crwdns102336:0{0}crwdne102336:0"
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "crwdns102338:0crwdne102338:0"
@@ -27096,7 +27407,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0"
msgid "Unassign Condition"
msgstr "crwdns131662:0crwdne131662:0"
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr "crwdns151458:0crwdne151458:0"
@@ -27140,6 +27451,13 @@ msgstr "crwdns131664:0crwdne131664:0"
msgid "Unique"
msgstr "crwdns131666:0crwdne131666:0"
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr "crwdns156050:0crwdne156050:0"
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "crwdns111298:0crwdne111298:0"
@@ -27730,7 +28048,7 @@ msgstr "crwdns102624:0crwdne102624:0"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "crwdns102628:0crwdne102628:0"
@@ -28034,15 +28352,15 @@ msgstr "crwdns131784:0crwdne131784:0"
msgid "Value To Be Set"
msgstr "crwdns131786:0crwdne131786:0"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "crwdns102750:0{0}crwdne102750:0"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "crwdns102752:0crwdne102752:0"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "crwdns102754:0{0}crwdnd102754:0{1}crwdne102754:0"
@@ -28068,6 +28386,12 @@ msgstr "crwdns131788:0crwdne131788:0"
msgid "Value must be one of {0}"
msgstr "crwdns102766:0{0}crwdne102766:0"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr "crwdns156052:0crwdne156052:0"
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28405,7 +28729,7 @@ msgstr "crwdns102894:0crwdne102894:0"
msgid "Web Page Block"
msgstr "crwdns102900:0crwdne102900:0"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr "crwdns102902:0crwdne102902:0"
@@ -28803,7 +29127,7 @@ msgstr "crwdns103094:0crwdne103094:0"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "crwdns152665:0crwdne152665:0"
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "crwdns103098:0crwdne103098:0"
@@ -28944,7 +29268,7 @@ msgstr "crwdns112760:0crwdne112760:0"
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "crwdns103156:0crwdne103156:0"
@@ -29132,7 +29456,7 @@ msgstr "crwdns131908:0crwdne131908:0"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "crwdns103238:0crwdne103238:0"
@@ -29211,7 +29535,7 @@ msgstr "crwdns103272:0crwdne103272:0"
msgid "You are not allowed to send emails related to this document"
msgstr "crwdns103274:0crwdne103274:0"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "crwdns103276:0crwdne103276:0"
@@ -29227,7 +29551,7 @@ msgstr "crwdns103280:0crwdne103280:0"
msgid "You are not permitted to access this page."
msgstr "crwdns103282:0crwdne103282:0"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr "crwdns155350:0crwdne155350:0"
@@ -29235,7 +29559,7 @@ msgstr "crwdns155350:0crwdne155350:0"
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "crwdns103286:0crwdne103286:0"
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "crwdns103288:0crwdne103288:0"
@@ -29280,7 +29604,7 @@ msgstr "crwdns103302:0{0}crwdne103302:0"
msgid "You can continue with the onboarding after exploring this page"
msgstr "crwdns103304:0crwdne103304:0"
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr "crwdns142902:0{0}crwdne142902:0"
@@ -29399,7 +29723,7 @@ msgstr "crwdns103348:0crwdne103348:0"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "crwdns103350:0crwdne103350:0"
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "crwdns103352:0crwdne103352:0"
@@ -29419,7 +29743,7 @@ msgstr "crwdns103360:0crwdne103360:0"
msgid "You don't have access to Report: {0}"
msgstr "crwdns103362:0{0}crwdne103362:0"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr "crwdns103364:0{0}crwdne103364:0"
@@ -29492,15 +29816,15 @@ msgstr "crwdns103396:0crwdne103396:0"
msgid "You must add atleast one link."
msgstr "crwdns103398:0crwdne103398:0"
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr "crwdns103400:0crwdne103400:0"
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "crwdns103402:0crwdne103402:0"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "crwdns151578:0{0}crwdnd151578:0{1}crwdnd151578:0{2}crwdne151578:0"
@@ -29668,11 +29992,11 @@ msgstr "crwdns103458:0crwdne103458:0"
msgid "Your login id is"
msgstr "crwdns103460:0crwdne103460:0"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr "crwdns103462:0crwdne103462:0"
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr "crwdns103464:0crwdne103464:0"
@@ -29686,7 +30010,7 @@ msgstr "crwdns131910:0crwdne131910:0"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "crwdns103468:0crwdne103468:0"
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "crwdns103470:0crwdne103470:0"
@@ -29698,7 +30022,7 @@ msgstr "crwdns111354:0crwdne111354:0"
msgid "Your verification code is {0}"
msgstr "crwdns103472:0{0}crwdne103472:0"
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "crwdns103476:0crwdne103476:0"
@@ -29722,7 +30046,7 @@ msgstr "crwdns131914:0crwdne131914:0"
msgid "_report"
msgstr "crwdns131916:0crwdne131916:0"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "crwdns104504:0crwdne104504:0"
@@ -29745,7 +30069,7 @@ msgstr "crwdns131918:0crwdne131918:0"
msgid "amend"
msgstr "crwdns131920:0crwdne131920:0"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "crwdns103502:0crwdne103502:0"
@@ -29803,7 +30127,7 @@ msgid "cyan"
msgstr "crwdns131932:0crwdne131932:0"
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "crwdns103578:0crwdne103578:0"
@@ -29970,7 +30294,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "crwdns103692:0crwdne103692:0"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "crwdns103694:0crwdne103694:0"
@@ -30044,7 +30368,7 @@ msgid "long"
msgstr "crwdns131990:0crwdne131990:0"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "crwdns103758:0crwdne103758:0"
@@ -30234,7 +30558,7 @@ msgid "restored {0} as {1}"
msgstr "crwdns103898:0{0}crwdnd103898:0{1}crwdne103898:0"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "crwdns103904:0crwdne103904:0"
@@ -30568,7 +30892,7 @@ msgstr "crwdns104100:0{0}crwdne104100:0"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "crwdns104102:0{0}crwdnd104102:0{1}crwdnd104102:0{2}crwdne104102:0"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0"
@@ -30576,7 +30900,7 @@ msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0"
msgid "{0} are currently {1}"
msgstr "crwdns104118:0{0}crwdnd104118:0{1}crwdne104118:0"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "crwdns104120:0{0}crwdne104120:0"
@@ -30606,7 +30930,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "crwdns104130:0{0}crwdnd104130:0{1}crwdne104130:0"
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "crwdns151848:0{0}crwdne151848:0"
@@ -30678,7 +31002,7 @@ msgstr "crwdns104168:0{0}crwdnd104168:0{1}crwdne104168:0"
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "crwdns155602:0{0}crwdnd155602:0{1}crwdne155602:0"
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "crwdns104170:0{0}crwdnd104170:0{1}crwdne104170:0"
@@ -30821,7 +31145,7 @@ msgstr "crwdns104242:0{0}crwdnd104242:0{1}crwdne104242:0"
msgid "{0} is not a valid parentfield for {1}"
msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "crwdns104246:0{0}crwdnd104246:0{1}crwdne104246:0"
@@ -30845,7 +31169,7 @@ msgstr "crwdns104254:0{0}crwdnd104254:0{1}crwdne104254:0"
msgid "{0} is not set"
msgstr "crwdns104256:0{0}crwdne104256:0"
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "crwdns104258:0{0}crwdnd104258:0{1}crwdne104258:0"
@@ -30855,7 +31179,8 @@ msgstr "crwdns104260:0{0}crwdnd104260:0{1}crwdne104260:0"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "crwdns104262:0{0}crwdne104262:0"
@@ -30905,23 +31230,23 @@ msgstr "crwdns104280:0{0}crwdne104280:0"
msgid "{0} months ago"
msgstr "crwdns104282:0{0}crwdne104282:0"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr "crwdns148714:0{0}crwdnd148714:0{1}crwdne148714:0"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr "crwdns148716:0{0}crwdnd148716:0{1}crwdne148716:0"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0"
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0"
@@ -30933,7 +31258,7 @@ msgstr "crwdns104288:0{0}crwdne104288:0"
msgid "{0} must be unique"
msgstr "crwdns104290:0{0}crwdne104290:0"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0"
@@ -30962,12 +31287,12 @@ msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0"
msgid "{0} of {1} ({2} rows with children)"
msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr "crwdns104510:0{0}crwdne104510:0"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "crwdns104306:0{0}crwdnd104306:0{1}crwdne104306:0"
@@ -31004,7 +31329,7 @@ msgstr "crwdns104320:0{0}crwdne104320:0"
msgid "{0} role does not have permission on any doctype"
msgstr "crwdns111370:0{0}crwdne111370:0"
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0"
@@ -31120,11 +31445,11 @@ msgstr "crwdns104378:0{0}crwdnd104378:0{1}crwdne104378:0"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "crwdns104384:0{0}crwdnd104384:0{1}crwdnd104384:0{2}crwdnd104384:0{3}crwdne104384:0"
@@ -31273,11 +31598,11 @@ msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0"
msgid "{} Complete"
msgstr "crwdns104450:0crwdne104450:0"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr "crwdns104452:0crwdne104452:0"
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr "crwdns104454:0crwdne104454:0"
diff --git a/frappe/locale/es.po b/frappe/locale/es.po
index 11fdfafe0e..ce28456306 100644
--- a/frappe/locale/es.po
+++ b/frappe/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-29 17:46\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "1 Informe"
msgid "1 comment"
msgstr "1 comentario"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "Hace 1 día"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 hora"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "Hace una hora"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "Hace un minuto"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "Hace 1 mes"
@@ -180,37 +180,37 @@ msgstr "1 de 2"
msgid "1 record will be exported"
msgstr "Se exportará 1 registro"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "Hace 1 segundo"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "Hace 1 semana"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "Hace 1 año"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "Hace 2 horas"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "Hace 2 meses"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "Hace 2 semanas"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "Hace 2 años"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "Hace 3 minutos"
@@ -226,7 +226,7 @@ msgstr "4 horas"
msgid "5 Records"
msgstr "5 registros"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "Hace 5 días"
@@ -691,6 +691,11 @@ msgstr ">="
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "El nombre de un DocType debe empezar por una letra y sólo puede estar formado por letras, números, espacios, guiones bajos y guiones"
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Una publicación destacada debe tener una imagen de portada"
@@ -725,6 +730,13 @@ msgstr "Un símbolo para esta moneda. Por ejemplo, $"
msgid "A template already exists for field {0} of {1}"
msgstr "Ya existe una plantilla para el campo {0} de {1}"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Una palabra de por sí es fácil de adivinar."
@@ -986,7 +998,7 @@ msgstr "Acción / Ruta"
msgid "Action Complete"
msgstr "Acción completada"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Acción Fallida"
@@ -1151,8 +1163,8 @@ msgid "Add Child"
msgstr "Crear subcategoría"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1188,7 +1200,7 @@ msgid "Add Gray Background"
msgstr "Agregar fondo gris"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Añadir Grupo"
@@ -2003,6 +2015,12 @@ msgstr "Permitido en Menciones"
msgid "Allowed Modules"
msgstr "Módulos Permitidos"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -2019,6 +2037,42 @@ msgstr "Dominios integrados permitidos"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Precaución, autorizando 'DocType'"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Ya está Registrado"
@@ -2110,7 +2164,7 @@ msgstr "Corrigiento"
msgid "Amendment Naming Override"
msgstr "Sobrescribir la nomenclatura rectificada"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Enmienda no permitida"
@@ -2199,16 +2253,6 @@ msgstr "Además del Administrador del sistema, los roles con el derecho \"Establ
msgid "App"
msgstr "App"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "ID de Cliente de Aplicación"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Clave Secreta de Aplicación"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2222,21 +2266,24 @@ msgstr "Logo de la App"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Nombre de la Aplicación"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "App no encontrada para el módulo: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "Aplicación {0} no está instalada"
@@ -2482,7 +2529,7 @@ msgstr "De acuerdo con su solicitud, su cuenta y los datos de {0} asociados al c
msgid "Assign Condition"
msgstr "Asignar condición"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Asignar a"
@@ -2491,7 +2538,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Asignar a"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Asignar a Grupo de Usuarios"
@@ -2736,11 +2783,11 @@ msgstr "Adjunto Eliminado"
msgid "Attachments"
msgstr "Adjuntos"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Intentando conectarse a la bandeja QZ..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Intentando iniciar QZ Tray..."
@@ -2792,6 +2839,11 @@ msgstr "Error de autenticación al recibir correos electrónicos de la cuenta de
msgid "Author"
msgstr "Autor"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3026,7 +3078,7 @@ msgstr "Avatar"
msgid "Average"
msgstr "Promedio"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Promedio de {0}"
@@ -3904,7 +3956,7 @@ msgid "Camera"
msgstr "Cámara"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4056,11 +4108,11 @@ msgstr "No se puede cancelar antes de validar. Ver Transición {0}"
msgid "Cannot cancel {0}."
msgstr "No se puede cancelar {0}."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "No se puede cambiar el estado del documento de 0 (Borrador) a 2 (Cancelado)"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "No se puede cambiar el estado del documento de 1 (Validado) a 0 (Borrador)"
@@ -4088,7 +4140,7 @@ msgstr "No se puede crear un Área de Trabajo privado para otros usuarios"
msgid "Cannot delete Home and Attachments folders"
msgstr "No se puede eliminar la carpeta principal y sus carpetas adjuntas"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "No se puede eliminar o cancelar porque {0} {1} está vinculado con {2} {3} {4}"
@@ -4143,7 +4195,7 @@ msgstr "No se puede editar gráficos estándar"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "No se puede editar un informe estándar. Por favor, duplicar y crear un nuevo informe"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "No se puede editar un documento cancelado"
@@ -4180,7 +4232,7 @@ msgstr "No se pueden asignar varias impresoras a un único formato de impresión
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "No se puede vincular al documento anulado: {0}"
@@ -4225,7 +4277,7 @@ msgstr "No se puede Actualizar {0}"
msgid "Cannot use sub-query in order by"
msgstr "No se puede utilizar sub-query en order by"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "No se puede utilizar {0} en ordenar/agrupar por"
@@ -4282,10 +4334,6 @@ msgstr "Descripción de categoría"
msgid "Category Name"
msgstr "Nombre Categoría"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Centavo"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4571,6 +4619,10 @@ msgstr "Borrar y Agregar Plantilla"
msgid "Clear & Add template"
msgstr "Borrar y Agregar plantilla"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4692,8 +4744,10 @@ msgid "Client Credentials"
msgstr "Credenciales del Cliente"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "Id del cliente"
@@ -4709,6 +4763,12 @@ msgstr "Id de cliente"
msgid "Client Information"
msgstr "Información del Cliente"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4721,13 +4781,32 @@ msgstr "Script de cliente"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Secreto del cliente"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4812,7 +4891,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Colapso"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Desplegar todo"
@@ -4958,7 +5037,7 @@ msgstr "Columnas / Campos"
msgid "Columns based on"
msgstr "Columnas basadas en"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "No se permite la combinación del tipo de concesión ( {0} ) y el tipo de respuesta ( {1} )"
@@ -5207,6 +5286,12 @@ msgstr "Descripción de la condición"
msgid "Conditions"
msgstr "Condiciones"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5245,7 +5330,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Configura varios aspectos de cómo funciona la nomenclatura de documentos, como las series de nombres y el contador actual."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Confirmar"
@@ -5254,7 +5339,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Confirmar"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Confirmar acceso"
@@ -5267,7 +5352,7 @@ msgstr "Confirmar la eliminación de la cuenta"
msgid "Confirm New Password"
msgstr "Confirmar nueva contraseña"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Confirmar Contraseña"
@@ -5308,8 +5393,8 @@ msgstr "Aplicación conectada"
msgid "Connected User"
msgstr "Usuario conectado"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Conectado a la bandeja QZ!"
@@ -5401,6 +5486,11 @@ msgstr "Configuración de contácto"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Opciones de contacto, como \"Consulta de ventas, Consulta de soporte\", etc., cada una en una nueva línea o separada por comas."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Contactos"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "Contiene {0} corrección de seguridad"
@@ -5419,7 +5509,7 @@ msgstr "Contiene {0} correcciones de seguridad"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5501,7 +5591,7 @@ msgstr "Estado de contribución"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Controla si los nuevos usuarios pueden registrarse utilizando esta Clave de Inicio de Sesión Social. Si no se establece, se respeta la configuración del sitio web."
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Copiado al portapapeles."
@@ -5542,7 +5632,7 @@ msgstr "Versión correcta:"
msgid "Could not connect to outgoing email server"
msgstr "No se pudo conectar con el servidor de correo electrónico saliente"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "No se pudo encontrar {0}"
@@ -5570,7 +5660,7 @@ msgstr "No se pudo guardar, verifique los datos que ingresó"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Contar"
@@ -6275,7 +6365,7 @@ msgstr "Tema Oscuro"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Tablero"
@@ -7445,6 +7535,7 @@ msgstr "El DocStatus de los siguientes estados ha cambiado:
{0}
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."
msgstr "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."
@@ -9393,7 +9490,7 @@ msgstr ""
msgid "Executing..."
msgstr "Ejecutando..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "Tiempo de ejecución: {0} segundos"
@@ -9419,7 +9516,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir todo"
@@ -9480,7 +9577,7 @@ msgstr "Tiempo de expiración de Pagina de Código QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9845,7 +9942,7 @@ msgstr "Obteniendo documentos predeterminados de Global Search."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9916,7 +10013,7 @@ msgstr "Campo a seguir"
msgid "Field type cannot be changed for {0}"
msgstr "El Tipo de Campo no se puede cambiar para {0}"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "El campo {0} no existe en {1}"
@@ -9959,7 +10056,7 @@ msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre automático"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Nombre de campo está limitado a 64 caracteres ({0})"
@@ -9975,7 +10072,7 @@ msgstr "Nombre de campo por el cual el 'DocType' enlazará el campo."
msgid "Fieldname {0} appears multiple times"
msgstr "El nombre de campo {0} aparece varias veces"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}"
@@ -10423,7 +10520,7 @@ msgstr "Seguir"
msgid "Followed by"
msgstr "Seguido por"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "Los siguientes filtros de informe tienen valores faltantes:"
@@ -10608,7 +10705,7 @@ msgstr "Por Usuario"
msgid "For Value"
msgstr "Por valor"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Para la comparación, utilice >5, <10 o =324. Para rangos, utilice 5:10 (para valores entre 5 y 10)."
@@ -10886,7 +10983,7 @@ msgstr "Desde la fecha"
msgid "From Date Field"
msgstr "Desde campo de fecha"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "Desde tipo de documento"
@@ -10946,7 +11043,7 @@ msgstr "Función"
msgid "Function Based On"
msgstr "Función basada en"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "La función {0} no está en la lista blanca."
@@ -11024,7 +11121,7 @@ msgid "Generate Random Password"
msgstr "Generar Contraseña Aleatoria"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generar URL de seguimiento"
@@ -11453,7 +11550,7 @@ msgstr "Clase de Objeto Grupo"
msgid "Group your custom doctypes under modules"
msgstr "Agrupe sus doctypes personalizados en módulos"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "Agrupados por {0}"
@@ -11503,7 +11600,7 @@ msgstr "HH: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11732,7 +11829,7 @@ msgstr "Helvética"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "Esta es tu URL de seguimiento"
@@ -11774,6 +11871,7 @@ msgstr "Campos ocultos"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Esconder"
@@ -11935,7 +12033,7 @@ msgstr "La regla de mayor prioridad se aplicará primero"
msgid "Highlight"
msgstr "Resaltar"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Sugerencia: Incluya símbolos, números y letras mayúsculas en la contraseña"
@@ -12018,15 +12116,20 @@ msgstr "Horas"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "¿Cómo se debe formatear esta moneda? Si no se establece, el sistema utilizará los valores por defecto"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr "Supongo que aún no tiene acceso a ningún espacio de trabajo, pero puede crear uno sólo para usted. Haga clic en el botón Crear espacio de trabajo para crear uno.
"
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12707,11 +12810,11 @@ msgstr "Incluir tema de aplicaciones"
msgid "Include Web View Link in Email"
msgstr "Enviar el enlace de la vista web del documento por correo electrónico"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "Incluir filtros"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "Incluir sangría"
@@ -12778,11 +12881,11 @@ msgstr "Usuario o Contraseña Incorrecta"
msgid "Incorrect Verification code"
msgstr "Código de Verificación incorrecto"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "Valor incorrecto en la fila {0}:"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "Valor incorrecto:"
@@ -12869,7 +12972,7 @@ msgstr "Insertar Arriba"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "Insertar Después"
@@ -13125,7 +13228,7 @@ msgstr "Valor de filtro inválido"
msgid "Invalid Home Page"
msgstr "Error en la página de Inicio"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Link Inválido"
@@ -13159,7 +13262,7 @@ msgstr "Opción inválida"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "Servidor o puerto de correo saliente no válido: {0}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Formato de salida no válido"
@@ -13171,9 +13274,9 @@ msgstr "Anulación no válida"
msgid "Invalid Parameters."
msgstr "Parámetros Inválidos."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "Contraseña invalida"
@@ -13253,7 +13356,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "Estado del documento no válido"
@@ -13277,10 +13380,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Nombre de campo inválido {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13334,7 +13441,7 @@ msgstr "Contenido no válido o dañado para importar"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex de redirección no válida en la fila #{}: {}"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "Argumentos de solicitud inválidos"
@@ -14083,7 +14190,7 @@ msgstr "La etiqueta es obligatoria"
msgid "Landing Page"
msgstr "Pagina de inicio"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Paisaje"
@@ -14379,7 +14486,7 @@ msgstr "Carta"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14693,7 +14800,7 @@ msgstr "Enlaces"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Lista"
@@ -15007,6 +15114,11 @@ msgstr "Inicio de sesión con nombre de usuario y contraseña no está permitido
msgid "Login with {0}"
msgstr "Iniciar sesión con {0}"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15193,7 +15305,7 @@ msgstr "Obligatorio depende de"
msgid "Mandatory Depends On (JS)"
msgstr "Obligatorio Depende de (JS)"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Información obligatoria faltante:"
@@ -15416,7 +15528,7 @@ msgstr "Significado de Validar, Cancelar, Rectificar"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15614,6 +15726,12 @@ msgstr "Título meta"
msgid "Meta title for SEO"
msgstr "Meta título para SEO"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15633,7 +15751,7 @@ msgstr "Meta título para SEO"
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr "Método no permitido"
@@ -15727,7 +15845,7 @@ msgstr "Campo faltante"
msgid "Missing Fields"
msgstr "Campos Faltantes"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "Faltan filtros requeridos"
@@ -15735,7 +15853,7 @@ msgstr "Faltan filtros requeridos"
msgid "Missing Permission"
msgstr "Faltan permisos"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "Falta un valor"
@@ -15801,7 +15919,7 @@ msgstr "Modificado por"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16101,7 +16219,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16269,7 +16387,7 @@ msgstr "Configuración de Navegación"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el área de trabajo privada de otros usuarios"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Valor negativo"
@@ -16398,7 +16516,7 @@ msgstr "Nueva tarjeta numérica"
msgid "New Onboarding"
msgstr "Nuevo módulo de incorporación"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nueva Contraseña"
@@ -16443,7 +16561,26 @@ msgstr "Nuevo nombre del flujo de trabajo"
msgid "New Workspace"
msgstr "Nueva Área de Trabajo"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "La nueva contraseña no puede ser igual a la contraseña anterior"
@@ -16475,7 +16612,7 @@ msgstr "Nuevo valor a establecer"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "Nuevo/a: {0}"
@@ -16626,7 +16763,7 @@ msgstr "Siguiente al hacer clic"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "No"
@@ -16655,7 +16792,7 @@ msgid "No Copy"
msgstr "No copiar"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16914,7 +17051,7 @@ msgstr "No se de filas (máx 500)"
msgid "No of Sent SMS"
msgstr "Nº de SMS enviados"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Sin permiso para {0}"
@@ -17007,6 +17144,12 @@ msgstr "No negativo"
msgid "Non-Conforming"
msgstr "No Conforme"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Ninguna"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Ninguno: Fin del flujo de trabajo"
@@ -17042,7 +17185,7 @@ msgstr "No son Descendientes de"
msgid "Not Equals"
msgstr "No es igual"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "No encontrado"
@@ -17068,9 +17211,9 @@ msgstr "No está vinculado a ningún registro"
msgid "Not Nullable"
msgstr "No nulo"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17178,7 +17321,7 @@ msgstr "No se encuentra en modo desarrollador! Debe establecerlo en el archivo s
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "No permitido"
@@ -17499,6 +17642,11 @@ msgstr "Configuración del Proveedor OAuth"
msgid "OAuth Scope"
msgstr "Ámbito OAuth"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "OAuth ha sido habilitado pero no autorizado. Por favor, utilice el botón \"Autorizar acceso API\" para hacer lo mismo."
@@ -17748,7 +17896,7 @@ msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabaj
msgid "Only allowed to export customizations in developer mode"
msgstr "Solo se permite exportar personalizaciones en modo desarrollador"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "Solo pueden descartarse los borradores de documentos"
@@ -17779,7 +17927,7 @@ msgstr "Solo se pueden editar informes del tipo Generador de Informes"
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Solo los DocTypes estándar pueden personalizarse desde el formulario Personalizar."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17787,7 +17935,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr "Solo el asignado puede completar esta tarea."
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "Sólo se permiten {0} informes enviados por correo electrónico por usuario."
@@ -17920,7 +18068,7 @@ msgstr "Abierto"
msgid "Operation"
msgstr "Operación"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "El Operador debe ser uno de {0}"
@@ -18035,7 +18183,7 @@ msgstr "Historia de la organización"
msgid "Org History Heading"
msgstr "Encabezado de la historia de la organización"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "Orientación"
@@ -18117,9 +18265,11 @@ msgstr "Propietario"
msgid "PATCH"
msgstr "PATCH"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "PDF"
@@ -18414,8 +18564,8 @@ msgstr "Se requiere el tipo de documento padre para crear un gráfico de tablero
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Parent es el nombre del documento al que se agregarán los datos."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18520,7 +18670,7 @@ msgstr "Contraseña no encontrada para {0} {1} {2}"
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Se han enviado instrucciones para restablecer la contraseña al correo electrónico de {}."
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "Contraseña establecida"
@@ -18532,7 +18682,7 @@ msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido"
msgid "Password size exceeded the maximum allowed size."
msgstr "El tamaño de la contraseña superó el tamaño máximo permitido."
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "Las contraseñas no coinciden"
@@ -18841,7 +18991,7 @@ msgstr "No. de teléfono"
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Número de teléfono {0} establecido en el campo {1} no es válido."
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -19012,7 +19162,7 @@ msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDA
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Por favor, active los pop-ups"
@@ -19029,23 +19179,23 @@ msgstr "Habilite {} antes de continuar."
msgid "Please ensure that your profile has an email address"
msgstr "Por favor, asegúrese de que su perfil tiene una dirección de correo electrónico"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Por favor ingrese la URL del Access Token"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Por favor ingrese Authorize URL"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Por favor ingrese la URL Base"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Ingrese ID de Cliente antes de que se active el inicio de sesión social"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Ingrese Client Secret antes de que el inicio de sesión social esté habilitado"
@@ -19053,7 +19203,7 @@ msgstr "Ingrese Client Secret antes de que el inicio de sesión social esté hab
msgid "Please enter OpenID Configuration URL"
msgstr "Por favor, introduzca la URL de configuración de OpenID"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Por favor ingrese la URL de Redireccion"
@@ -19065,7 +19215,7 @@ msgstr "Por favor, introduzca una dirección de correo válida."
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr "Por favor, introduzca tanto su correo electrónico como su mensaje para que podamos ponernos en contacto con usted. Gracias."
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Por favor introduzca la contraseña"
@@ -19078,11 +19228,11 @@ msgstr "Por favor, introduzca la contraseña para: {0}"
msgid "Please enter valid mobile nos"
msgstr "Por favor, ingrese un numero de móvil válido"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "Por favor, ingrese su nueva contraseña."
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "Por favor, introduzca su antigua contraseña."
@@ -19098,7 +19248,7 @@ msgstr "Por favor, inicie sesión para enviar un comentario."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Asegúrese de que los documentos de comunicación de referencia no estén vinculados circularmente."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Por favor, actualice para obtener el último documento."
@@ -19166,7 +19316,7 @@ msgstr "Seleccione un filtro de fecha válido"
msgid "Please select applicable Doctypes"
msgstr "Por favor seleccione Doctypes aplicables"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar"
@@ -19200,7 +19350,7 @@ msgstr "Configure una asignación de impresora para este formato de impresión e
msgid "Please set filters"
msgstr "Por favor, defina los filtros"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Defina el valor de los filtros en la tabla Filtro de informes."
@@ -19273,10 +19423,19 @@ msgstr "Por favor, actualice {} antes de continuar."
msgid "Please use a valid LDAP search filter"
msgstr "Por favor, utilice un filtro de búsqueda LDAP válido"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Por favor, visite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key para más información."
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19322,7 +19481,7 @@ msgstr "Elemento del Menú del Portal"
msgid "Portal Settings"
msgstr "Configuración del portal"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "Retrato"
@@ -19576,7 +19735,7 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19637,6 +19796,11 @@ msgstr "Error de formato de impresión"
msgid "Print Format Field Template"
msgstr "Formato de impresión de Plantilla de campo"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19647,6 +19811,10 @@ msgstr "Ayuda de formato de impresión"
msgid "Print Format Type"
msgstr "Tipo de formato de impresión"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "El formato de impresión {0} está deshabilitado"
@@ -19682,7 +19850,7 @@ msgstr "Impresión Oculta si no hay Valor"
msgid "Print Language"
msgstr "Lenguaje de impresión"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "¡La impresión ha sido enviada a la impresora!"
@@ -19700,7 +19868,7 @@ msgstr "Servidor de Impresión"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Ajustes de Impresión"
@@ -19810,6 +19978,10 @@ msgstr "Privado"
msgid "Private Files (MB)"
msgstr "Archivos privados (MB)"
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19932,6 +20104,10 @@ msgstr "Público"
msgid "Public Files (MB)"
msgstr "Archivos públicos (MB)"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -20071,7 +20247,7 @@ msgstr "Código QR"
msgid "QR Code for Login Verification"
msgstr "Código QR para la verificación de inicio de Sesión"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "Bandeja QZ fallida: "
@@ -20284,7 +20460,7 @@ msgstr "Clasificación"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Comandos sin formato"
@@ -20784,7 +20960,7 @@ msgstr "Referente"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21113,6 +21289,8 @@ msgstr "Responder a todos"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21128,8 +21306,11 @@ msgstr "Responder a todos"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Reporte"
@@ -21198,7 +21379,7 @@ msgstr "Administrador de reportes"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "Nombre del reporte"
@@ -21254,7 +21435,7 @@ msgstr "El informe no tiene campos numéricos, cambie el nombre del informe"
msgid "Report initiated, click to view status"
msgstr "Informe iniciado, haga clic para ver el estado"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "Límite de reportes alcanzado"
@@ -21270,7 +21451,7 @@ msgstr "Informe actualizado con éxito"
msgid "Report was not saved (there were errors)"
msgstr "El reporte no se pudo guardar (contiene errores)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "El informe con más de 10 columnas se ve mejor en modo horizontal."
@@ -21491,6 +21672,31 @@ msgstr "Restablecer predeterminados"
msgid "Reset your password"
msgstr "Restablecer su Contraseña"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21867,7 +22073,7 @@ msgstr "Redirecciones de ruta"
msgid "Route: Example \"/app\""
msgstr "Ruta: Ejemplo \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Línea"
@@ -22152,7 +22358,7 @@ msgstr "Sábado"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22179,7 +22385,7 @@ msgstr "Guardar como"
msgid "Save Customizations"
msgstr "Guardar Personalización"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "Guardar reporte"
@@ -22355,6 +22561,11 @@ msgstr "Alcance"
msgid "Scopes"
msgstr "Alcances"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22635,7 +22846,7 @@ msgid "Select Column"
msgstr "Seleccionar Columna"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Seleccione columnas"
@@ -23176,7 +23387,7 @@ msgstr "Secuencia {0} ya utilizada en {1}"
msgid "Server Action"
msgstr "Acción del servidor"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Error del Servidor"
@@ -23242,7 +23453,7 @@ msgstr "Valores predeterminados de sesión"
msgid "Session Defaults Saved"
msgstr "Valores predeterminados de sesión guardados"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "Sesión expirada"
@@ -23300,7 +23511,7 @@ msgstr "Establecer filtros"
msgid "Set Filters for {0}"
msgstr "Establecer filtros para {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr "Establecer Nivel"
@@ -23542,7 +23753,7 @@ msgstr "Configuración > Usuario"
msgid "Setup > User Permissions"
msgstr "Configurar > Permisos del Usuario"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Configuración automática de correo electrónico"
@@ -23631,6 +23842,8 @@ msgstr "Atajos"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Mostrar"
@@ -23657,6 +23870,12 @@ msgstr "Mostrar Valores Absolutos"
msgid "Show All"
msgstr "Mostrar Todo"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Mostrar Calendario"
@@ -23774,6 +23993,12 @@ msgstr "Mostrar ventana emergente de vista previa"
msgid "Show Processlist"
msgstr "Mostrar lista de procesos"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "Mostrar errores relacionados"
@@ -23800,6 +24025,12 @@ msgstr "Mostrar títulos de las secciones"
msgid "Show Sidebar"
msgstr "Mostrar barra lateral"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23830,6 +24061,12 @@ msgstr "Mostrar Tours"
msgid "Show Traceback"
msgstr "Mostrar Traceback"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Mostrar advertencias"
@@ -23883,6 +24120,12 @@ msgstr "Mostrar formulario completo en lugar de un modal de entrada rápida"
msgid "Show in Module Section"
msgstr "Mostrar en la sección Módulo"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23968,7 +24211,7 @@ msgid "Sign Up is disabled"
msgstr "El registro está desactivado"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "Regístrate"
@@ -24054,8 +24297,10 @@ msgstr "Omitir"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Saltar Autorización"
@@ -24219,6 +24464,16 @@ msgstr "Modo de transporte SocketIO"
msgid "Soft-Bounced"
msgstr "Rebotes livianos"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "Algunas columnas pueden quedar cortadas al imprimir en PDF. Intente mantener el número de columnas por debajo de 10."
@@ -24286,7 +24541,7 @@ msgstr "Campo de orden {0} debe ser un nombre de campo válido"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24376,7 +24631,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Estándar"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "No se puede eliminar DocType estándar."
@@ -24392,7 +24647,7 @@ msgstr "Estándar no establecido"
msgid "Standard Permissions"
msgstr "Permisos estándares"
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "El formato de impresión estándar no se puede actualizar"
@@ -24613,7 +24868,7 @@ msgstr "Intervalo de tiempo de estadísticas"
msgid "Status"
msgstr "Estado"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Estado actualizado"
@@ -24944,7 +25199,7 @@ msgstr "Mensaje de \"éxito\""
msgid "Success title"
msgstr "Título de \"éxito\""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "¡Éxito! La nueva contraseña es correcta 👍"
@@ -25012,7 +25267,7 @@ msgstr "Nombre de usuario sugerido: {0}"
msgid "Sum"
msgstr "Suma"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Suma de {0}"
@@ -25121,7 +25376,7 @@ msgstr "Sincronización"
msgid "Syncing {0} of {1}"
msgstr "Sincronizando {0} de {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "Error de sintaxis"
@@ -25299,6 +25554,7 @@ msgstr "Registros del sistema"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25358,6 +25614,11 @@ msgctxt "Number system"
msgid "T"
msgstr "T"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25428,7 +25689,7 @@ msgstr "Tabla recortada"
msgid "Table updated"
msgstr "Tabla actualiza"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "La tabla {0} no puede estar vacía"
@@ -25690,7 +25951,7 @@ msgstr "La clave API del navegador obtenida de la Consola de Google Cloud en "
-#: frappe/database/database.py:475
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr "Los cambios han sido revertidos."
@@ -25748,11 +26009,11 @@ msgstr "Se han repetido los siguientes Días de Asignación: {0}"
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
msgstr "El siguiente Header Script añadirá la fecha actual a un elemento en 'Header HTML' con clase 'header-content'"
-#: frappe/core/doctype/data_import/importer.py:1086
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr "Los siguientes valores no son válidos: {0}. Los valores deben ser uno de {1}"
-#: frappe/core/doctype/data_import/importer.py:1043
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr "Los siguientes valores no existen para {0}: {1}"
@@ -25791,7 +26052,7 @@ msgstr "El siguiente recorrido comenzará desde donde lo dejó el usuario."
msgid "The number of seconds until the request expires"
msgstr "El número de segundos hasta que expire la solicitud"
-#: frappe/www/update-password.html:88
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "La contraseña de su cuenta ha caducado."
@@ -25816,7 +26077,7 @@ msgstr "El enlace para restablecer la contraseña ha caducado"
msgid "The reset password link has either been used before or is invalid"
msgstr "El enlace para restablecer la contraseña ya se ha utilizado antes o no es válido"
-#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "El recurso que está buscando no está disponible"
@@ -25956,6 +26217,12 @@ msgstr "Existen algunos errores al configurar el nombre, por favor póngase en c
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr "Estos anuncios aparecerán dentro de una alerta descartable debajo de la barra de navegación."
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr ""
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -26005,7 +26272,7 @@ msgstr "Este año"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Esta acción es irreversible. ¿Desea continuar?"
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "Esta acción solo está permitida para {}"
@@ -26032,7 +26299,7 @@ msgstr "Este doctype no tiene campos huérfanos que recortar"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Este doctype tiene migraciones pendientes, ejecute 'bench migrate' antes de modificar el doctype para evitar perder los cambios."
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Este documento no puede ser borrado en este momento, ya que está siendo modificado por otro usuario. Por favor, inténtelo de nuevo pasado un tiempo."
@@ -26048,7 +26315,7 @@ msgstr "Este documento tiene cambios sin guardar que podrían no aparecer en el
msgid "This document is already amended, you cannot ammend it again"
msgstr "Este documento ya está enmendado, no puede enmendarlo nuevamente"
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Este documento está actualmente bloqueado y en cola de ejecución. Por favor, inténtelo de nuevo pasado un tiempo."
@@ -26113,7 +26380,7 @@ msgstr "Este proveedor de geolocalización aún no es compatible."
msgid "This goes above the slideshow."
msgstr "Esto va encima de la presentación de diapositivas."
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Esto es un reporte predeterminado. Por favor seleccione los filtros apropiados y genere uno nuevo."
@@ -26561,7 +26828,7 @@ msgstr "Para añadir valores dinámicos desde el documento, utilice etiquetas ji
"\n"
"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Desconocido"
@@ -27921,7 +28239,7 @@ msgstr "Permiso de Usuario"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Permisos de Usuario"
@@ -28225,15 +28543,15 @@ msgstr "Valor Cambiado"
msgid "Value To Be Set"
msgstr "Valor a Establecer"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "El valor no puede ser cambiado para {0}"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "El valor no puede ser negativo para"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "El valor no puede ser negativo para {0}: {1}"
@@ -28259,6 +28577,12 @@ msgstr "El valor de este campo se establecerá como la fecha de vencimiento en l
msgid "Value must be one of {0}"
msgstr "El valor debe ser uno de {0}"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28596,7 +28920,7 @@ msgstr "Página Web"
msgid "Web Page Block"
msgstr "Bloque de página web"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr "URL de Página Web"
@@ -28994,7 +29318,7 @@ msgstr "sólo se mostrará si se habilitan los títulos de sección"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "Con Membrete"
@@ -29135,7 +29459,7 @@ msgstr "Flujo de trabajo actualizado correctamente"
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Área de Trabajo"
@@ -29323,7 +29647,7 @@ msgstr "Amarillo"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Si"
@@ -29402,7 +29726,7 @@ msgstr "Usted no está autorizado a imprimir este informe"
msgid "You are not allowed to send emails related to this document"
msgstr "No tiene permisos para enviar correos electrónicos relacionados con este documento"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "Usted no está autorizado para modificar este formulario web"
@@ -29418,7 +29742,7 @@ msgstr "No está autorizado a acceder a esta página sin iniciar sesión."
msgid "You are not permitted to access this page."
msgstr "Usted no está autorizado a acceder a esta página."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29426,7 +29750,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Ahora estás siguiendo este documento. Recibirá actualizaciones diarias por correo electrónico. Puede cambiar esto en la Configuración de usuario."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Solo se le permite actualizar el pedido, no eliminar ni añadir aplicaciones."
@@ -29471,7 +29795,7 @@ msgstr "Puedes cambiar la política de retención de {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Puede continuar con el tutorial después de explorar esta página"
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr "Puede desactivar este {0} en lugar de borrarlo."
@@ -29590,7 +29914,7 @@ msgstr "No tienes permisos de lectura o selección para {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "Usted no tiene suficientes permisos para completar la acción"
@@ -29610,7 +29934,7 @@ msgstr "No tiene permisos para cancelar todos los documentos vinculados."
msgid "You don't have access to Report: {0}"
msgstr "Usted no tiene acceso al Reporte: {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr "No tienes permiso para acceder al DocType {0} ."
@@ -29683,15 +30007,15 @@ msgstr "Usted editó esto por última vez"
msgid "You must add atleast one link."
msgstr "Debe añadir al menos un enlace."
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr "Debe iniciar sesión para utilizar este formulario."
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "Debes iniciar sesión para enviar este formulario"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Necesita el permiso '{0}' en {1} {2} para realizar esta acción."
@@ -29859,11 +30183,11 @@ msgstr "Su formulario ha sido actualizado exitosamente"
msgid "Your login id is"
msgstr "Su ID de usuario es"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr "Su nueva contraseña se ha establecido correctamente."
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr "Su antigua contraseña es incorrecta."
@@ -29877,7 +30201,7 @@ msgstr "El nombre de la organización y dirección para el pie de página del co
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar."
@@ -29889,7 +30213,7 @@ msgstr "Su sitio está en mantenimiento o se está actualizando."
msgid "Your verification code is {0}"
msgstr "Su código de verificación es {0}"
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "Cero"
@@ -29913,7 +30237,7 @@ msgstr "_doctype"
msgid "_report"
msgstr "_informe"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` solo funciona con `as_list=True` o `as_dict=True`"
@@ -29936,7 +30260,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "modificar"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "y"
@@ -29994,7 +30318,7 @@ msgid "cyan"
msgstr "cian"
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -30161,7 +30485,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "¡gzip no encontrado en RUTA! Esto es necesario para realizar una copia de seguridad."
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
@@ -30235,7 +30559,7 @@ msgid "long"
msgstr "larga"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
@@ -30425,7 +30749,7 @@ msgid "restored {0} as {1}"
msgstr "restaurado {0} como {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -30759,7 +31083,7 @@ msgstr "{0} ya ha sido dado de baja"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} ya ha sido dado de baja para {1} {2}"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} y {1}"
@@ -30767,7 +31091,7 @@ msgstr "{0} y {1}"
msgid "{0} are currently {1}"
msgstr "{0} son actualmente {1}"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} son obligatorios"
@@ -30797,7 +31121,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} canceló este documento {1}"
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30869,7 +31193,7 @@ msgstr "El campo {0} no puede establecerse como único en {1}, ya que existen va
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "No se pudo determinar el formato {0} a partir de los valores de esta columna. El valor predeterminado será {1}."
@@ -31012,7 +31336,7 @@ msgstr "{0} no es un DocType padre válido para {1}"
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} no es un campo padre válido para {1}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} no es un formato de informe válido. El formato del informe debe ser uno de los siguientes {1}"
@@ -31036,7 +31360,7 @@ msgstr "{0} no es uno de {1}"
msgid "{0} is not set"
msgstr "{0} no está establecido"
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} ahora es el formato de impresión predeterminado para el doctype {1}"
@@ -31046,7 +31370,8 @@ msgstr "{0} es uno de {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} es requerido"
@@ -31096,23 +31421,23 @@ msgstr "Hace {0} minutos"
msgid "{0} months ago"
msgstr "Hace {0} meses"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} debe ser después de {1}"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr "{0} debe comenzar con '{1}'"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr "{0} debe ser igual a '{1}'"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr "{0} debe ser uno de {1}"
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} debe ser uno de {1}"
@@ -31124,7 +31449,7 @@ msgstr "{0} debe establecerse primero"
msgid "{0} must be unique"
msgstr "{0} debe ser único"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr "{0} debe ser {1} {2}"
@@ -31153,12 +31478,12 @@ msgstr "{0} de {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} de {1} ({2} filas con hijos)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0} solamente."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} o {1}"
@@ -31195,7 +31520,7 @@ msgstr "{0} eliminado su asignación."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} el rol no tiene permiso sobre ningún doctype"
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr "{0} fila #{1}: "
@@ -31311,11 +31636,11 @@ msgstr "{0} {1} no existe, seleccione un nuevo objetivo para fusionar"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} no encontrado"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: el registro enviado no se puede eliminar. Primero debe {2} cancelarlo {3}."
@@ -31464,11 +31789,11 @@ msgstr "{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_na
msgid "{} Complete"
msgstr "{} Completo"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr "{} Código python inválido en la línea {}"
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Código python posiblemente inválido.
{}"
diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po
index 311932efc8..242b6b2398 100644
--- a/frappe/locale/fa.po
+++ b/frappe/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-07-06 19:35\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "1 گزارش"
msgid "1 comment"
msgstr "1 نظر"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "1 روز پیش"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 ساعت"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "1 ساعت پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "1 دقیقه پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "1 ماه پیش"
@@ -180,37 +180,37 @@ msgstr "1 از 2"
msgid "1 record will be exported"
msgstr "1 رکورد صادر خواهد شد"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "1 ثانیه پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "1 هفته قبل"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "1 سال پیش"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "2 ساعت پیش"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "2 ماه پیش"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "2 هفته پیش"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "2 سال پیش"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "3 دقیقه پیش"
@@ -226,7 +226,7 @@ msgstr "4 ساعت"
msgid "5 Records"
msgstr "5 رکورد"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "5 روز پیش"
@@ -556,6 +556,11 @@ msgstr ">="
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "نام DocType باید با یک حرف شروع شود و فقط شامل حروف، اعداد، فاصله، زیرخط و خط فاصله باشد."
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "یک پست برجسته باید تصویر جلد داشته باشد"
@@ -590,6 +595,13 @@ msgstr "نمادی برای این ارز. مثلاً $"
msgid "A template already exists for field {0} of {1}"
msgstr "یک الگو از قبل برای فیلد {0} از {1} وجود دارد"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "حدس زدن یک کلمه به تنهایی آسان است."
@@ -851,7 +863,7 @@ msgstr "اقدام / مسیر"
msgid "Action Complete"
msgstr "اقدام کامل شد"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "اقدام ناموفق بود"
@@ -1016,8 +1028,8 @@ msgid "Add Child"
msgstr "افزودن فرزند"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1053,7 +1065,7 @@ msgid "Add Gray Background"
msgstr "افزودن پس زمینه خاکستری"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "افزودن گروه"
@@ -1867,6 +1879,12 @@ msgstr "در ذکر نام مجاز است"
msgid "Allowed Modules"
msgstr "ماژول های مجاز"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1883,6 +1901,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr "اجازه دادن به DocType، DocType. مراقب باش!"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "قبلا ثبت شده است"
@@ -1974,7 +2028,7 @@ msgstr "اصلاح کننده"
msgid "Amendment Naming Override"
msgstr "اصلاح نامگذاری لغو"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "اصلاحیه مجاز نیست"
@@ -2063,16 +2117,6 @@ msgstr "به غیر از System Manager، نقشهایی با Set User Permis
msgid "App"
msgstr "برنامه"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "شناسه مشتری برنامه"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "راز مشتری برنامه"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2086,21 +2130,24 @@ msgstr "لوگوی برنامه"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "نام برنامه"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "برنامه برای ماژول یافت نشد: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "برنامه {0} نصب نشده است"
@@ -2346,7 +2393,7 @@ msgstr "طبق درخواست شما، حساب و داده های شما در {
msgid "Assign Condition"
msgstr "تعیین شرط"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "اختصاص دادن به"
@@ -2355,7 +2402,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "اختصاص دادن به"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "اختصاص به گروه کاربر"
@@ -2600,11 +2647,11 @@ msgstr "پیوست حذف شد"
msgid "Attachments"
msgstr "پیوست ها"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "تلاش برای اتصال به سینی QZ..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "تلاش برای راهاندازی QZ Tray..."
@@ -2656,6 +2703,11 @@ msgstr "هنگام دریافت ایمیل از حساب ایمیل، احراز
msgid "Author"
msgstr "نویسنده"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2890,7 +2942,7 @@ msgstr "آواتار"
msgid "Average"
msgstr "میانگین"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "میانگین {0}"
@@ -3768,7 +3820,7 @@ msgid "Camera"
msgstr "دوربین"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3920,11 +3972,11 @@ msgstr "قبل از ارسال نمیتوان لغو کرد. انتقال {0}
msgid "Cannot cancel {0}."
msgstr "نمیتوان {0} را لغو کرد."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "نمیتوان وضعیت docstatus را از 0 (پیشنویس) به 2 (لغو) تغییر داد"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "نمیتوان وضعیت docstatus را از 1 (ارائه شده) به 0 (پیشنویس) تغییر داد"
@@ -3952,7 +4004,7 @@ msgstr "نمیتوان محیط کار خصوصی از سایر کاربرا
msgid "Cannot delete Home and Attachments folders"
msgstr "نمیتوان پوشههای Home و Attachments را حذف کرد"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "نمیتوان حذف یا لغو کرد زیرا {0} {1} با {2} {3} {4} پیوند داده شده است"
@@ -4007,7 +4059,7 @@ msgstr "نمودارهای استاندارد را نمیتوان ویرای
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "نمیتوان یک گزارش استاندارد را ویرایش کرد. لطفا کپی کنید و یک گزارش جدید ایجاد کنید"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "نمیتوان سند لغو شده را ویرایش کرد"
@@ -4044,7 +4096,7 @@ msgstr "نمیتوان چندین چاپگر را به یک قالب چاپی
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "پیوند سند لغو شده امکان پذیر نیست: {0}"
@@ -4089,7 +4141,7 @@ msgstr "نمیتوان {0} را به روز کرد"
msgid "Cannot use sub-query in order by"
msgstr "نمیتوان از پرسمان فرعی به ترتیب استفاده کرد"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "نمیتوان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد"
@@ -4146,10 +4198,6 @@ msgstr "توضیحات دسته"
msgid "Category Name"
msgstr "نام دسته"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "سنت"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4434,6 +4482,10 @@ msgstr "پاک کردن و افزودن الگو"
msgid "Clear & Add template"
msgstr "پاک کردن و افزودن الگو"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "همه را پاک کن"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4555,8 +4607,10 @@ msgid "Client Credentials"
msgstr "اعتبار مشتری"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "شناسه مشتری"
@@ -4572,6 +4626,12 @@ msgstr "شناسه مشتری"
msgid "Client Information"
msgstr "اطلاعات مشتری"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4584,13 +4644,32 @@ msgstr "اسکریپت کلاینت"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "راز مشتری"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4675,7 +4754,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "جمع شدن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "جمع کردن همه"
@@ -4821,7 +4900,7 @@ msgstr "ستون ها / فیلدها"
msgid "Columns based on"
msgstr "ستون ها بر اساس"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5070,6 +5149,12 @@ msgstr "توضیحات شرط"
msgid "Conditions"
msgstr "شرایط"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5106,7 +5191,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "تایید"
@@ -5115,7 +5200,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "تایید"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "تأیید دسترسی"
@@ -5128,7 +5213,7 @@ msgstr "حذف اکانت را تایید کنید"
msgid "Confirm New Password"
msgstr "گذرواژه جدید را تأیید کنید"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "گذرواژه را تایید کنید"
@@ -5169,8 +5254,8 @@ msgstr "برنامه متصل"
msgid "Connected User"
msgstr "کاربر متصل"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "به سینی QZ متصل شد!"
@@ -5262,6 +5347,11 @@ msgstr "تنظیمات تماس با ما"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "گزینههای تماس، مانند «پرسمان فروش، درخواست پشتیبانی» و غیره هر کدام در یک خط جدید یا با کاما از هم جدا شدهاند."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "مخاطب"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "حاوی {0} اصلاح امنیتی است"
@@ -5280,7 +5370,7 @@ msgstr "حاوی {0} اصلاحات امنیتی است"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5362,7 +5452,7 @@ msgstr "وضعیت مشارکت"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "در کلیپ بورد کپی شد."
@@ -5403,7 +5493,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr "به سرور ایمیل خروجی متصل نشد"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "{0} پیدا نشد"
@@ -5431,7 +5521,7 @@ msgstr "ذخیره نشد، لطفاً دادههایی را که وارد ک
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "شمردن"
@@ -6136,7 +6226,7 @@ msgstr "تم تیره"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "داشبورد"
@@ -7303,6 +7393,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7548,7 +7639,7 @@ msgstr "شرایط قانون نامگذاری سند"
msgid "Document Naming Settings"
msgstr "تنظیمات نامگذاری سند"
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "سند در صف قرار گرفت"
@@ -7705,7 +7796,7 @@ msgid "Document Types and Permissions"
msgstr "انواع اسناد و مجوزها"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr "قفل سند باز شد"
@@ -7842,7 +7933,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "حساب کاربری ندارید؟"
@@ -8097,7 +8188,7 @@ msgstr "خروج"
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8649,6 +8740,12 @@ msgstr "اتصال خودکار در اسناد را فعال کنید"
msgid "Enable Comments"
msgstr "فعال کردن نظرات"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9039,7 +9136,7 @@ msgstr "لاگهای خطا"
msgid "Error Message"
msgstr "پیام خطا"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "خطا در اتصال به برنامه QZ Tray...
برای استفاده از ویژگی Raw Print، باید برنامه QZ Tray را نصب و اجرا کنید.
برای دانلود و نصب QZ Tray اینجا را کلیک کنید.
برای اطلاعات بیشتر در مورد چاپ خام اینجا را کلیک کنید."
@@ -9250,7 +9347,7 @@ msgstr ""
msgid "Executing..."
msgstr "در حال اجرا..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "زمان اجرا: {0} ثانیه"
@@ -9276,7 +9373,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "بسط دادن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "گسترش همه"
@@ -9337,7 +9434,7 @@ msgstr "زمان انقضای صفحه تصویر کد QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9702,7 +9799,7 @@ msgstr "در حال واکشی اسناد جستجوی سراسری پیشف
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9773,7 +9870,7 @@ msgstr "زمینه برای پیگیری"
msgid "Field type cannot be changed for {0}"
msgstr "نوع فیلد برای {0} قابل تغییر نیست"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "فیلد {0} در {1} وجود ندارد"
@@ -9816,7 +9913,7 @@ msgstr "نام فیلد \"{0}\" در تضاد با یک {1} از نام {2} در
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "برای فعال کردن نامگذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "نام فیلد به 64 کاراکتر محدود شده است ({0})"
@@ -9832,7 +9929,7 @@ msgstr "نام فیلد که DocType برای این فیلد پیوند خوا
msgid "Fieldname {0} appears multiple times"
msgstr "نام فیلد {0} چندین بار ظاهر میشود"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "نام فیلد {0} نمیتواند نویسه های خاصی مانند {1} داشته باشد"
@@ -10280,7 +10377,7 @@ msgstr "دنبال کردن"
msgid "Followed by"
msgstr "به دنبال"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "فیلترهای گزارش زیر دارای مقادیر گمشده هستند:"
@@ -10464,7 +10561,7 @@ msgstr "برای کاربر"
msgid "For Value"
msgstr "برای مقدار"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "برای مقایسه، از >5، <10 یا =324 استفاده کنید. برای محدوده ها، از 5:10 (برای مقادیر بین 5 و 10) استفاده کنید."
@@ -10742,7 +10839,7 @@ msgstr "از تاریخ"
msgid "From Date Field"
msgstr "از فیلد تاریخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "از نوع سند"
@@ -10802,7 +10899,7 @@ msgstr "تابع"
msgid "Function Based On"
msgstr "عملکرد بر اساس"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "تابع {0} در لیست سفید قرار ندارد."
@@ -10880,7 +10977,7 @@ msgid "Generate Random Password"
msgstr "ایجاد گذرواژه تصادفی"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "ایجاد URL پیگیری"
@@ -11309,7 +11406,7 @@ msgstr "کلاس شیء گروهی"
msgid "Group your custom doctypes under modules"
msgstr "Doctype های سفارشی خود را در زیر ماژول ها گروه بندی کنید"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "گروه بندی بر اساس {0}"
@@ -11359,7 +11456,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11588,7 +11685,7 @@ msgstr "هلوتیکا"
msgid "Helvetica Neue"
msgstr "هلوتیکا نو"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "در اینجا URL پیگیری شما است"
@@ -11630,6 +11727,7 @@ msgstr "فیلدهای پنهان"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "پنهان شدن"
@@ -11791,7 +11889,7 @@ msgstr "ابتدا قانون اولویت بالاتر اعمال خواهد ش
msgid "Highlight"
msgstr "برجسته"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "نکته: نمادها، اعداد و حروف بزرگ را در گذرواژه قرار دهید"
@@ -11874,15 +11972,20 @@ msgstr "ساعت ها"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "این ارز چگونه باید فرمت شود؟ اگر تنظیم نشود، از پیشفرض های سیستم استفاده میکند"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12563,11 +12666,11 @@ msgstr "شامل تم از برنامه ها"
msgid "Include Web View Link in Email"
msgstr "پیوند مشاهده وب را در ایمیل اضافه کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "شامل فیلترها"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "شامل تورفتگی"
@@ -12634,11 +12737,11 @@ msgstr "کاربر یا گذرواژه نادرست"
msgid "Incorrect Verification code"
msgstr "کد تأیید نادرست"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "مقدار نادرست در ردیف {0}:"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "مقدار نادرست:"
@@ -12725,7 +12828,7 @@ msgstr "درج در بالا"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "درج بعد"
@@ -12981,7 +13084,7 @@ msgstr "مقدار فیلتر نامعتبر است"
msgid "Invalid Home Page"
msgstr "صفحه اصلی نامعتبر است"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "پیوند نامعتبر"
@@ -13015,7 +13118,7 @@ msgstr "گزینه نامعتبر"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "سرور یا درگاه ایمیل خروجی نامعتبر: {0}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "فرمت خروجی نامعتبر است"
@@ -13027,9 +13130,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr "پارامترهای نامعتبر"
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "گذرواژه نامعتبر"
@@ -13109,7 +13212,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "docstatus نامعتبر است"
@@ -13133,10 +13236,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "نام فیلد نامعتبر {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13190,7 +13297,7 @@ msgstr "محتوای نامعتبر یا خراب برای درونبُرد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "آرگومان های درخواست نامعتبر"
@@ -13939,7 +14046,7 @@ msgstr "برچسب اجباری است"
msgid "Landing Page"
msgstr "صفحه فرود"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "افقی"
@@ -14235,7 +14342,7 @@ msgstr "نامه"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14549,7 +14656,7 @@ msgstr "پیوندها"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "لیست"
@@ -14863,6 +14970,11 @@ msgstr "ورود با نام کاربری و گذرواژه مجاز نمی با
msgid "Login with {0}"
msgstr "ورود با {0}"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15049,7 +15161,7 @@ msgstr "اجباری بستگی دارد"
msgid "Mandatory Depends On (JS)"
msgstr "اجباری وابسته به (JS)"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "اطلاعات اجباری از دست رفته:"
@@ -15272,7 +15384,7 @@ msgstr "معنی ارسال، لغو، اصلاح"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15470,6 +15582,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr "عنوان متا برای سئو"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15489,7 +15607,7 @@ msgstr "عنوان متا برای سئو"
msgid "Method"
msgstr "روش"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15583,7 +15701,7 @@ msgstr "فیلد جا افتاده"
msgid "Missing Fields"
msgstr "فیلدهای گمشده"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "فیلترهای از دست رفته مورد نیاز است"
@@ -15591,7 +15709,7 @@ msgstr "فیلترهای از دست رفته مورد نیاز است"
msgid "Missing Permission"
msgstr "مجوز از دست رفته"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "مقدار از دست رفته"
@@ -15657,7 +15775,7 @@ msgstr "تغییر داده شده توسط"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15957,7 +16075,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16123,7 +16241,7 @@ msgstr "تنظیمات ناوبری"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "مقدار منفی"
@@ -16252,7 +16370,7 @@ msgstr "کارت شماره جدید"
msgid "New Onboarding"
msgstr "آشناسازی جدید"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "گذرواژه جدید"
@@ -16297,7 +16415,26 @@ msgstr "نام گردش کار جدید"
msgid "New Workspace"
msgstr "محیط کار جدید"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "گذرواژه جدید نمیتواند مشابه گذرواژه قدیمی باشد"
@@ -16329,7 +16466,7 @@ msgstr "مقدار جدیدی که باید تنظیم شود"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "{0} جدید"
@@ -16480,7 +16617,7 @@ msgstr "بعد روی کلیک کنید"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "خیر"
@@ -16509,7 +16646,7 @@ msgid "No Copy"
msgstr "بدون کپی"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16768,7 +16905,7 @@ msgstr "تعداد ردیف (حداکثر 500)"
msgid "No of Sent SMS"
msgstr "شماره پیامک ارسالی"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "بدون مجوز برای {0}"
@@ -16861,6 +16998,12 @@ msgstr "غیر منفی"
msgid "Non-Conforming"
msgstr "ناسازگار"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "هیچ کدام"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "هیچ: پایان گردش کار"
@@ -16896,7 +17039,7 @@ msgstr "نه فرزندان"
msgid "Not Equals"
msgstr "برابر نیست"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "پیدا نشد"
@@ -16922,9 +17065,9 @@ msgstr "به هیچ رکوردی مرتبط نیست"
msgid "Not Nullable"
msgstr "غیرقابل تهی"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17032,7 +17175,7 @@ msgstr "در حالت توسعه دهنده نیست! در site_config.json تن
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "غیر مجاز"
@@ -17353,6 +17496,11 @@ msgstr "تنظیمات ارائه دهنده OAuth"
msgid "OAuth Scope"
msgstr "محدوده OAuth"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "OAuth فعال شده است اما مجاز نیست. لطفاً از دکمه \"Authorise API Access\" برای انجام همین کار استفاده کنید."
@@ -17602,7 +17750,7 @@ msgstr "فقط Workspace Manager میتواند فضاهای کاری عمو
msgid "Only allowed to export customizations in developer mode"
msgstr "فقط مجاز به صدور سفارشی سازی در حالت برنامه نویس است"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "فقط پیشنویس اسناد را میتوان دور انداخت"
@@ -17633,7 +17781,7 @@ msgstr "فقط گزارشهایی از نوع Report Builder قابل ویر
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "فقط DocType های استاندارد مجاز به سفارشی سازی از سفارشیسازی فرم هستند."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17641,7 +17789,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr "فقط گیرنده میتواند این کار را انجام دهد."
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "فقط {0} گزارش ایمیل شده برای هر کاربر مجاز است."
@@ -17774,7 +17922,7 @@ msgstr "باز شد"
msgid "Operation"
msgstr "عملیات"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "اپراتور باید یکی از {0} باشد"
@@ -17889,7 +18037,7 @@ msgstr "تاریخچه سازمان"
msgid "Org History Heading"
msgstr "عنوان تاریخچه سازمان"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "جهت"
@@ -17971,9 +18119,11 @@ msgstr "مالک"
msgid "PATCH"
msgstr "پچ"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "PDF"
@@ -18268,8 +18418,8 @@ msgstr "نوع سند والد برای ایجاد نمودار داشبورد
msgid "Parent is the name of the document to which the data will get added to."
msgstr "والد نام سندی است که داده ها به آن اضافه میشوند."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18374,7 +18524,7 @@ msgstr "گذرواژه برای {0} {1} {2} یافت نشد"
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "تنظیم گذرواژه"
@@ -18386,7 +18536,7 @@ msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بی
msgid "Password size exceeded the maximum allowed size."
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است."
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "گذرواژهها مطابقت ندارند"
@@ -18695,7 +18845,7 @@ msgstr "شماره تلفن"
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست."
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18866,7 +19016,7 @@ msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتما
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "لطفا پنجره های بازشو را فعال کنید"
@@ -18883,23 +19033,23 @@ msgstr "لطفاً قبل از ادامه {} را فعال کنید."
msgid "Please ensure that your profile has an email address"
msgstr "لطفا مطمئن شوید که نمایه شما دارای یک آدرس ایمیل است"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "لطفا URL توکن دسترسی را وارد کنید"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "لطفاً URL مجوز را وارد کنید"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "لطفا URL پایه را وارد کنید"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتماعی، شناسه مشتری را وارد کنید"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتماعی، Client Secret را وارد کنید"
@@ -18907,7 +19057,7 @@ msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتم
msgid "Please enter OpenID Configuration URL"
msgstr "لطفاً URL پیکربندی OpenID را وارد کنید"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "لطفا URL تغییر مسیر را وارد کنید"
@@ -18919,7 +19069,7 @@ msgstr "لطفا یک آدرس ایمیل معتبر وارد کنید."
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "لطفا گذرواژه را وارد کنید"
@@ -18932,11 +19082,11 @@ msgstr "لطفا گذرواژه را برای: {0} وارد کنید"
msgid "Please enter valid mobile nos"
msgstr "لطفا شماره تلفن همراه معتبر را وارد کنید"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "لطفا گذرواژه جدید خود را وارد کنید."
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "لطفا گذرواژه قدیمی خود را وارد کنید."
@@ -18952,7 +19102,7 @@ msgstr "لطفا برای ارسال نظر وارد شوید."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "لطفاً مطمئن شوید که اسناد ارتباطی مرجع به صورت دایره ای پیوند داده نشده اند."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "لطفاً برای دریافت آخرین سند، بازخوانی کنید."
@@ -19020,7 +19170,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید"
msgid "Please select applicable Doctypes"
msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "لطفاً حداقل 1 ستون از {0} برای مرتبسازی/گروهبندی انتخاب کنید"
@@ -19054,7 +19204,7 @@ msgstr "لطفاً یک نگاشت چاپگر برای این قالب چاپی
msgid "Please set filters"
msgstr "لطفا فیلترها را تنظیم کنید"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "لطفاً مقدار فیلترها را در جدول گزارش فیلتر تنظیم کنید."
@@ -19127,10 +19277,19 @@ msgstr "لطفاً قبل از ادامه {} را به روز کنید."
msgid "Please use a valid LDAP search filter"
msgstr "لطفاً از یک فیلتر جستجوی معتبر LDAP استفاده کنید"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "لطفاً برای اطلاعات بیشتر به https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key مراجعه کنید."
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19176,7 +19335,7 @@ msgstr "آیتم منوی پورتال"
msgid "Portal Settings"
msgstr "تنظیمات پورتال"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "عمودی"
@@ -19430,7 +19589,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19491,6 +19650,11 @@ msgstr "خطای فرمت چاپ"
msgid "Print Format Field Template"
msgstr "قالب فیلد قالب چاپ"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19501,6 +19665,10 @@ msgstr "راهنما قالب چاپ"
msgid "Print Format Type"
msgstr "نوع فرمت چاپ"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "قالب چاپ {0} غیرفعال است"
@@ -19536,7 +19704,7 @@ msgstr "اگر مقدار نداشت در پرینت نمایش داده نشو
msgid "Print Language"
msgstr "زبان چاپ"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "چاپ برای چاپگر ارسال شد!"
@@ -19554,7 +19722,7 @@ msgstr "سرور چاپ"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "تنظیمات چاپ"
@@ -19664,6 +19832,10 @@ msgstr "خصوصی"
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19786,6 +19958,10 @@ msgstr "عمومی"
msgid "Public Files (MB)"
msgstr "فایل های عمومی (MB)"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19925,7 +20101,7 @@ msgstr "کد QR"
msgid "QR Code for Login Verification"
msgstr "کد QR برای تأیید ورود"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr " سینی QZ ناموفق بود:"
@@ -20138,7 +20314,7 @@ msgstr "رتبه بندی"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "دستورات خام"
@@ -20638,7 +20814,7 @@ msgstr "ارجاع دهنده"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20967,6 +21143,8 @@ msgstr "پاسخ به همه"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20982,8 +21160,11 @@ msgstr "پاسخ به همه"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "گزارش"
@@ -21052,7 +21233,7 @@ msgstr "مدیر گزارش"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "نام گزارش"
@@ -21108,7 +21289,7 @@ msgstr "گزارش هیچ فیلد عددی ندارد، لطفاً نام گز
msgid "Report initiated, click to view status"
msgstr "گزارش شروع شد، برای مشاهده وضعیت کلیک کنید"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "به حد مجاز گزارش رسیده است"
@@ -21124,7 +21305,7 @@ msgstr "گزارش با موفقیت به روز شد"
msgid "Report was not saved (there were errors)"
msgstr "گزارش ذخیره نشد (خطاهایی وجود داشت)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر به نظر می رسد."
@@ -21345,6 +21526,31 @@ msgstr "بازنشانی به حالت پیشفرض"
msgid "Reset your password"
msgstr "گذرواژه خود را بازنشانی کنید"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21721,7 +21927,7 @@ msgstr "تغییر مسیرها"
msgid "Route: Example \"/app\""
msgstr "مسیر: مثال \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "ردیف"
@@ -22006,7 +22212,7 @@ msgstr "شنبه"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22033,7 +22239,7 @@ msgstr "ذخیره به عنوان"
msgid "Save Customizations"
msgstr "سفارشی سازی ها را ذخیره کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "ذخیره گزارش"
@@ -22209,6 +22415,11 @@ msgstr "محدوده"
msgid "Scopes"
msgstr "محدوده ها"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22489,7 +22700,7 @@ msgid "Select Column"
msgstr "ستون را انتخاب کنید"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "ستون ها را انتخاب کنید"
@@ -23030,7 +23241,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است"
msgid "Server Action"
msgstr "اقدام سرور"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطای سرور"
@@ -23096,7 +23307,7 @@ msgstr "پیشفرضهای نشست"
msgid "Session Defaults Saved"
msgstr "پیشفرضهای نشست ذخیره شد"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "نشست منقضی شده"
@@ -23154,7 +23365,7 @@ msgstr "فیلترها را تنظیم کنید"
msgid "Set Filters for {0}"
msgstr "تنظیم فیلترها برای {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23372,7 +23583,7 @@ msgstr "راهاندازی > کاربر"
msgid "Setup > User Permissions"
msgstr "راهاندازی > مجوزهای کاربر"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "تنظیم ایمیل خودکار"
@@ -23461,6 +23672,8 @@ msgstr "میانبرها"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "نمایش دهید"
@@ -23487,6 +23700,12 @@ msgstr "نمایش مقادیر مطلق"
msgid "Show All"
msgstr "نمایش همه"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "نمایش تقویم"
@@ -23604,6 +23823,12 @@ msgstr "نمایش پنجره پیش نمایش"
msgid "Show Processlist"
msgstr "نمایش لیست فرآیندها"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "نمایش خطاهای مرتبط"
@@ -23630,6 +23855,12 @@ msgstr "نمایش سرفصل های بخش"
msgid "Show Sidebar"
msgstr "نمایش نوار کناری"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23660,6 +23891,12 @@ msgstr "نمایش تور"
msgid "Show Traceback"
msgstr "نمایش ردیابی"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "نمایش هشدارها"
@@ -23713,6 +23950,12 @@ msgstr "نمایش فرم کامل به جای مدال ثبت سریع"
msgid "Show in Module Section"
msgstr "نمایش در بخش ماژول"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23798,7 +24041,7 @@ msgid "Sign Up is disabled"
msgstr "ثبت نام غیرفعال است"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "ثبت نام"
@@ -23884,8 +24127,10 @@ msgstr "پرش کنید"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "رد شدن از مجوز"
@@ -24049,6 +24294,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "برخی از ستون ها ممکن است هنگام چاپ به PDF قطع شوند. سعی کنید تعداد ستون ها کمتر از 10 باشد."
@@ -24116,7 +24371,7 @@ msgstr "فیلد مرتب سازی {0} باید یک نام فیلد معتبر
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24206,7 +24461,7 @@ msgstr "ردیابی پشته"
msgid "Standard"
msgstr "استاندارد"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "DocType استاندارد را نمیتوان حذف کرد."
@@ -24222,7 +24477,7 @@ msgstr "استاندارد تنظیم نشده است"
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "قالب استاندارد چاپ را نمیتوان به روز کرد"
@@ -24443,7 +24698,7 @@ msgstr "فاصله زمانی آمار"
msgid "Status"
msgstr "وضعیت"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "وضعیت به روز شد"
@@ -24774,7 +25029,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "موفقیت! شما خوب هستید که بروید 👍"
@@ -24842,7 +25097,7 @@ msgstr "نام کاربری پیشنهادی: {0}"
msgid "Sum"
msgstr "مجموع"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "مجموع {0}"
@@ -24951,7 +25206,7 @@ msgstr "در حال همگام سازی"
msgid "Syncing {0} of {1}"
msgstr "در حال همگام سازی {0} از {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "اشتباه نوشتاری"
@@ -25129,6 +25384,7 @@ msgstr "لاگ های سیستم"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25188,6 +25444,11 @@ msgctxt "Number system"
msgid "T"
msgstr "T"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25258,7 +25519,7 @@ msgstr "جدول بریده شده"
msgid "Table updated"
msgstr "جدول به روز شد"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "جدول {0} نمیتواند خالی باشد"
@@ -25514,7 +25775,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr "برای مجاز کردن محدودیت بهروزرسانی گزارشهای بیشتر در تنظیمات سیستم."
@@ -26505,6 +26772,12 @@ msgstr "توکن"
msgid "Token Cache"
msgstr "کش توکن"
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26532,7 +26805,7 @@ msgstr "اسناد بسیار زیاد"
msgid "Too Many Requests"
msgstr "درخواست های خیلی زیاد"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr "تغییرات بسیار زیادی در پایگاه داده در یک اقدام واحد."
@@ -26727,7 +27000,7 @@ msgstr "ردیابی نقاط عطف برای هر سند"
msgid "Tracking"
msgstr "رهگیری"
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL ردیابی تولید و در کلیپ بورد کپی شد"
@@ -26774,7 +27047,7 @@ msgstr "انتقال ها"
msgid "Translatable"
msgstr "قابل ترجمه"
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27028,10 +27301,48 @@ msgstr "URL برای مستندات یا کمک"
msgid "URL must start with http:// or https://"
msgstr "URL باید با http:// یا https:// شروع شود"
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr "آدرس صفحه"
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27081,7 +27392,7 @@ msgstr "فایل پیوست باز نمیشود. آیا آن را به عنو
msgid "Unable to read file format for {0}"
msgstr "امکان خواندن فرمت فایل برای {0} وجود ندارد"
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "به دلیل وجود حساب ایمیل از دست رفته امکان ارسال نامه وجود ندارد. لطفاً حساب ایمیل پیشفرض را از تنظیمات > حساب ایمیل تنظیم کنید"
@@ -27098,7 +27409,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد
msgid "Unassign Condition"
msgstr "شرط لغو اختصاص"
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27142,6 +27453,13 @@ msgstr ""
msgid "Unique"
msgstr "منحصر بفرد"
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "ناشناخته"
@@ -27732,7 +28050,7 @@ msgstr "مجوز کاربر"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "مجوزهای کاربر"
@@ -28036,15 +28354,15 @@ msgstr "ارزش تغییر کرد"
msgid "Value To Be Set"
msgstr "ارزش تنظیم شود"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "مقدار برای {0} قابل تغییر نیست"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "ارزش نمیتواند منفی باشد"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "مقدار نمیتواند برای {0} منفی باشد: {1}"
@@ -28070,6 +28388,12 @@ msgstr "مقدار از این فیلد به عنوان سررسید در لیس
msgid "Value must be one of {0}"
msgstr "مقدار باید یکی از {0} باشد"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28407,7 +28731,7 @@ msgstr "صفحه وب"
msgid "Web Page Block"
msgstr "مسدود کردن صفحه وب"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr "URL صفحه وب"
@@ -28805,7 +29129,7 @@ msgstr "فقط در صورتی نشان داده میشود که سرفصل
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "برای سایتهای غیرفعال، کارهای زمانبندیشده فقط یکبار در روز اجرا خواهند شد. برای جلوگیری از غیرفعال شدن خودکار زمانبندی، مقدار آن را روی 0 تنظیم کنید."
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "با سربرگ"
@@ -28946,7 +29270,7 @@ msgstr "گردش کار با موفقیت به روز شد"
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "فضای کار"
@@ -29134,7 +29458,7 @@ msgstr "زرد"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "بله"
@@ -29213,7 +29537,7 @@ msgstr "شما مجاز به چاپ این گزارش نیستید"
msgid "You are not allowed to send emails related to this document"
msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "شما مجاز به بهروزرسانی این سند فرم وب نیستید"
@@ -29229,7 +29553,7 @@ msgstr "بدون ورود به سیستم اجازه دسترسی به این ص
msgid "You are not permitted to access this page."
msgstr "شما اجازه دسترسی به این صفحه را ندارید."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29237,7 +29561,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "شما اکنون این سند را دنبال میکنید. بهروزرسانی های روزانه را از طریق ایمیل دریافت خواهید کرد. میتوانید این مورد را در تنظیمات کاربر تغییر دهید."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "شما فقط مجاز به بهروزرسانی سفارش هستید، برنامهها را حذف یا اضافه نکنید."
@@ -29282,7 +29606,7 @@ msgstr "میتوانید خط مشی حفظ را از {0} تغییر دهید
msgid "You can continue with the onboarding after exploring this page"
msgstr "پس از کاوش در این صفحه میتوانید به آشناسازی ادامه دهید"
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr "میتوانید به جای حذف این {0} آن را غیرفعال کنید."
@@ -29401,7 +29725,7 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "شما مجوز کافی برای تکمیل عمل را ندارید"
@@ -29421,7 +29745,7 @@ msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید."
msgid "You don't have access to Report: {0}"
msgstr "شما به گزارش دسترسی ندارید: {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr "شما اجازه دسترسی به {0} DocType را ندارید."
@@ -29494,15 +29818,15 @@ msgstr "شما آخرین بار این را ویرایش کردید"
msgid "You must add atleast one link."
msgstr "شما باید حداقل یک لینک اضافه کنید."
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr "برای استفاده از این فرم باید وارد سیستم شوید."
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "برای ارسال این فرم باید وارد شوید"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "برای انجام این عمل به مجوز \"{0}\" در {1} {2} نیاز دارید."
@@ -29670,11 +29994,11 @@ msgstr "فرم شما با موفقیت به روز شد"
msgid "Your login id is"
msgstr "شناسه ورود شما است"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr "گذرواژه جدید شما با موفقیت تنظیم شد."
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr "گذرواژه قدیمی شما نادرست است."
@@ -29688,7 +30012,7 @@ msgstr "نام و آدرس سازمان شما برای پاورقی ایمیل.
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خواهیم داد. اگر اطلاعات بیشتری دارید، لطفا به این ایمیل پاسخ دهید."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید."
@@ -29700,7 +30024,7 @@ msgstr "سایت شما در حال تعمیر یا بهروزرسانی اس
msgid "Your verification code is {0}"
msgstr "کد تأیید شما {0} است"
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "صفر"
@@ -29724,7 +30048,7 @@ msgstr "_doctype"
msgid "_report"
msgstr "_گزارش"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "«as_iterator» فقط با «as_list=True» یا «as_dict=True» کار میکند"
@@ -29747,7 +30071,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "اصلاح"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "و"
@@ -29805,7 +30129,7 @@ msgid "cyan"
msgstr "فیروزه ای"
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "د"
@@ -29972,7 +30296,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip در PATH یافت نشد! این برای تهیه نسخه پشتیبان لازم است."
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "ساعت"
@@ -30046,7 +30370,7 @@ msgid "long"
msgstr "طولانی"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "متر"
@@ -30236,7 +30560,7 @@ msgid "restored {0} as {1}"
msgstr "{0} به عنوان {1} بازیابی شد"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "س"
@@ -30570,7 +30894,7 @@ msgstr "{0} قبلاً اشتراک خود را لغو کرده است"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} قبلاً اشتراک {1} {2} را لغو کرده است"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} و {1}"
@@ -30578,7 +30902,7 @@ msgstr "{0} و {1}"
msgid "{0} are currently {1}"
msgstr "{0} در حال حاضر {1} هستند"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} مورد نیاز است"
@@ -30608,7 +30932,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} این سند را لغو کرد {1}"
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30680,7 +31004,7 @@ msgstr "فیلد {0} را نمیتوان در {1} منحصربهفرد ت
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "قالب {0} را نمیتوان از مقادیر این ستون تعیین کرد. پیشفرض {1}."
@@ -30823,7 +31147,7 @@ msgstr "{0} یک DocType والد معتبر برای {1} نیست"
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} یک فیلد والد معتبر برای {1} نیست"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} قالب گزارش معتبری نیست. قالب گزارش باید یکی از موارد زیر باشد {1}"
@@ -30847,7 +31171,7 @@ msgstr "{0} یکی از {1} نیست"
msgid "{0} is not set"
msgstr "{0} تنظیم نشده است"
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} اکنون قالب چاپ پیشفرض برای {1} doctype است"
@@ -30857,7 +31181,8 @@ msgstr "{0} یکی از {1} است"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} مورد نیاز است"
@@ -30907,23 +31232,23 @@ msgstr "{0} دقیقه قبل"
msgid "{0} months ago"
msgstr "{0} ماه پیش"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} باید بعد از {1} باشد"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr "{0} باید با '{1}' شروع شود"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr "{0} باید برابر با '{1}' باشد"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr "{0} نباید هیچ یک از {1} باشد"
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} باید یکی از {1} باشد"
@@ -30935,7 +31260,7 @@ msgstr "ابتدا باید {0} تنظیم شود"
msgid "{0} must be unique"
msgstr "{0} باید منحصر به فرد باشد"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr "{0} باید {1} {2} باشد"
@@ -30964,12 +31289,12 @@ msgstr "{0} از {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} از {1} ({2} ردیف با فرزندان)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr "فقط {0}."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} یا {1}"
@@ -31006,7 +31331,7 @@ msgstr "{0} تخصیص خود را حذف کرد."
msgid "{0} role does not have permission on any doctype"
msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد"
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr "{0} ردیف #{1}: "
@@ -31122,11 +31447,11 @@ msgstr "{0} {1} وجود ندارد، یک هدف جدید را برای ادغ
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده است: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} یافت نشد"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: رکورد ارسال شده قابل حذف نیست. ابتدا باید آن را {2} لغو {3} کنید."
@@ -31275,11 +31600,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{
msgid "{} Complete"
msgstr "{} کامل"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr "{} کد پایتون نامعتبر در خط {}"
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}"
diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po
index 4f396cbd76..f7bf5e61c1 100644
--- a/frappe/locale/fr.po
+++ b/frappe/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-29 17:46\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:15\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr ""
msgid "1 comment"
msgstr "1 commentaire"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "Il y a 1 jour"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 heure"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "Il y a 1 heure"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "Il y a 1 minute"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "Il y a 1 mois"
@@ -180,37 +180,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr "1 enregistrement sera exporté"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "Il y a 1 seconde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "Il ya 1 semaine"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "Il y a 1 an"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "Il y a 2 heures"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "Il y a 2 mois"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "Il y a 2 semaines"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "Il y a 2 ans"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "Il y a 3 minutes"
@@ -226,7 +226,7 @@ msgstr "4 heures"
msgid "5 Records"
msgstr "5 enregistrements"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -658,6 +658,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Un article en vedette doit avoir une image de couverture"
@@ -692,6 +697,13 @@ msgstr "Un symbole pour cette monnaie. Par exemple $"
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Un mot unique est facile à deviner."
@@ -953,7 +965,7 @@ msgstr "Action / Route"
msgid "Action Complete"
msgstr "Action terminée"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Échec de l'action"
@@ -1118,8 +1130,8 @@ msgid "Add Child"
msgstr "Ajouter une Sous-Catégorie"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1155,7 +1167,7 @@ msgid "Add Gray Background"
msgstr "Ajouter un fond gris"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Ajouter un groupe"
@@ -1970,6 +1982,12 @@ msgstr "Autorisé dans les mentions"
msgid "Allowed Modules"
msgstr "Modules autorisés"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1986,6 +2004,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Autorisation de DocType, DocType. Soyez prudent !"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Déjà Inscrit"
@@ -2077,7 +2131,7 @@ msgstr "Nouv. version en cours"
msgid "Amendment Naming Override"
msgstr "Surcharge de nommage de l'amendement"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2166,16 +2220,6 @@ msgstr ""
msgid "App"
msgstr "Application"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "ID Client de l'App"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Secret Client de l'App"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2189,21 +2233,24 @@ msgstr "Logo de l'application"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Nom de l'App"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Application introuvable pour le module : {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "App {0} n'est pas installée"
@@ -2449,7 +2496,7 @@ msgstr ""
msgid "Assign Condition"
msgstr "Attribuer une condition"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Attribuer À"
@@ -2458,7 +2505,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Attribuer À"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Affecter au groupe d'utilisateurs"
@@ -2703,11 +2750,11 @@ msgstr "Pièce jointe retirée"
msgid "Attachments"
msgstr "Pièces jointes"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Tentative de connexion au bac QZ ..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Tenter de lancer QZ Tray ..."
@@ -2759,6 +2806,11 @@ msgstr "L'authentification a échoué lors de la réception des e-mails du c
msgid "Author"
msgstr "Auteur"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2993,7 +3045,7 @@ msgstr ""
msgid "Average"
msgstr "Moyenne"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Moyenne de {0}"
@@ -3870,7 +3922,7 @@ msgid "Camera"
msgstr "Caméra"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4022,11 +4074,11 @@ msgstr "Impossible d'annuler avant de valider. Voir Transition {0}"
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4054,7 +4106,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr "Impossible de supprimer les dossiers d’accueil et les pièces jointes"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Impossible de supprimer ou d'annuler, car {0} {1} est associé à {2} {3} {4}"
@@ -4109,7 +4161,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Modification du rapport standard impossible. Veuillez le dupliquer et créer un nouveau rapport"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Impossible de modifier un document annulé"
@@ -4146,7 +4198,7 @@ msgstr "Impossible d'imprimer plusieurs imprimantes sur un seul format d'
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Impossible de lier le document annulé : {0}"
@@ -4191,7 +4243,7 @@ msgstr "Impossible de mettre à jour {0}"
msgid "Cannot use sub-query in order by"
msgstr "Impossible d'utiliser la sous-requête dans l'ordre demandé"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4248,10 +4300,6 @@ msgstr "Description de la Catégorie"
msgid "Category Name"
msgstr "Nom de la Catégorie"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Centime"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4537,6 +4585,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Tout effacer"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4658,8 +4710,10 @@ msgid "Client Credentials"
msgstr "Identifiants du Client"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "ID Client"
@@ -4675,6 +4729,12 @@ msgstr ""
msgid "Client Information"
msgstr "Informations sur le client"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4687,13 +4747,32 @@ msgstr "Script client"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Secret Client"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4778,7 +4857,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Réduire"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tout réduire"
@@ -4924,7 +5003,7 @@ msgstr "Colonnes / Champs"
msgid "Columns based on"
msgstr "Colonnes basées sur"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "La combinaison du type de subvention ( {0} ) et du type de réponse ( {1} ) n'est pas autorisée"
@@ -5173,6 +5252,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5211,7 +5296,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Confirmer"
@@ -5220,7 +5305,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Confirmer"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5233,7 +5318,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr "Confirmer le nouveau mot de passe"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5274,8 +5359,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Connecté à QZ Tray!"
@@ -5367,6 +5452,11 @@ msgstr "Paramètres du Formulaire de Contact"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Les options de contact, comme \"Demande de Ventes, Demande d'Aide\" etc., doivent être chacune sur une nouvelle ligne ou séparées par des virgules."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Contacts"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5385,7 +5475,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5467,7 +5557,7 @@ msgstr "Statut de la contribution"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Copié dans le presse-papier."
@@ -5508,7 +5598,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr "Impossible de se connecter au serveur de messagerie sortant"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "Impossible de trouver {0}"
@@ -5536,7 +5626,7 @@ msgstr "Impossible d'enregistrer, veuillez vérifier les données que vous a
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Compter"
@@ -6241,7 +6331,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Tableau de bord"
@@ -7408,6 +7498,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7653,7 +7744,7 @@ msgstr "Condition de règle de dénomination de document"
msgid "Document Naming Settings"
msgstr "Masque de numérotation des documents"
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "Document en Attente"
@@ -7810,7 +7901,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7947,7 +8038,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "Vous n'avez pas de compte?"
@@ -8202,7 +8293,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8754,6 +8845,12 @@ msgstr "Activer la liaison automatique dans les documents"
msgid "Enable Comments"
msgstr "Activer Commentaires"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9144,7 +9241,7 @@ msgstr ""
msgid "Error Message"
msgstr "Message d'erreur"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "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 ."
@@ -9355,7 +9452,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "Temps d'exécution: {0} s"
@@ -9381,7 +9478,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Développer"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Développer Tout"
@@ -9442,7 +9539,7 @@ msgstr "Heure d'expiration de l'image du QR Code"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9807,7 +9904,7 @@ msgstr "Récupération des documents de recherche globale par défaut."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9878,7 +9975,7 @@ msgstr "Champ à suivre"
msgid "Field type cannot be changed for {0}"
msgstr "Le type de champ ne peut pas être modifié pour {0}"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9921,7 +10018,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Le Nom du champ est limité à 64 caractères ({0})"
@@ -9937,7 +10034,7 @@ msgstr "Nom du champ qui sera le DocType pour ce champ lié"
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}"
@@ -10385,7 +10482,7 @@ msgstr "Suivre"
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10569,7 +10666,7 @@ msgstr "Pour l\\'Utilisateur"
msgid "For Value"
msgstr "Pour la Valeur"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)."
@@ -10847,7 +10944,7 @@ msgstr "A partir du"
msgid "From Date Field"
msgstr "Champ date"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "De type de document"
@@ -10907,7 +11004,7 @@ msgstr "Une fonction"
msgid "Function Based On"
msgstr "Fonction basée sur"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10985,7 +11082,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11414,7 +11511,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11464,7 +11561,7 @@ msgstr "HH: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11693,7 +11790,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11735,6 +11832,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Cacher"
@@ -11896,7 +11994,7 @@ msgstr "La règle de priorité supérieure sera appliquée en premier"
msgid "Highlight"
msgstr "Surligner"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Astuce: inclure des symboles, des chiffres et des majuscules dans le mot de passe"
@@ -11979,15 +12077,20 @@ msgstr "Heures"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "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"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12668,11 +12771,11 @@ msgstr "Inclure le thème des applications"
msgid "Include Web View Link in Email"
msgstr "Envoyer le lien de la vue Web du document par e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "Inclure l'indentation"
@@ -12739,11 +12842,11 @@ msgstr "Utilisateur ou mot de passe incorrect"
msgid "Incorrect Verification code"
msgstr "Code de Vérification incorrect"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12830,7 +12933,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "Insérer Après"
@@ -13086,7 +13189,7 @@ msgstr "Valeur de filtre non valide"
msgid "Invalid Home Page"
msgstr "Page d'Accueil Invalide"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Lien Invalide"
@@ -13120,7 +13223,7 @@ msgstr "Option invalide"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Format de Sortie Invalide"
@@ -13132,9 +13235,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "Mot de Passe Invalide"
@@ -13214,7 +13317,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13238,10 +13341,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Nom de champ {0} invalide"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13295,7 +13402,7 @@ msgstr "Contenu non valide ou corrompu pour l'importation"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -14044,7 +14151,7 @@ msgstr "L’Étiquette est obligatoire"
msgid "Landing Page"
msgstr "Page d'Accueil"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Paysage"
@@ -14340,7 +14447,7 @@ msgstr "Lettre"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14654,7 +14761,7 @@ msgstr "Liens"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Liste"
@@ -14968,6 +15075,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15154,7 +15266,7 @@ msgstr "Obligatoire dépend de"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Renseignements Obligatoires manquants :"
@@ -15377,7 +15489,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15575,6 +15687,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr "Meta title pour le référencement"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15594,7 +15712,7 @@ msgstr "Meta title pour le référencement"
msgid "Method"
msgstr "Méthode"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15688,7 +15806,7 @@ msgstr ""
msgid "Missing Fields"
msgstr "Champs Manquants"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15696,7 +15814,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15762,7 +15880,7 @@ msgstr "Modifié Par"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16062,7 +16180,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16228,7 +16346,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Valeur négative"
@@ -16357,7 +16475,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nouveau Mot de Passe"
@@ -16402,7 +16520,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16434,7 +16571,7 @@ msgstr "Nouvelle valeur à définir"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "Nouveau(elle) {0}"
@@ -16585,7 +16722,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Non"
@@ -16614,7 +16751,7 @@ msgid "No Copy"
msgstr "Aucune Copie"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16873,7 +17010,7 @@ msgstr "Nb de lignes (Max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Pas d'autorisation pour {0}"
@@ -16966,6 +17103,12 @@ msgstr "Non négatif"
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Aucun"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Rien: Fin du Workflow"
@@ -17001,7 +17144,7 @@ msgstr "Pas des descendants de"
msgid "Not Equals"
msgstr "Non égaux"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "Non Trouvé"
@@ -17027,9 +17170,9 @@ msgstr "Lié à aucun enregistrement"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17137,7 +17280,7 @@ msgstr "Pas en Mode Développeur! Configurez le dans site_config.json ou créez
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Pas permis"
@@ -17458,6 +17601,11 @@ msgstr "Paramètres du Fournisseur OAuth"
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17707,7 +17855,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17738,7 +17886,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Seuls les DocTypes standard peuvent être personnalisés à partir de Personnaliser le formulaire."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17746,7 +17894,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17879,7 +18027,7 @@ msgstr "Ouvert"
msgid "Operation"
msgstr "Opération"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "L'Opérateur doit être parmi {0}"
@@ -17994,7 +18142,7 @@ msgstr "Histoire Org"
msgid "Org History Heading"
msgstr "Rubriques Histoire Org"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -18076,9 +18224,11 @@ msgstr "Responsable"
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18373,8 +18523,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Parent est le nom du document auquel les données seront ajoutées."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18479,7 +18629,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18491,7 +18641,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18800,7 +18950,7 @@ msgstr "N° de Téléphone."
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18971,7 +19121,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Veuillez autoriser les pop-ups"
@@ -18988,23 +19138,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr "Veuillez vous assurer que votre profil a une adresse email"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Veuillez entrer l'URL du jeton d'accès"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Veuillez entrer l'URL d'autorisation"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Veuillez entrer l'URL de base"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Veuillez entrer le code client avant que le login social soit activé"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Veuillez entrer le secret client avant que la connexion avec les réseaux sociaux soit activé"
@@ -19012,7 +19162,7 @@ msgstr "Veuillez entrer le secret client avant que la connexion avec les réseau
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Veuillez entrer l'URL de redirection"
@@ -19024,7 +19174,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Veuillez entrer le mot de passe"
@@ -19037,11 +19187,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr "Veuillez entrer des N° de mobiles valides"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -19057,7 +19207,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Assurez-vous que les documents de communication de référence ne sont pas liés de manière circulaire."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Veuillez actualiser pour obtenir la dernière version du document."
@@ -19125,7 +19275,7 @@ msgstr "Veuillez sélectionner un filtre de date valide"
msgid "Please select applicable Doctypes"
msgstr "Veuillez sélectionner les types de docteurs applicables"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper"
@@ -19159,7 +19309,7 @@ msgstr "Veuillez définir un mappage d'imprimante pour ce format d'impre
msgid "Please set filters"
msgstr "Veuillez définir des filtres"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Veuillez définir la valeur des filtres dans le Tableau des Filtres de Rapport."
@@ -19232,10 +19382,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19281,7 +19440,7 @@ msgstr "Article du Menu Portail"
msgid "Portal Settings"
msgstr "Paramètres du Portail"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19535,7 +19694,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19596,6 +19755,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19606,6 +19770,10 @@ msgstr "Aide pour le Format d'Impression"
msgid "Print Format Type"
msgstr "Type de Format d'Impression"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "Le Format d'Impression {0} est désactivé"
@@ -19641,7 +19809,7 @@ msgstr "Cacher à l’Impression si Aucune Valeur"
msgid "Print Language"
msgstr "Langue d’Impression"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "Imprimer Envoyé à l'imprimante!"
@@ -19659,7 +19827,7 @@ msgstr "Serveur d'imprimante"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Paramètres d'impression"
@@ -19769,6 +19937,10 @@ msgstr "Privé"
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19891,6 +20063,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -20030,7 +20206,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr "QR Code pour la Vérification de Connexion"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "QZ Tray Failed:"
@@ -20243,7 +20419,7 @@ msgstr "Évaluation"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Commandes brutes"
@@ -20743,7 +20919,7 @@ msgstr "Référent"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21072,6 +21248,8 @@ msgstr "Répondre à Tous"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21087,8 +21265,11 @@ msgstr "Répondre à Tous"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Rapport"
@@ -21157,7 +21338,7 @@ msgstr "Gestionnaire de Rapports"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "Nom du Rapport"
@@ -21213,7 +21394,7 @@ msgstr "Le rapport n'a pas de champs numériques, veuillez changer le nom du
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21229,7 +21410,7 @@ msgstr "Rapport mis à jour avec succès"
msgid "Report was not saved (there were errors)"
msgstr "Le Rapport n'a pas été sauvegardé (il y a eu des erreurs)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Le rapport avec plus de 10 colonnes a une meilleure apparence en mode Paysage."
@@ -21450,6 +21631,31 @@ msgstr "Rétablir par défaut"
msgid "Reset your password"
msgstr "Réinitialisez votre mot de passe"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21826,7 +22032,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Ligne"
@@ -22111,7 +22317,7 @@ msgstr "Samedi"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22138,7 +22344,7 @@ msgstr "Enregistrer Sous"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "Enregistrer le rapport"
@@ -22314,6 +22520,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22594,7 +22805,7 @@ msgid "Select Column"
msgstr "Sélectionner la colonne"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Sélectionner des Colonnes"
@@ -23135,7 +23346,7 @@ msgstr "Séries {0} déjà utilisé dans {1}"
msgid "Server Action"
msgstr "Action du serveur"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Erreur du Serveur"
@@ -23201,7 +23412,7 @@ msgstr "Session par défaut"
msgid "Session Defaults Saved"
msgstr "Session par défaut enregistrée"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "La Session a Expiré"
@@ -23259,7 +23470,7 @@ msgstr "Définir les filtres"
msgid "Set Filters for {0}"
msgstr "Définir des filtres pour {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23477,7 +23688,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Configuration Auto Email"
@@ -23566,6 +23777,8 @@ msgstr "Raccourcis"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Afficher"
@@ -23592,6 +23805,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Afficher le calendrier"
@@ -23709,6 +23928,12 @@ msgstr "Afficher l'aperçu Popup"
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23735,6 +23960,12 @@ msgstr "Voir la Section Titres"
msgid "Show Sidebar"
msgstr "Afficher la Barre Latérale"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23765,6 +23996,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Afficher les avertissements"
@@ -23818,6 +24055,12 @@ msgstr "Afficher le formulaire complet au lieu d'un modal de saisie rapide"
msgid "Show in Module Section"
msgstr "Afficher la Section Module"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23903,7 +24146,7 @@ msgid "Sign Up is disabled"
msgstr "L'inscription est désactivée"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "S'inscrire"
@@ -23989,8 +24232,10 @@ msgstr "Sauter"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Passer autorisation"
@@ -24154,6 +24399,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24221,7 +24476,7 @@ msgstr "Champ de tri {0} doit être un nom de champ valide"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24311,7 +24566,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24327,7 +24582,7 @@ msgstr "Standard non défini"
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "Le Format d'Impression Standard ne peut pas être mis à jour"
@@ -24548,7 +24803,7 @@ msgstr "Intervalle de temps des statistiques"
msgid "Status"
msgstr "Statut"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Statut mis à jour"
@@ -24879,7 +25134,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "Succès! Vous êtes bon pour aller"
@@ -24947,7 +25202,7 @@ msgstr "Nom d'Utilisateur Suggérée : {0}"
msgid "Sum"
msgstr "Somme"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Somme de {0}"
@@ -25056,7 +25311,7 @@ msgstr "Synchronisation"
msgid "Syncing {0} of {1}"
msgstr "Synchroniser {0} sur {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25234,6 +25489,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25293,6 +25549,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25363,7 +25624,7 @@ msgstr ""
msgid "Table updated"
msgstr "Table Mise à Jour"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "La Table {0} ne peut pas être vide"
@@ -25619,7 +25880,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26612,6 +26879,12 @@ msgstr "Jeton"
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26639,7 +26912,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr "Trop de demandes"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26832,7 +27105,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26879,7 +27152,7 @@ msgstr ""
msgid "Translatable"
msgstr "Traduisible"
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27133,10 +27406,48 @@ msgstr "URL de documentation ou d'aide"
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr "URL de la page"
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27186,7 +27497,7 @@ msgstr "Impossible d'ouvrir le fichier joint. L'avez-vous exporté au format CSV
msgid "Unable to read file format for {0}"
msgstr "Impossible de lire le format de fichier pour {0}"
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "Impossible d'envoyer du courrier en raison d'un compte de messagerie manquant. Veuillez configurer le compte de messagerie par défaut dans Paramètres > Compte de messagerie"
@@ -27203,7 +27514,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}"
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27247,6 +27558,13 @@ msgstr ""
msgid "Unique"
msgstr ""
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Inconnu"
@@ -27837,7 +28155,7 @@ msgstr "Autorisation de l'Utilisateur"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Autorisations des Utilisateurs"
@@ -28141,15 +28459,15 @@ msgstr "Valeur Modifiée"
msgid "Value To Be Set"
msgstr "Valeur à Définir"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Valeur ne peut pas être modifiée pour {0}"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "La valeur ne peut pas être négative pour"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "La valeur ne peut pas être négative pour {0}: {1}"
@@ -28175,6 +28493,12 @@ msgstr "La valeur de ce champ sera définie comme date d'échéance dans la
msgid "Value must be one of {0}"
msgstr "La valeur doit être l'une des {0}"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28512,7 +28836,7 @@ msgstr "Page Web"
msgid "Web Page Block"
msgstr "Bloc de page Web"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28910,7 +29234,7 @@ msgstr "Ne seront montrés que si les titres de section sont activés"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "Avec en-tête de Lettre"
@@ -29051,7 +29375,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29239,7 +29563,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Oui"
@@ -29318,7 +29642,7 @@ msgstr "Vous n'êtes pas autorisé à imprimer ce rapport"
msgid "You are not allowed to send emails related to this document"
msgstr "Vous n'êtes pas autorisé à envoyer un email en relation avec ce document"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "Vous n'êtes pas autorisé à mettre à jour ce formulaire Web"
@@ -29334,7 +29658,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "Vous n'êtes pas autorisé à accéder à cette page."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29342,7 +29666,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Vous suivez maintenant ce document. Vous recevrez des mises à jour quotidiennes par courrier électronique. Vous pouvez modifier cela dans les paramètres de l'utilisateur."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29387,7 +29711,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29506,7 +29830,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'action"
@@ -29526,7 +29850,7 @@ msgstr "Vous n'êtes pas autorisé à annuler tous les documents liés."
msgid "You don't have access to Report: {0}"
msgstr "Vous n'avez pas accès au Rapport : {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29599,15 +29923,15 @@ msgstr "Vous avez édité ceci pour la dernière fois"
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "Vous devez vous connecter pour valider ce formulaire"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29775,11 +30099,11 @@ msgstr ""
msgid "Your login id is"
msgstr "Votre id de connexion est"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29793,7 +30117,7 @@ msgstr "Le nom de votre société et l'adresse pour le pied de l'email."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer."
@@ -29805,7 +30129,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "Zéro"
@@ -29829,7 +30153,7 @@ msgstr ""
msgid "_report"
msgstr "_rapport"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29852,7 +30176,7 @@ msgstr ""
msgid "amend"
msgstr "Nouv. version"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "et"
@@ -29910,7 +30234,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "ré"
@@ -30077,7 +30401,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30151,7 +30475,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30341,7 +30665,7 @@ msgid "restored {0} as {1}"
msgstr "restauré(e) {0} comme {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30675,7 +30999,7 @@ msgstr "{0} déjà désinscrit"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} déjà désabonné pour {1} {2}"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} et {1}"
@@ -30683,7 +31007,7 @@ msgstr "{0} et {1}"
msgid "{0} are currently {1}"
msgstr "{0} sont actuellement {1}"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} sont obligatoires"
@@ -30713,7 +31037,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30785,7 +31109,7 @@ msgstr "Le champ {0} ne peut pas être défini comme unique dans {1}, car il exi
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30928,7 +31252,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} n'est pas un format de rapport valide. Le format du rapport doit être l'un des {1} suivants"
@@ -30952,7 +31276,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} est maintenant le format d'impression par défaut pour le type de document {1}"
@@ -30962,7 +31286,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} est nécessaire"
@@ -31012,23 +31337,23 @@ msgstr "Il y a {0} minutes"
msgid "{0} months ago"
msgstr "Il y a {0} mois"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} doit être après {1}"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} doit être l'un des {1}"
@@ -31040,7 +31365,7 @@ msgstr "{0} doit être défini en premier"
msgid "{0} must be unique"
msgstr "{0} doit être unique"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31069,12 +31394,12 @@ msgstr "{0} sur {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} sur {1} ({2} lignes avec des enfants)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} ou {1}"
@@ -31111,7 +31436,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31227,11 +31552,11 @@ msgstr "{0} {1} n'existe pas, veuillez sélectionner une nouvelle cible à fusio
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} est lié aux documents validés suivants: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} introuvable"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: l'enregistrement validé ne peut pas être supprimé. Vous devez d'abord {2} l'annuler {3}."
@@ -31380,11 +31705,11 @@ msgstr "{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{fi
msgid "{} Complete"
msgstr "{} Achevée"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po
index 680a3ae9ef..4d9023b565 100644
--- a/frappe/locale/hr.po
+++ b/frappe/locale/hr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-29 17:47\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "1 Izvješće"
msgid "1 comment"
msgstr "1 komentar"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "prije 1 dan"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "prije 1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "prije 1 minutu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "prije 1 mjesec"
@@ -180,37 +180,37 @@ msgstr "1 od 2"
msgid "1 record will be exported"
msgstr "Izvest će se 1 zapis"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "prije 1 sekundu"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "prije 1 tjedan"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "prije 1 godinu"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "prije 2 sata"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "prije 2 mjeseca"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "prije 2 tjedna"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "prije 2 godine"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "prije 3 minute"
@@ -226,7 +226,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 Zapisa"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "prije 5 dana"
@@ -739,6 +739,11 @@ msgstr ">="
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Ime DocType treba započeti slovom i može se sastojati samo od slova, brojeva, razmaka, podvlaka i crtica"
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr "Instanca Sustava može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri."
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Istaknuta objava mora imati naslovnu sliku"
@@ -773,6 +778,15 @@ msgstr "Simbol za ovu valutu. Za npr. $"
msgid "A template already exists for field {0} of {1}"
msgstr "Predložak već postoji za polje {0} od {1}"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr "Niz identifikatora verzije za klijentski softver.\n"
+"
\n"
+"Vrijednost treba promijeniti pri svakom ažuriranju klijentskog softvera s istim ID softvera."
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Riječ samu po sebi lako je pogoditi."
@@ -1034,7 +1048,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1199,8 +1213,8 @@ msgid "Add Child"
msgstr "Dodaj Podređeni"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1236,7 +1250,7 @@ msgid "Add Gray Background"
msgstr "Dodaj Sivu Pozadinu"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Dodaj Grupu"
@@ -2051,6 +2065,12 @@ msgstr "Dozvoljeno u Spominjanju"
msgid "Allowed Modules"
msgstr "Dozvoljeni Moduli"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr "Dopušteni javni klijentski izvori"
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -2067,6 +2087,42 @@ msgstr "Dozvoljeno ugrađivanje domena"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Dopuštanje DocType, DocType. Budite pažljivi!"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-authorization-server. Referenca: RFC8414"
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-protected-resource. Referenca: RFC9728"
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr "Omogućava klijentima da se registruju bez ručne intervencije. Registracija kreira OAuth Client unos. Referenca: RFC7591"
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr "Omogućava klijentima da ovo vide kao autorizacijski server prilikom upita krajnjoj tački /.well-known/oauth-protected-resource."
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na društvene mreže kao servera za autorizaciju."
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr "Omogućuje preskakanje autorizacije ako korisnik ima aktivne tokene."
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Već Registrovan"
@@ -2158,7 +2214,7 @@ msgstr "Izmjena"
msgid "Amendment Naming Override"
msgstr "Zaobiđi izmjenu Imenovanja"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Izmjena nije Dozvoljena"
@@ -2247,16 +2303,6 @@ msgstr "Osim Upravitelja Sistema, uloge s pravom Postavi korisničke dozvole mog
msgid "App"
msgstr "Aplikacija"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "ID Aplikacije Klijenta"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Tajna Aplikacije Klijenta"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2270,21 +2316,24 @@ msgstr "Logotip aplikacije"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Naziv Aplikacije"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr "Naziv Aplikacije (Ime Klijenta)"
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2530,7 +2579,7 @@ msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom
msgid "Assign Condition"
msgstr "Dodijeli Uslov"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Dodijeli"
@@ -2539,7 +2588,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodijeli"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Dodijeli Korisničkoj Grupi"
@@ -2784,11 +2833,11 @@ msgstr "Prilog Uklonjen"
msgid "Attachments"
msgstr "Prilozi"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Pokušaj povezivanja na QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Pokušaj pokretanja QZ Tray..."
@@ -2840,6 +2889,11 @@ msgstr "Autentifikacija nije uspjela prilikom primanja e-pošte sa naloga e-poš
msgid "Author"
msgstr "Autor"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr "Autorizacija"
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3074,7 +3128,7 @@ msgstr "Avatar"
msgid "Average"
msgstr "Prosjek"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Prosjek {0}"
@@ -3951,7 +4005,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4103,11 +4157,11 @@ msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}"
msgid "Cannot cancel {0}."
msgstr "Nije moguće otkazati {0}."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)"
@@ -4135,7 +4189,7 @@ msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika"
msgid "Cannot delete Home and Attachments folders"
msgstr "Nije moguće izbrisati mape Početna i Prilozi"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}"
@@ -4190,7 +4244,7 @@ msgstr "Nije moguće uređivati Standardne Grafikone"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Nije moguće uređivati standard izvještaj.Dupliciraj i kreiraj novi izvještaj"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Nije moguće uređivati otkazani dokument"
@@ -4227,7 +4281,7 @@ msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača."
msgid "Cannot import table with more than 5000 rows."
msgstr "Nije moguće uvesti tablicu s više od 5000 redaka."
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Nije moguće povezati otkazani dokument: {0}"
@@ -4272,7 +4326,7 @@ msgstr "Nije moguće ažurirati {0}"
msgid "Cannot use sub-query in order by"
msgstr "Nije moguće koristiti podupit po redoslijedu"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po"
@@ -4329,10 +4383,6 @@ msgstr "Opis Kategorije"
msgid "Category Name"
msgstr "Naziv Kategorije"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Cent"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4618,6 +4668,10 @@ msgstr "Očisti & Dodaj Šablon"
msgid "Clear & Add template"
msgstr "Očisti & Dodaj Šablon"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Obriši Sve"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4739,8 +4793,10 @@ msgid "Client Credentials"
msgstr "Akreditivi Klijenta"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "ID Klijenta"
@@ -4756,6 +4812,12 @@ msgstr "Id. Klijenta"
msgid "Client Information"
msgstr "Informacije o Klijentu"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr "Metapodaci Klijenta"
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4768,13 +4830,32 @@ msgstr "Skripta klijenta"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Tajna Klijenta"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr "Osnovna Tajna Klijenta"
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr "Upis Tajne Klijenta"
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr "URI Klijenta"
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4859,7 +4940,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sklopi Sve"
@@ -5005,7 +5086,7 @@ msgstr "Kolone / Polja"
msgid "Columns based on"
msgstr "Kolone zasnovane na"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "Kombinacija tipa odobrenja ({0}) i tipa odgovora ({1}) nije dozvoljena"
@@ -5254,6 +5335,12 @@ msgstr "Opis Stanja"
msgid "Conditions"
msgstr "Uslovi"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr "Konfiguracija"
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5292,7 +5379,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Potvrdi"
@@ -5301,7 +5388,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Potvrdi"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Potvrdi Pristup"
@@ -5314,7 +5401,7 @@ msgstr "Potvrdi Brisanje Računa"
msgid "Confirm New Password"
msgstr "Potvrdi Novu Lozinku"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Potvrdi Lozinku"
@@ -5355,8 +5442,8 @@ msgstr "Povezana Aplikacija"
msgid "Connected User"
msgstr "Povezani Korisnik"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Povezano na QZ Tray!"
@@ -5448,6 +5535,11 @@ msgstr "Postavke Kontaktirajte nas"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Opcije za Kontakt, kao što su \"Upit za Prodaju, Upit za Podršku\" itd., svaka u novom redu ili odvojena zarezima."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Kontakti"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "Sadrži {0} sigurnosnu ispravku"
@@ -5466,7 +5558,7 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5548,7 +5640,7 @@ msgstr "Status Doprinosa"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Kontrolira mogu li se novi korisnici prijaviti pomoću ovog ključa prijave putem društvenih mreža. Ako se ne postavljaju, poštuju se Postavke Web Stranice."
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Kopirano u Međuspremnik."
@@ -5589,7 +5681,7 @@ msgstr "Ispravna verzija:"
msgid "Could not connect to outgoing email server"
msgstr "Povezivanje sa serverom odlazne e-pošte nije uspjelo"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "Nije moguće pronaći {0}"
@@ -5617,7 +5709,7 @@ msgstr "Nije moguće spremiti, provjerite podatke koje ste unijeli"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Broj"
@@ -6322,7 +6414,7 @@ msgstr "Tamna Tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Nadzorna Tabla"
@@ -7492,6 +7584,7 @@ msgstr "Dokument Status sljedećih stanja je promijenjen:
{0}
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."
msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...
Morate imati instaliranu i pokrenutu aplikaciju QZ Tray da biste koristili funkciju Direktni Ispis.
Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju."
@@ -9440,7 +9539,7 @@ msgstr "Izvršava se Kod"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "Vrijeme izvršenja: {0} sek"
@@ -9466,7 +9565,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Rasklopi Sve"
@@ -9527,7 +9626,7 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9892,7 +9991,7 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9963,7 +10062,7 @@ msgstr "Polje za Praćenje"
msgid "Field type cannot be changed for {0}"
msgstr "Tip polja se ne može promijeniti za {0}"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "Polje {0} ne postoji na {1}"
@@ -10006,7 +10105,7 @@ msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
@@ -10022,7 +10121,7 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze."
msgid "Fieldname {0} appears multiple times"
msgstr "Ime polja {0} pojavljuje se više puta"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
@@ -10470,7 +10569,7 @@ msgstr "Prati"
msgid "Followed by"
msgstr "Praćen od"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "Sljedeći Filteri Izvještaja nemaju vrijednosti:"
@@ -10655,7 +10754,7 @@ msgstr "Za Korisnika"
msgid "For Value"
msgstr "Za Vrijednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
@@ -10933,7 +11032,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -10993,7 +11092,7 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
@@ -11071,7 +11170,7 @@ msgid "Generate Random Password"
msgstr "Generiši Nasumičnu Lozinku"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11500,7 +11599,7 @@ msgstr "Objekt Klase Grupe"
msgid "Group your custom doctypes under modules"
msgstr "Grupiraj vaše prilagođene tipove dokumenata pod modulima"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "Grupirano po {0}"
@@ -11550,7 +11649,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11779,7 +11878,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "Ovdje je vaš URL-a za praćenje"
@@ -11821,6 +11920,7 @@ msgstr "Sakrivena Polja"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Sakrij"
@@ -11982,7 +12082,7 @@ msgstr "Prvo će se primijeniti pravilo višeg prioriteta"
msgid "Highlight"
msgstr "Istaknuto"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Savjet: Uključi simbole, brojeve i velika slova u lozinku"
@@ -12065,15 +12165,20 @@ msgstr "Sati"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "Kako treba formatirati ovu valutu? Ako nije postavljeno, koristit će se standard postavke sistema"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr "Naziv namijenjen je za prikaz krajnjem korisniku."
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga možete kreirati samo za sebe. Kliknite na dugme Kreiraj Radni Prostor da biste ga kreirali.
"
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12754,11 +12859,11 @@ msgstr "Uključite Teme iz Aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi Web Pregled vezu u e-poštu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "Uključi Filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "Uključi Uvlačenje"
@@ -12825,11 +12930,11 @@ msgstr "Netačan korisnik ili lozinka"
msgid "Incorrect Verification code"
msgstr "Netačan Verifikacioni Kod"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "Netačna vrijednost u redu {0}:"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "Netačna vrijednost:"
@@ -12916,7 +13021,7 @@ msgstr "Umetni Iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "Umetni Poslije"
@@ -13172,7 +13277,7 @@ msgstr "Nevažeća Vrijednost Filtera"
msgid "Invalid Home Page"
msgstr "Nevažeća Početna Stranica"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Nevažeća Veza"
@@ -13206,7 +13311,7 @@ msgstr "Nevažeća Opcija"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "Nevažeći Server Odlazne Pošte ili port: {0}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Nevažeći Izlazni Format"
@@ -13218,9 +13323,9 @@ msgstr "Nevažeće Nadjačavanje"
msgid "Invalid Parameters."
msgstr "Nevažeći Parametri."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "Nevažeća Lozinka"
@@ -13300,7 +13405,7 @@ msgstr "Nevažeća vrsta uvjeta u ugniježđenim filtrima: {0}"
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'."
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13324,10 +13429,14 @@ msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field'
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Nevažeći naziv polja u funkciji: {0}. Dopušteni su samo jednostavni nazivi polja."
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr "Nevažeći naziv polja: {0}"
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr "Nevažeći tip polja: {0}"
@@ -13381,7 +13490,7 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahtjeva"
@@ -14130,7 +14239,7 @@ msgstr "Oznaka je obavezna"
msgid "Landing Page"
msgstr "Početna Stranica"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Pejzaž"
@@ -14426,7 +14535,7 @@ msgstr "Pismo"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14740,7 +14849,7 @@ msgstr "Veze"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Lista"
@@ -15054,6 +15163,11 @@ msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena."
msgid "Login with {0}"
msgstr "Prijavi se sa {0}"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr "URI Logotipa"
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15240,7 +15354,7 @@ msgstr "Obavezno Zavisi od"
msgid "Mandatory Depends On (JS)"
msgstr "Obavezno Zavisi od (JS)"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Nedostaju obavezne informacije:"
@@ -15463,7 +15577,7 @@ msgstr "Značenje Podnesi, Otkaži, Izmjeni"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15661,6 +15775,12 @@ msgstr "Meta Naziv"
msgid "Meta title for SEO"
msgstr "Meta naslov za SEO"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr "Metapodaci"
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15680,7 +15800,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr "Metoda nije Dozvoljena"
@@ -15774,7 +15894,7 @@ msgstr "Nedostaje Polje"
msgid "Missing Fields"
msgstr "Nedostajuća Polja"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "Obavezni Nedostajući Filteri"
@@ -15782,7 +15902,7 @@ msgstr "Obavezni Nedostajući Filteri"
msgid "Missing Permission"
msgstr "Nedostaje Dozvola"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "Nedostaje Vrijednost"
@@ -15848,7 +15968,7 @@ msgstr "Izmijenio"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16148,7 +16268,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16316,7 +16436,7 @@ msgstr "Postavke Navigacije"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Negativna Vrijednost"
@@ -16445,7 +16565,7 @@ msgstr "Nova Numerička Kartica"
msgid "New Onboarding"
msgstr "Nova Introdukcija"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nova Lozinka"
@@ -16490,7 +16610,28 @@ msgstr "Novi Naziv Radnog Toka"
msgid "New Workspace"
msgstr "Novi Radni Prostor"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr "Popis dopuštenih URL-ova javnih klijenata odvojen je novim retkom (npr. https://frappe.io) ili * za prihvaćanje svih.\n"
+"
\n"
+"Javni klijenti su prema zadanim postavkama ograničeni."
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr "Popis vrijednosti opsega odvojen novim retkom."
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr "Popis nizova koji predstavljaju načine kontaktiranja osoba odgovornih za ovog klijenta, obično adrese e-pošte, odvojen novim retcima."
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "Nova lozinka ne može biti ista kao stara lozinka"
@@ -16522,7 +16663,7 @@ msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "Novi {0}"
@@ -16673,7 +16814,7 @@ msgstr "Dalje na klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16702,7 +16843,7 @@ msgid "No Copy"
msgstr "Ne Kopiraj"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16961,7 +17102,7 @@ msgstr "Broj Redova (Max. 500)"
msgid "No of Sent SMS"
msgstr "Broj Poslanih SMS-ova"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Nema dozvole za {0}"
@@ -17054,6 +17195,12 @@ msgstr "Nije Negativno"
msgid "Non-Conforming"
msgstr "Neusklađen"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Nijedan"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Ništa: Kraj Radnog Toka"
@@ -17089,7 +17236,7 @@ msgstr "Nisu Podređeni Od"
msgid "Not Equals"
msgstr "Nije Jednako"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije Pronađeno"
@@ -17115,9 +17262,9 @@ msgstr "Nije povezano ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Nemože se Nulirati"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17225,7 +17372,7 @@ msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili naprav
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17546,6 +17693,11 @@ msgstr "OAuth Postavke Dobavljača"
msgid "OAuth Scope"
msgstr "OAuth Opseg"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr "OAuth Postavke"
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "OAuth je omogućen, ali nije ovlašten. Koristi dugme \"Odobri API Pristup\" da učinite isto."
@@ -17795,7 +17947,7 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
msgid "Only allowed to export customizations in developer mode"
msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "Mogu se odbaciti samo nacrti dokumenata"
@@ -17826,7 +17978,7 @@ msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja"
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr "Samo Administrator može izbrisati standardni DocType."
@@ -17834,7 +17986,7 @@ msgstr "Samo Administrator može izbrisati standardni DocType."
msgid "Only the assignee can complete this to-do."
msgstr "Samo dodjeljeni može izvršiti ovu obavezu."
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "Dozvoljeni su samo {0} izvještaja poslatih e-poštom po korisniku."
@@ -17967,7 +18119,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
@@ -18082,7 +18234,7 @@ msgstr "Istorija"
msgid "Org History Heading"
msgstr "Naslov Povijesti Organizacije"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "Orijentacija"
@@ -18164,9 +18316,11 @@ msgstr "Vlasnik"
msgid "PATCH"
msgstr "ZAKRPA"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "PDF"
@@ -18461,9 +18615,9 @@ msgstr "Tip nadređenog dokumenta je obavezan za kreiranje grafikona nadzorne ta
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
-msgstr "Grupiranje roditelj-djetetu ili dijete-roditelju nije dopušteno."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
+msgstr "Nadređeni-Podređeni ili Podređeni-Drugi Podrđeni nije dopušteno."
#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
@@ -18567,7 +18721,7 @@ msgstr "Lozinka nije pronađena za {0} {1} {2}"
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "Lozinka postavljena"
@@ -18579,7 +18733,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "Lozinke se ne podudaraju"
@@ -18888,7 +19042,7 @@ msgstr "Broj Telefona."
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -19059,7 +19213,7 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Omogući iskačuće prozore"
@@ -19076,23 +19230,23 @@ msgstr "Omogući {} prije nego nastavite."
msgid "Please ensure that your profile has an email address"
msgstr "Potvrdi da vaš profil ima adresu e-pošte"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Unesi URL Pristupnog Tokena"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Unesi URL Autorizacije"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Unesi Osnovni URL"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Unesi ID Klijenta prije nego što se omogući prijava na društvene mreže"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim mrežama"
@@ -19100,7 +19254,7 @@ msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim
msgid "Please enter OpenID Configuration URL"
msgstr "Unesi URL Konfiguracije OpenID-a"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Unesi URL Preusmjeravanja"
@@ -19112,7 +19266,7 @@ msgstr "Unesite ispravnu adresu e-pošte."
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr "Unesi vašu e-poštu i poruku kako bismo vam mogli odgovoriti. Hvala!"
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Unesi Lozinku"
@@ -19125,11 +19279,11 @@ msgstr "Unesi Lozinku za: {0}"
msgid "Please enter valid mobile nos"
msgstr "Unesi važeće brojeve mobitela"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "Unesi novu lozinku."
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "Unesi staru lozinku."
@@ -19145,7 +19299,7 @@ msgstr "Prijavi se da biste objavili komentar."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Osvježi da dobijete najnoviji dokument."
@@ -19213,7 +19367,7 @@ msgstr "Odaberi važeći filter datuma"
msgid "Please select applicable Doctypes"
msgstr "Odaberi primjenjive Dokumente"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje"
@@ -19247,7 +19401,7 @@ msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisa
msgid "Please set filters"
msgstr "Postavi filtere"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja."
@@ -19320,10 +19474,19 @@ msgstr "Ažuriraj {} prije nego nastavite."
msgid "Please use a valid LDAP search filter"
msgstr "Koristi važeći LDAP filter za pretraživanje"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr "Za preuzimanje sigurnosne kopije datoteka koristite sljedeće poveznice."
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key."
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr "URI Pravila"
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19369,7 +19532,7 @@ msgstr "Stavka Menija Portala"
msgid "Portal Settings"
msgstr "Postavke Portala"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "Portret"
@@ -19623,7 +19786,7 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19684,6 +19847,11 @@ msgstr "Greška u Ispis Formatu"
msgid "Print Format Field Template"
msgstr "Šablon Polja Ispis Formata"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr "Format Ispisa za"
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19694,6 +19862,10 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr "Format Ispisa nije pronađen"
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "Ispis Format {0} je onemogućen"
@@ -19729,7 +19901,7 @@ msgstr "Sakrij ispis ako nema vrijednost"
msgid "Print Language"
msgstr "Jezik Ispisa"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "Ispis Poslan na pisač!"
@@ -19747,7 +19919,7 @@ msgstr "Ispisni Server"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Postavke Ispisa"
@@ -19857,6 +20029,10 @@ msgstr "Privatno"
msgid "Private Files (MB)"
msgstr "Privatne datoteke (MB)"
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr "Sigurnosna Kopija Privatnih Datoteka:"
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19979,6 +20155,10 @@ msgstr "Javno"
msgid "Public Files (MB)"
msgstr "Javne Datoteke (MB)"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr "Sigurnosna Kopija Javnih Datoteka:"
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -20118,7 +20298,7 @@ msgstr "QR Kod"
msgid "QR Code for Login Verification"
msgstr "QR Kod za Provjeru Prijave"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "QZ Tray neuspješan: "
@@ -20331,7 +20511,7 @@ msgstr "Ocjena"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Direktne Naredbe"
@@ -20831,7 +21011,7 @@ msgstr "Preporučitelj"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21160,6 +21340,8 @@ msgstr "Odgovori Svima"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21175,8 +21357,11 @@ msgstr "Odgovori Svima"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Izvještaj"
@@ -21245,7 +21430,7 @@ msgstr "Upravitelj izvještaja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "Naziv Izvještaja"
@@ -21301,7 +21486,7 @@ msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "Granica Izvještaja Dostignuta"
@@ -21317,7 +21502,7 @@ msgstr "Izvještaj je uspješno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izvještaj nije spremljen (bilo je grešaka)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada."
@@ -21538,6 +21723,31 @@ msgstr "Vrati na Standard Postavke"
msgid "Reset your password"
msgstr "Poništi Lozinku"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr "Resurs"
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr "Dokumentacija Resursa"
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr "Naziv Resursa"
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr "URI Pravila Resursa"
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr "URI Uvjeta Pružanja Usluge Resursa"
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21914,7 +22124,7 @@ msgstr "Preusmjeravanja Rute"
msgid "Route: Example \"/app\""
msgstr "Ruta: Primjer \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Red"
@@ -22199,7 +22409,7 @@ msgstr "Subota"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22226,7 +22436,7 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "Spremi Izvještaj"
@@ -22402,6 +22612,11 @@ msgstr "Obim"
msgid "Scopes"
msgstr "Opsezi"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr "Podržani Opsezi"
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22682,7 +22897,7 @@ msgid "Select Column"
msgstr "Odaberi Kolonu"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Odaberi Kolone"
@@ -23223,7 +23438,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23289,7 +23504,7 @@ msgstr "Standard Sesije"
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "Sesija Istekla"
@@ -23347,7 +23562,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -23589,7 +23804,7 @@ msgstr "Postavljanje> Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -23678,6 +23893,8 @@ msgstr "Prečice"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Prikaži"
@@ -23704,6 +23921,12 @@ msgstr "Prikaži Apsolutne Vrijednosti"
msgid "Show All"
msgstr "Prikaži Sve"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr "Prikaži Metapodatke Autentifikacijskog Poslužitelja"
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Prikaži Kalendar"
@@ -23821,6 +24044,12 @@ msgstr "Prikaži skočni prozor za pregled"
msgid "Show Processlist"
msgstr "Prikaži Procesnu Listu"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr "Prikaži metapodatke zaštićenih resursa"
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "Prikaži Povezane Greške"
@@ -23847,6 +24076,12 @@ msgstr "Prikaži Naslove Odjeljaka"
msgid "Show Sidebar"
msgstr "Prikaži Bočnu Traku"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr "Prikaži ključ za društvenu prijavu kao autorizacijski poslužitelj"
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23877,6 +24112,12 @@ msgstr "Prikaži Introdukciju"
msgid "Show Traceback"
msgstr "Prikaži Povratno Praćenje"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr "Prikaži Vrijednosti preko Grafikona"
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Prikaži Upozorenja"
@@ -23930,6 +24171,12 @@ msgstr "Prikaži punu formu umjesto modalnog za brzi unos"
msgid "Show in Module Section"
msgstr "Prikaži u Sekciji Modula"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr "Prikaži u metapodacima resursa"
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -24015,7 +24262,7 @@ msgid "Sign Up is disabled"
msgstr "Prijava je onemogućena"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "Prijavi se"
@@ -24101,8 +24348,10 @@ msgstr "Preskoči"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Preskoči Autorizaciju"
@@ -24266,6 +24515,16 @@ msgstr "SocketIO Transport Način"
msgid "Soft-Bounced"
msgstr "Mekano Odbijeno"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr "ID Softvera"
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr "Verzija Softvera"
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "Neke kolone mogu biti odsječene prilikom ispisa u PDF. Pokušaj zadržati broj kolona ispod 10."
@@ -24333,7 +24592,7 @@ msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24423,7 +24682,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standard"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "Standardni DocType se ne može izbrisati."
@@ -24439,7 +24698,7 @@ msgstr "Standard nije Postavljeno"
msgid "Standard Permissions"
msgstr "Standard Dozvole"
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "Standard Ispis Format ne može se ažurirati"
@@ -24660,7 +24919,7 @@ msgstr "Vremenski Interval Statistike"
msgid "Status"
msgstr "Status"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Status Ažuriran"
@@ -24991,7 +25250,7 @@ msgstr "Poruka Uspjeha"
msgid "Success title"
msgstr "Naziv Uspjeha"
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "Uspjeh! Spremni ste 👍"
@@ -25059,7 +25318,7 @@ msgstr "Predloženo Korisničko Ime: {0}"
msgid "Sum"
msgstr "Suma"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Suma od {0}"
@@ -25168,7 +25427,7 @@ msgstr "Sinhronizacija u toku"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizira se {0} od {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "Greška Sintakse"
@@ -25346,6 +25605,7 @@ msgstr "Sistemski Zapisnici"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25405,6 +25665,11 @@ msgctxt "Number system"
msgid "T"
msgstr "T"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr "URI Uvjeta Pružanja Usluge"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25475,7 +25740,7 @@ msgstr "Tabela Optimizirana"
msgid "Table updated"
msgstr "Tabela Ažurirana"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25737,7 +26002,7 @@ msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod "
-#: frappe/database/database.py:475
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr "Promjene su vraćene."
@@ -25795,11 +26060,11 @@ msgstr "Sljedeći Dani Dodjele su ponovljeni: {0}"
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
msgstr "Sljedeća Skripta Zaglavlja će dodati trenutni datum elementu u 'HTML-u zaglavlja' s klasom 'header-content'"
-#: frappe/core/doctype/data_import/importer.py:1086
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr "Sljedeće vrijednosti su nevažeće: {0}. Vrijednosti moraju biti jedna od {1}"
-#: frappe/core/doctype/data_import/importer.py:1043
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr "Sljedeće vrijednosti ne postoje za {0}: {1}"
@@ -25838,7 +26103,7 @@ msgstr "Sljedeća introdukcija će početi od mjesta gdje je korisnik stao."
msgid "The number of seconds until the request expires"
msgstr "Broj sekundi do isteka zahtjeva"
-#: frappe/www/update-password.html:88
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "Lozinka vašeg računa je istekla."
@@ -25863,7 +26128,7 @@ msgstr "Veza za poništavanje lozinke je istekla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
-#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26003,6 +26268,12 @@ msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru"
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr "Te će se obavijesti pojaviti unutar upozorenja koje se može odbaciti ispod navigacijske trake."
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr "Ova polja se koriste za pružanje metapodataka poslužitelja resursa klijentima koji upituju krajnju točku \"dobro poznatog zaštićenog resursa\"."
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -26052,7 +26323,7 @@ msgstr "Ove Godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
@@ -26079,7 +26350,7 @@ msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena."
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena."
@@ -26095,7 +26366,7 @@ msgstr "Ovaj dokument ima nespremljene promjene koje se možda neće pojaviti u
msgid "This document is already amended, you cannot ammend it again"
msgstr "Ovaj dokument je već izmijenjen, ne možete ga ponovo mijenjati"
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Ovaj dokument je trenutno zaključan i na čekanju za izvršenje. Molimo pokušajte ponovo nakon nekog vremena."
@@ -26160,7 +26431,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo ide iznad projekcije slajdova."
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
@@ -26608,7 +26879,7 @@ msgstr "Za dodavanje dinamičkih vrijednosti iz dokumenta upotrijebite jinja ozn
"\n"
"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr "Jedinstveni ID koji dodjeljuje klijentski programer koristi se za identifikaciju klijentskog softvera koji se dinamički registrira.\n"
+"
\n"
+"Trebao bi ostati isti u više verzija ili ažuriranja softvera."
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Nepoznato"
@@ -27968,7 +28292,7 @@ msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Korisničke Dozvole"
@@ -28272,15 +28596,15 @@ msgstr "Vrijednost Promijenjena"
msgid "Value To Be Set"
msgstr "Vrijednost Koju Treba Postaviti"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Vrijednost se ne može promijeniti za {0}"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "Vrijednost ne može biti negativna za"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "Vrijednost ne može biti negativna za {0}: {1}"
@@ -28306,6 +28630,12 @@ msgstr "Vrijednost iz ovog polja će biti postavljena kao krajnji datum za Uradi
msgid "Value must be one of {0}"
msgstr "Vrijednost mora biti jedna od {0}"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, tajna klijenta se ne daje klijentu, a razmjena tokena koristi PKCE."
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28643,7 +28973,7 @@ msgstr "Web Stranica"
msgid "Web Page Block"
msgstr "Blok Web Stranice"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr "URL Web Stranice"
@@ -29041,7 +29371,7 @@ msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni"
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Izvršit će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača."
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "Sa Zaglavljem"
@@ -29182,7 +29512,7 @@ msgstr "Radni Tok je uspješno ažuriran"
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Radni Prostor"
@@ -29370,7 +29700,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29449,7 +29779,7 @@ msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
msgid "You are not allowed to send emails related to this document"
msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
@@ -29465,7 +29795,7 @@ msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave."
msgid "You are not permitted to access this page."
msgstr "Nije vam dozvoljen pristup ovoj stranici."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dopuštenje za pristup ovom resursu. Prijavite se za pristup"
@@ -29473,7 +29803,7 @@ msgstr "Nemate dopuštenje za pristup ovom resursu. Prijavite se za pristup"
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije."
@@ -29518,7 +29848,7 @@ msgstr "Pravila zadržavanja možete promijeniti u {0}."
msgid "You can continue with the onboarding after exploring this page"
msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu"
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete."
@@ -29637,7 +29967,7 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite radnju"
@@ -29657,7 +29987,7 @@ msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup Izvještaju: {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvolu za pristup {0} DocType."
@@ -29730,15 +30060,15 @@ msgstr "Zadnji put ste uređivali ovo"
msgid "You must add atleast one link."
msgstr "Morate dodati barem jednu vezu."
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "Morate se prijaviti da pošaljete ovu formu"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Potrebna vam je '{0}' dozvola za {1} {2} da biste izvršili ovu radnju."
@@ -29906,11 +30236,11 @@ msgstr "Vaša forma je uspješno ažurirana"
msgid "Your login id is"
msgstr "Vaš Id za prijavu je"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr "Vaša nova lozinka je uspješno postavljena."
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr "Vaša stara lozinka nije tačna."
@@ -29924,7 +30254,7 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
@@ -29936,7 +30266,7 @@ msgstr "Vaša je stranica u toku održavanja ili ažuriranja."
msgid "Your verification code is {0}"
msgstr "Vaš verifikacioni kod je {0}"
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "Nula"
@@ -29960,7 +30290,7 @@ msgstr "_doctype"
msgid "_report"
msgstr "_izvješće"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`"
@@ -29983,7 +30313,7 @@ msgstr "nakon_umetanja"
msgid "amend"
msgstr "izmijeni"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "i"
@@ -30041,7 +30371,7 @@ msgid "cyan"
msgstr "cijan"
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -30208,7 +30538,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nije pronađen u PATH! Ovo je potrebno za izradu sigurnosne kopije."
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
@@ -30282,7 +30612,7 @@ msgid "long"
msgstr "dugo"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
@@ -30472,7 +30802,7 @@ msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -30806,7 +31136,7 @@ msgstr "{0} je već odjavljen"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} je već otkazan za {1} {2}"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} i {1}"
@@ -30814,7 +31144,7 @@ msgstr "{0} i {1}"
msgid "{0} are currently {1}"
msgstr "{0} su trenutno {1}"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} su obavezni"
@@ -30844,7 +31174,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} je otkazao ovaj dokument {1}"
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} ne može se mijenjati jer nije otkazan. Molimo otkažite dokument prije kreiranja izmjene."
@@ -30916,7 +31246,7 @@ msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoj
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "{0} polja ne mogu sadržavati povratne crte (`): {1}"
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format nije mogao biti određen iz vrijednosti u ovoj koloni. Standard je {1}."
@@ -31059,7 +31389,7 @@ msgstr "{0} nije važeći nadređeni DocType za {1}"
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće nadređeno polje za {1}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}"
@@ -31083,7 +31413,7 @@ msgstr "{0} nije jedno od {1}"
msgid "{0} is not set"
msgstr "{0} nije postavljeno"
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
@@ -31093,7 +31423,8 @@ msgstr "{0} je jedan od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je obavezan"
@@ -31143,23 +31474,23 @@ msgstr "prije {0} minuta"
msgid "{0} months ago"
msgstr "{0} mjeseci prije"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} mora biti iza {1}"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora početi sa '{1}'"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr "{0} ne smije biti ni jedna od {1}"
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
@@ -31171,7 +31502,7 @@ msgstr "{0} se mora prvo postaviti"
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31200,12 +31531,12 @@ msgstr "{0} od {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr "Samo {0}."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} ili {1}"
@@ -31242,7 +31573,7 @@ msgstr "{0} je uklonio(la) svoju dodjelu."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr "{0} red #{1}: "
@@ -31358,11 +31689,11 @@ msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}."
@@ -31511,11 +31842,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam
msgid "{} Complete"
msgstr "{} Završeno"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Možda nevažeći python kod.
{}"
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index 0f53e90069..d547839d89 100644
--- a/frappe/locale/hu.po
+++ b/frappe/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -555,6 +555,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr ""
@@ -589,6 +594,13 @@ msgstr ""
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -850,7 +862,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1015,8 +1027,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1052,7 +1064,7 @@ msgid "Add Gray Background"
msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1866,6 +1878,12 @@ msgstr ""
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1882,6 +1900,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Módosítás nem engedélyezett"
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr "Feltétel leírás"
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Hozzáférés megerősítése"
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9248,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9274,7 +9371,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9335,7 +9432,7 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9700,7 +9797,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9771,7 +9868,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9814,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9830,7 +9927,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10278,7 +10375,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10462,7 +10559,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10740,7 +10837,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10800,7 +10897,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10878,7 +10975,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11307,7 +11404,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11357,7 +11454,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11586,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11628,6 +11725,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11789,7 +11887,7 @@ msgstr ""
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11872,15 +11970,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr ""
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12561,11 +12664,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12632,11 +12735,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12723,7 +12826,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12979,7 +13082,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13013,7 +13116,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13025,9 +13128,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13107,7 +13210,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13131,10 +13234,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13188,7 +13295,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13937,7 +14044,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14233,7 +14340,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14547,7 +14654,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr ""
@@ -14861,6 +14968,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15047,7 +15159,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15270,7 +15382,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15468,6 +15580,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15487,7 +15605,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15581,7 +15699,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15589,7 +15707,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15655,7 +15773,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15955,7 +16073,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16239,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16250,7 +16368,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16295,7 +16413,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16327,7 +16464,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16478,7 +16615,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16507,7 +16644,7 @@ msgid "No Copy"
msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16766,7 +16903,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16859,6 +16996,12 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr ""
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16894,7 +17037,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16920,9 +17063,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17030,7 +17173,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17351,6 +17494,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17600,7 +17748,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17631,7 +17779,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17639,7 +17787,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17772,7 +17920,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17887,7 +18035,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17969,9 +18117,11 @@ msgstr ""
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18266,8 +18416,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18372,7 +18522,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18384,7 +18534,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18693,7 +18843,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18864,7 +19014,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18881,23 +19031,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18905,7 +19055,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18917,7 +19067,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18930,11 +19080,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18950,7 +19100,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19018,7 +19168,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19052,7 +19202,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19125,10 +19275,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19174,7 +19333,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19428,7 +19587,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19489,6 +19648,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19499,6 +19663,10 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19534,7 +19702,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19552,7 +19720,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19662,6 +19830,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19784,6 +19956,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19923,7 +20099,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20136,7 +20312,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20636,7 +20812,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20965,6 +21141,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20980,8 +21158,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21050,7 +21231,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21106,7 +21287,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21122,7 +21303,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21343,6 +21524,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21719,7 +21925,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22004,7 +22210,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22031,7 +22237,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22207,6 +22413,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22487,7 +22698,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23028,7 +23239,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23094,7 +23305,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23152,7 +23363,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23370,7 +23581,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23459,6 +23670,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23485,6 +23698,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23602,6 +23821,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23628,6 +23853,12 @@ msgstr ""
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23658,6 +23889,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23711,6 +23948,12 @@ msgstr ""
msgid "Show in Module Section"
msgstr ""
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23796,7 +24039,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23882,8 +24125,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr ""
@@ -24047,6 +24292,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24114,7 +24369,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24204,7 +24459,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24220,7 +24475,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24441,7 +24696,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24772,7 +25027,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24840,7 +25095,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24949,7 +25204,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25127,6 +25382,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25186,6 +25442,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25256,7 +25517,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25512,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26503,6 +26770,12 @@ msgstr ""
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26530,7 +26803,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26723,7 +26996,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26770,7 +27043,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27024,10 +27297,48 @@ msgstr ""
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27077,7 +27388,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27094,7 +27405,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27138,6 +27449,13 @@ msgstr ""
msgid "Unique"
msgstr ""
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr ""
@@ -27728,7 +28046,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28032,15 +28350,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28066,6 +28384,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28403,7 +28727,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28801,7 +29125,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28942,7 +29266,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29130,7 +29454,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29209,7 +29533,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29225,7 +29549,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29233,7 +29557,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29278,7 +29602,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29397,7 +29721,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29417,7 +29741,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29490,15 +29814,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29666,11 +29990,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29684,7 +30008,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29696,7 +30020,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29720,7 +30044,7 @@ msgstr ""
msgid "_report"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29743,7 +30067,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29801,7 +30125,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29968,7 +30292,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30042,7 +30366,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30232,7 +30556,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30566,7 +30890,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30574,7 +30898,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30604,7 +30928,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30676,7 +31000,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30819,7 +31143,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30843,7 +31167,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30853,7 +31177,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -30903,23 +31228,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30931,7 +31256,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30960,12 +31285,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31002,7 +31327,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31118,11 +31443,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31271,11 +31596,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/it.po b/frappe/locale/it.po
index b0240b6879..0ad00da242 100644
--- a/frappe/locale/it.po
+++ b/frappe/locale/it.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -555,6 +555,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr ""
@@ -589,6 +594,13 @@ msgstr ""
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -850,7 +862,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1015,8 +1027,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1052,7 +1064,7 @@ msgid "Add Gray Background"
msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1866,6 +1878,12 @@ msgstr ""
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1882,6 +1900,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9248,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9274,7 +9371,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9335,7 +9432,7 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9700,7 +9797,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9771,7 +9868,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9814,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9830,7 +9927,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10278,7 +10375,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10462,7 +10559,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10740,7 +10837,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10800,7 +10897,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10878,7 +10975,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11307,7 +11404,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11357,7 +11454,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11586,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11628,6 +11725,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11789,7 +11887,7 @@ msgstr ""
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11872,15 +11970,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr ""
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12561,11 +12664,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12632,11 +12735,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12723,7 +12826,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12979,7 +13082,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13013,7 +13116,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13025,9 +13128,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13107,7 +13210,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13131,10 +13234,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13188,7 +13295,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13937,7 +14044,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14233,7 +14340,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14547,7 +14654,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr ""
@@ -14861,6 +14968,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15047,7 +15159,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15270,7 +15382,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15468,6 +15580,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15487,7 +15605,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15581,7 +15699,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15589,7 +15707,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15655,7 +15773,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15955,7 +16073,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16239,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16250,7 +16368,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16295,7 +16413,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16327,7 +16464,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16478,7 +16615,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16507,7 +16644,7 @@ msgid "No Copy"
msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16766,7 +16903,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16859,6 +16996,12 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Nessuna"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16894,7 +17037,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16920,9 +17063,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17030,7 +17173,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17351,6 +17494,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17600,7 +17748,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17631,7 +17779,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17639,7 +17787,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17772,7 +17920,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17887,7 +18035,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17969,9 +18117,11 @@ msgstr ""
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18266,8 +18416,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18372,7 +18522,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18384,7 +18534,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18693,7 +18843,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18864,7 +19014,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18881,23 +19031,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18905,7 +19055,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18917,7 +19067,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18930,11 +19080,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18950,7 +19100,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19018,7 +19168,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19052,7 +19202,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19125,10 +19275,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19174,7 +19333,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19428,7 +19587,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19489,6 +19648,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19499,6 +19663,10 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19534,7 +19702,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19552,7 +19720,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19662,6 +19830,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19784,6 +19956,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19923,7 +20099,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20136,7 +20312,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20636,7 +20812,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20965,6 +21141,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20980,8 +21158,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21050,7 +21231,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21106,7 +21287,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21122,7 +21303,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21343,6 +21524,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21719,7 +21925,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22004,7 +22210,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22031,7 +22237,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22207,6 +22413,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22487,7 +22698,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23028,7 +23239,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23094,7 +23305,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23152,7 +23363,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23370,7 +23581,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23459,6 +23670,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23485,6 +23698,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23602,6 +23821,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23628,6 +23853,12 @@ msgstr ""
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23658,6 +23889,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23711,6 +23948,12 @@ msgstr ""
msgid "Show in Module Section"
msgstr ""
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23796,7 +24039,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23882,8 +24125,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr ""
@@ -24047,6 +24292,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24114,7 +24369,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24204,7 +24459,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24220,7 +24475,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24441,7 +24696,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24772,7 +25027,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24840,7 +25095,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24949,7 +25204,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25127,6 +25382,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25186,6 +25442,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25256,7 +25517,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25512,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26503,6 +26770,12 @@ msgstr ""
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26530,7 +26803,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26723,7 +26996,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26770,7 +27043,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27024,10 +27297,48 @@ msgstr ""
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27077,7 +27388,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27094,7 +27405,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27138,6 +27449,13 @@ msgstr ""
msgid "Unique"
msgstr ""
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr ""
@@ -27728,7 +28046,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28032,15 +28350,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28066,6 +28384,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28403,7 +28727,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28801,7 +29125,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28942,7 +29266,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29130,7 +29454,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29209,7 +29533,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29225,7 +29549,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29233,7 +29557,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29278,7 +29602,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29397,7 +29721,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29417,7 +29741,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29490,15 +29814,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29666,11 +29990,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29684,7 +30008,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29696,7 +30020,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29720,7 +30044,7 @@ msgstr ""
msgid "_report"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29743,7 +30067,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29801,7 +30125,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29968,7 +30292,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30042,7 +30366,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30232,7 +30556,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30566,7 +30890,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30574,7 +30898,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30604,7 +30928,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30676,7 +31000,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30819,7 +31143,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30843,7 +31167,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30853,7 +31177,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -30903,23 +31228,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30931,7 +31256,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30960,12 +31285,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31002,7 +31327,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31118,11 +31443,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31271,11 +31596,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po
index f002a24b1a..41a584984d 100644
--- a/frappe/locale/nl.po
+++ b/frappe/locale/nl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-30 18:20\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr "1 rapport"
msgid "1 comment"
msgstr "1 reactie"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "1 dag geleden"
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr "1 uur"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "1 uur geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "1 minuut geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "1 maand geleden"
@@ -179,37 +179,37 @@ msgstr "1 van 2"
msgid "1 record will be exported"
msgstr "1 record wordt geëxporteerd"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "1 seconde geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "1 week geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "1 jaar geleden"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "2 uur geleden"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "2 maanden geleden"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "2 weken geleden"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "2 jaren geleden"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "3 minuten geleden"
@@ -225,7 +225,7 @@ msgstr "4 uren"
msgid "5 Records"
msgstr "5 records"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "5 dagen geleden"
@@ -555,6 +555,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Een uitgelicht bericht moet een omslagafbeelding hebben"
@@ -589,6 +594,13 @@ msgstr ""
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Een vrijstaand woord is gemakkelijk te raden."
@@ -850,7 +862,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Actie is mislukt"
@@ -1015,8 +1027,8 @@ msgid "Add Child"
msgstr "Onderliggende toevoegen"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1052,7 +1064,7 @@ msgid "Add Gray Background"
msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Groep toevoegen"
@@ -1866,6 +1878,12 @@ msgstr ""
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1882,6 +1900,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "App Naam"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "App {0} is niet geïnstalleerd"
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9248,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9274,7 +9371,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9335,7 +9432,7 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9700,7 +9797,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9771,7 +9868,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9814,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9830,7 +9927,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10278,7 +10375,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10462,7 +10559,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10740,7 +10837,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10800,7 +10897,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10878,7 +10975,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11307,7 +11404,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11357,7 +11454,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11586,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11628,6 +11725,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11789,7 +11887,7 @@ msgstr ""
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11872,15 +11970,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr ""
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12561,11 +12664,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12632,11 +12735,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12723,7 +12826,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12979,7 +13082,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13013,7 +13116,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13025,9 +13128,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13107,7 +13210,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13131,10 +13234,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13188,7 +13295,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13937,7 +14044,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14233,7 +14340,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14547,7 +14654,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr ""
@@ -14861,6 +14968,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15047,7 +15159,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15270,7 +15382,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15468,6 +15580,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15487,7 +15605,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15581,7 +15699,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15589,7 +15707,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15655,7 +15773,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15955,7 +16073,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16239,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16250,7 +16368,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16295,7 +16413,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16327,7 +16464,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16478,7 +16615,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16507,7 +16644,7 @@ msgid "No Copy"
msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16766,7 +16903,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16859,6 +16996,12 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr ""
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16894,7 +17037,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16920,9 +17063,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17030,7 +17173,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17351,6 +17494,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17600,7 +17748,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17631,7 +17779,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17639,7 +17787,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17772,7 +17920,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17887,7 +18035,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17969,9 +18117,11 @@ msgstr ""
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18266,8 +18416,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18372,7 +18522,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18384,7 +18534,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18693,7 +18843,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18864,7 +19014,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18881,23 +19031,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18905,7 +19055,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18917,7 +19067,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18930,11 +19080,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18950,7 +19100,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19018,7 +19168,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19052,7 +19202,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19125,10 +19275,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19174,7 +19333,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19428,7 +19587,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19489,6 +19648,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19499,6 +19663,10 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19534,7 +19702,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19552,7 +19720,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19662,6 +19830,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19784,6 +19956,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19923,7 +20099,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20136,7 +20312,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20636,7 +20812,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20965,6 +21141,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20980,8 +21158,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21050,7 +21231,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21106,7 +21287,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21122,7 +21303,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21343,6 +21524,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21719,7 +21925,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22004,7 +22210,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22031,7 +22237,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22207,6 +22413,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22487,7 +22698,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23028,7 +23239,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23094,7 +23305,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23152,7 +23363,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23370,7 +23581,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23459,6 +23670,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23485,6 +23698,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23602,6 +23821,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23628,6 +23853,12 @@ msgstr ""
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23658,6 +23889,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23711,6 +23948,12 @@ msgstr ""
msgid "Show in Module Section"
msgstr ""
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23796,7 +24039,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23882,8 +24125,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr ""
@@ -24047,6 +24292,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24114,7 +24369,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24204,7 +24459,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24220,7 +24475,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24441,7 +24696,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24772,7 +25027,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24840,7 +25095,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24949,7 +25204,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25127,6 +25382,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25186,6 +25442,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25256,7 +25517,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25512,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26503,6 +26770,12 @@ msgstr ""
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26530,7 +26803,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26723,7 +26996,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26770,7 +27043,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27024,10 +27297,48 @@ msgstr ""
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27077,7 +27388,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27094,7 +27405,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27138,6 +27449,13 @@ msgstr ""
msgid "Unique"
msgstr ""
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr ""
@@ -27728,7 +28046,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28032,15 +28350,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28066,6 +28384,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28403,7 +28727,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28801,7 +29125,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28942,7 +29266,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29130,7 +29454,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29209,7 +29533,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29225,7 +29549,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29233,7 +29557,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29278,7 +29602,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29397,7 +29721,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29417,7 +29741,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29490,15 +29814,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29666,11 +29990,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29684,7 +30008,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29696,7 +30020,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29720,7 +30044,7 @@ msgstr ""
msgid "_report"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29743,7 +30067,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29801,7 +30125,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29968,7 +30292,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30042,7 +30366,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30232,7 +30556,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30566,7 +30890,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30574,7 +30898,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30604,7 +30928,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30676,7 +31000,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30819,7 +31143,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30843,7 +31167,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30853,7 +31177,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -30903,23 +31228,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30931,7 +31256,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30960,12 +31285,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31002,7 +31327,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31118,11 +31443,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31271,11 +31596,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index 6b742a48dd..1759a701ce 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -568,6 +568,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr ""
@@ -602,6 +607,13 @@ msgstr "Symbol waluty. Np. $"
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -863,7 +875,7 @@ msgstr "Akcja / Trasa"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1028,8 +1040,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1065,7 +1077,7 @@ msgid "Add Gray Background"
msgstr "Dodaj szare tło"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1879,6 +1891,12 @@ msgstr "Dozwolony do Oznaczenia"
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1895,6 +1913,42 @@ msgstr "Dozwolone domeny osadzania"
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1986,7 +2040,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Zmiana niedozwolona"
@@ -2075,16 +2129,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "App ID klienta"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Tajny Klient App"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2098,21 +2142,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2358,7 +2405,7 @@ msgstr ""
msgid "Assign Condition"
msgstr "Przypisz warunek"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2367,7 +2414,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2612,11 +2659,11 @@ msgstr "Usunięto Attachment"
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2668,6 +2715,11 @@ msgstr ""
msgid "Author"
msgstr "Autor"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2902,7 +2954,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3779,7 +3831,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3931,11 +3983,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3963,7 +4015,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4018,7 +4070,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4055,7 +4107,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4100,7 +4152,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4157,10 +4209,6 @@ msgstr "Kategoria Opis"
msgid "Category Name"
msgstr "Nazwa kategorii"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4445,6 +4493,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4566,8 +4618,10 @@ msgid "Client Credentials"
msgstr "Referencje klientów"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "Identyfikator klienta"
@@ -4583,6 +4637,12 @@ msgstr ""
msgid "Client Information"
msgstr "Informacja klientów"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4595,13 +4655,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Klient Secret"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4686,7 +4765,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4832,7 +4911,7 @@ msgstr "Kolumny / Pola"
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5081,6 +5160,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5117,7 +5202,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5126,7 +5211,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5139,7 +5224,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5180,8 +5265,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5273,6 +5358,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Opcje kontaktu, takie jak „Zapytanie o sprzedaż, Zapytanie o wsparcie” itp., Każda na nowej linii lub oddzielone przecinkami."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5291,7 +5381,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5373,7 +5463,7 @@ msgstr "Status wkładu"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5414,7 +5504,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5442,7 +5532,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6147,7 +6237,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7314,6 +7404,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7559,7 +7650,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7716,7 +7807,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7853,7 +7944,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8108,7 +8199,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8660,6 +8751,12 @@ msgstr "Włącz automatyczne łączenie w dokumentach"
msgid "Enable Comments"
msgstr "Włącz komentarze"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9050,7 +9147,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9261,7 +9358,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9287,7 +9384,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9348,7 +9445,7 @@ msgstr "Czas wygaśnięcia strony z obrazem QR Code"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9713,7 +9810,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9784,7 +9881,7 @@ msgstr "Pole do śledzenia"
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9827,7 +9924,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9843,7 +9940,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10291,7 +10388,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10475,7 +10572,7 @@ msgstr ""
msgid "For Value"
msgstr "Dla wartości"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10753,7 +10850,7 @@ msgstr ""
msgid "From Date Field"
msgstr "Od pola daty"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10813,7 +10910,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10891,7 +10988,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11320,7 +11417,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11370,7 +11467,7 @@ msgstr "GG: mm: ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11599,7 +11696,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11641,6 +11738,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11802,7 +11900,7 @@ msgstr "Najpierw zostanie zastosowana zasada wyższego priorytetu"
msgid "Highlight"
msgstr "Leflektor"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11885,15 +11983,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "Jaka powinna być waluta? Jeśli nie jest ustawiona, użyje domyślnych ustawień systemowych"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12574,11 +12677,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12645,11 +12748,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12736,7 +12839,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12992,7 +13095,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13026,7 +13129,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13038,9 +13141,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13120,7 +13223,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13144,10 +13247,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13201,7 +13308,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13950,7 +14057,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14246,7 +14353,7 @@ msgstr "List"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14560,7 +14667,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Lista"
@@ -14874,6 +14981,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15060,7 +15172,7 @@ msgstr "Obowiązkowe zależy od"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15283,7 +15395,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15481,6 +15593,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15500,7 +15618,7 @@ msgstr ""
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15594,7 +15712,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15602,7 +15720,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15668,7 +15786,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15968,7 +16086,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16134,7 +16252,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16263,7 +16381,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16308,7 +16426,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16340,7 +16477,7 @@ msgstr "Wstawiam nową wartość"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16491,7 +16628,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16520,7 +16657,7 @@ msgid "No Copy"
msgstr "Brak kopii"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16779,7 +16916,7 @@ msgstr "Nie rzędów (max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16872,6 +17009,12 @@ msgstr "Nieujemne"
msgid "Non-Conforming"
msgstr "Niezgodne"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Żaden"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16907,7 +17050,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16933,9 +17076,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17043,7 +17186,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17364,6 +17507,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17613,7 +17761,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17644,7 +17792,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17652,7 +17800,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17785,7 +17933,7 @@ msgstr "Otwarty"
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17900,7 +18048,7 @@ msgstr "Historia Organizacji"
msgid "Org History Heading"
msgstr "Nagłówek Historii Organizacji"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17982,9 +18130,11 @@ msgstr ""
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18279,8 +18429,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18385,7 +18535,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18397,7 +18547,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18706,7 +18856,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18877,7 +19027,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18894,23 +19044,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18918,7 +19068,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18930,7 +19080,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18943,11 +19093,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18963,7 +19113,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19031,7 +19181,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19065,7 +19215,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19138,10 +19288,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19187,7 +19346,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19441,7 +19600,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19502,6 +19661,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19512,6 +19676,10 @@ msgstr "Format Drukuj Pomoc"
msgid "Print Format Type"
msgstr "Drukuj Typ Formatu"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19547,7 +19715,7 @@ msgstr "Wydrukuj \"Ukryte\" jeżeli nie została podana wartość"
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19565,7 +19733,7 @@ msgstr "Serwer druku"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19675,6 +19843,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19797,6 +19969,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19936,7 +20112,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20149,7 +20325,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20649,7 +20825,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20978,6 +21154,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20993,8 +21171,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21063,7 +21244,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21119,7 +21300,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21135,7 +21316,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21356,6 +21537,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21732,7 +21938,7 @@ msgstr "Przekierowania trasy"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22017,7 +22223,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22044,7 +22250,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22220,6 +22426,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22500,7 +22711,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23041,7 +23252,7 @@ msgstr ""
msgid "Server Action"
msgstr "Działanie serwera"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23107,7 +23318,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23165,7 +23376,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23383,7 +23594,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23472,6 +23683,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23498,6 +23711,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23615,6 +23834,12 @@ msgstr "Pokaż podgląd podglądu"
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23641,6 +23866,12 @@ msgstr "Pokaż Sekcja Nagłówki"
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23671,6 +23902,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23724,6 +23961,12 @@ msgstr "Pokaż pełny formularz zamiast szybkiego wpisu"
msgid "Show in Module Section"
msgstr "Pokaż w sekcji Module"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23809,7 +24052,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23895,8 +24138,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Przejdź Authorization"
@@ -24060,6 +24305,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr "Soft-odbił"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24127,7 +24382,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24217,7 +24472,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24233,7 +24488,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24454,7 +24709,7 @@ msgstr "Statystyki Interwał czasowy"
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24785,7 +25040,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24853,7 +25108,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24962,7 +25217,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25140,6 +25395,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25199,6 +25455,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25269,7 +25530,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25525,7 +25786,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26516,6 +26783,12 @@ msgstr "Znak"
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26543,7 +26816,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26736,7 +27009,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26783,7 +27056,7 @@ msgstr "Przejścia"
msgid "Translatable"
msgstr "Przetłumaczalny"
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27037,10 +27310,48 @@ msgstr "Adres URL dokumentacji lub pomocy"
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27090,7 +27401,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27107,7 +27418,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Stan niepodpisania"
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27151,6 +27462,13 @@ msgstr ""
msgid "Unique"
msgstr "Unikalny"
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr ""
@@ -27741,7 +28059,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28045,15 +28363,15 @@ msgstr "Wartość Zmieniona"
msgid "Value To Be Set"
msgstr "Wartość, którą należy ustawić"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28079,6 +28397,12 @@ msgstr "Wartość z tego pola zostanie ustawiona jako termin w Do zrobienia"
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28416,7 +28740,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28814,7 +29138,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28955,7 +29279,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29143,7 +29467,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29222,7 +29546,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29238,7 +29562,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29246,7 +29570,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29291,7 +29615,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29410,7 +29734,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29430,7 +29754,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29503,15 +29827,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29679,11 +30003,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29697,7 +30021,7 @@ msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29709,7 +30033,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29733,7 +30057,7 @@ msgstr ""
msgid "_report"
msgstr "_raport"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29756,7 +30080,7 @@ msgstr "po"
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29814,7 +30138,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29981,7 +30305,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30055,7 +30379,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30245,7 +30569,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30579,7 +30903,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30587,7 +30911,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30617,7 +30941,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30689,7 +31013,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30832,7 +31156,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30856,7 +31180,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30866,7 +31190,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -30916,23 +31241,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30944,7 +31269,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30973,12 +31298,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31015,7 +31340,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31131,11 +31456,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31284,11 +31609,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po
index c3b0ce2d7f..65b3c0aa64 100644
--- a/frappe/locale/pt.po
+++ b/frappe/locale/pt.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-07-13 20:06\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -555,6 +555,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr ""
@@ -589,6 +594,13 @@ msgstr ""
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -850,7 +862,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1015,8 +1027,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1052,7 +1064,7 @@ msgid "Add Gray Background"
msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1866,6 +1878,12 @@ msgstr ""
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1882,6 +1900,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr "Anexos"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr "Câmera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Confirmar"
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Confirmar"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Contactos"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9248,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9274,7 +9371,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9335,7 +9432,7 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9700,7 +9797,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9771,7 +9868,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9814,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9830,7 +9927,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10278,7 +10375,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10462,7 +10559,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10740,7 +10837,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10800,7 +10897,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10878,7 +10975,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11307,7 +11404,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11357,7 +11454,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11586,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11628,6 +11725,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11789,7 +11887,7 @@ msgstr ""
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11872,15 +11970,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr ""
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12561,11 +12664,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12632,11 +12735,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12723,7 +12826,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12979,7 +13082,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13013,7 +13116,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13025,9 +13128,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13107,7 +13210,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13131,10 +13234,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13188,7 +13295,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13937,7 +14044,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14233,7 +14340,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14547,7 +14654,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr ""
@@ -14861,6 +14968,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15047,7 +15159,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15270,7 +15382,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15468,6 +15580,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15487,7 +15605,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15581,7 +15699,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15589,7 +15707,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15655,7 +15773,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15955,7 +16073,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16239,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16250,7 +16368,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16295,7 +16413,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16327,7 +16464,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16478,7 +16615,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Não"
@@ -16507,7 +16644,7 @@ msgid "No Copy"
msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16766,7 +16903,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16859,6 +16996,12 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr ""
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16894,7 +17037,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16920,9 +17063,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17030,7 +17173,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17351,6 +17494,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17600,7 +17748,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17631,7 +17779,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17639,7 +17787,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17772,7 +17920,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17887,7 +18035,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17969,9 +18117,11 @@ msgstr "Dono"
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18266,8 +18416,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18372,7 +18522,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18384,7 +18534,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18693,7 +18843,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18864,7 +19014,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18881,23 +19031,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18905,7 +19055,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18917,7 +19067,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18930,11 +19080,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18950,7 +19100,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19018,7 +19168,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19052,7 +19202,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19125,10 +19275,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19174,7 +19333,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19428,7 +19587,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19489,6 +19648,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19499,6 +19663,10 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19534,7 +19702,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19552,7 +19720,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19662,6 +19830,10 @@ msgstr "Privado"
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19784,6 +19956,10 @@ msgstr "Público"
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19923,7 +20099,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20136,7 +20312,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20636,7 +20812,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20945,7 +21121,7 @@ msgstr "Responder"
#: frappe/core/doctype/communication/communication.js:62
msgid "Reply All"
-msgstr "Responder todos"
+msgstr ""
#. Label of the report (Check) field in DocType 'Custom DocPerm'
#. Label of the report (Link) field in DocType 'Custom Role'
@@ -20965,6 +21141,8 @@ msgstr "Responder todos"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20980,8 +21158,11 @@ msgstr "Responder todos"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21050,7 +21231,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21106,7 +21287,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21122,7 +21303,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21343,6 +21524,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21719,7 +21925,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22004,7 +22210,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22031,7 +22237,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22207,6 +22413,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22487,7 +22698,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23028,7 +23239,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23094,7 +23305,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23152,7 +23363,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23370,7 +23581,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23459,6 +23670,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23485,6 +23698,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23602,6 +23821,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23628,6 +23853,12 @@ msgstr ""
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23658,6 +23889,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23711,6 +23948,12 @@ msgstr ""
msgid "Show in Module Section"
msgstr ""
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23796,7 +24039,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23882,8 +24125,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr ""
@@ -24047,6 +24292,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24114,7 +24369,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24204,7 +24459,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24220,7 +24475,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24441,7 +24696,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24772,7 +25027,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24840,7 +25095,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24949,7 +25204,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25127,6 +25382,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25186,6 +25442,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25256,7 +25517,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25512,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26503,6 +26770,12 @@ msgstr ""
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26530,7 +26803,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26723,7 +26996,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26770,7 +27043,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27024,10 +27297,48 @@ msgstr ""
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27077,7 +27388,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27094,7 +27405,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27138,6 +27449,13 @@ msgstr ""
msgid "Unique"
msgstr ""
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Desconhecido"
@@ -27728,7 +28046,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28032,15 +28350,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28066,6 +28384,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28403,7 +28727,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28801,7 +29125,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28942,7 +29266,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29130,7 +29454,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Sim"
@@ -29209,7 +29533,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29225,7 +29549,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29233,7 +29557,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29278,7 +29602,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29397,7 +29721,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29417,7 +29741,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29490,15 +29814,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29666,11 +29990,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29684,7 +30008,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29696,7 +30020,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29720,7 +30044,7 @@ msgstr ""
msgid "_report"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29743,7 +30067,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29801,7 +30125,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29968,7 +30292,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30042,7 +30366,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30232,7 +30556,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30566,7 +30890,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} e {1}"
@@ -30574,7 +30898,7 @@ msgstr "{0} e {1}"
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30604,7 +30928,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30676,7 +31000,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30819,7 +31143,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} não é um formato de relatório válido. O formato do relatório deve ser um dos seguintes {1}"
@@ -30843,7 +31167,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30853,7 +31177,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} é obrigatório"
@@ -30903,23 +31228,23 @@ msgstr "há {0} minutos"
msgid "{0} months ago"
msgstr "há {0} meses"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} deve ser posterior a {1}"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} deve ser um dos {1}"
@@ -30931,7 +31256,7 @@ msgstr "{0} deve ser definido primeiro"
msgid "{0} must be unique"
msgstr "{0} deve ser único"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30960,12 +31285,12 @@ msgstr "{0} de {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} ou {1}"
@@ -31002,7 +31327,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31118,11 +31443,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} não foi encontrado"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: O registo submetido não pode ser eliminado. Tem de {2} Cancelar {3} primeiro."
@@ -31271,11 +31596,11 @@ msgstr ""
msgid "{} Complete"
msgstr "{} Concluído"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index ed3059a376..dd5c3f7772 100644
--- a/frappe/locale/pt_BR.po
+++ b/frappe/locale/pt_BR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -555,6 +555,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr ""
@@ -589,6 +594,13 @@ msgstr "Um símbolo para esta moeda. Por exemplo: R$"
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -850,7 +862,7 @@ msgstr "Ação / Rota"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1015,8 +1027,8 @@ msgid "Add Child"
msgstr "Adicionar Sub-item"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1052,7 +1064,7 @@ msgid "Add Gray Background"
msgstr "Adicionar fundo cinza"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1866,6 +1878,12 @@ msgstr "Permitido nas menções"
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1882,6 +1900,42 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr "Aplicativo"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr "Atribuir condição"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr "Anexo Removido"
msgid "Attachments"
msgstr "Anexos"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr "Autor"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr "Descrição da Categoria"
msgid "Category Name"
msgstr "Nome da Categoria"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr "Credenciais no cliente"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "ID do Cliente"
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr "Informação ao cliente"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Segredo do cliente"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Recolher Todos"
@@ -4819,7 +4898,7 @@ msgstr "Colunas / Campos"
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Contatos"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr "Ativar Vinculação Automática em Documentos"
msgid "Enable Comments"
msgstr "Ativação de comentários"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9248,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9274,7 +9371,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir Todos"
@@ -9335,7 +9432,7 @@ msgstr "Tempo de expiração da página de imagem de código QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9700,7 +9797,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9771,7 +9868,7 @@ msgstr "Campo para rastrear"
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9814,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9830,7 +9927,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10278,7 +10375,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10462,7 +10559,7 @@ msgstr ""
msgid "For Value"
msgstr "Por valor"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10740,7 +10837,7 @@ msgstr "Data De"
msgid "From Date Field"
msgstr "Do campo de data"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10800,7 +10897,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10878,7 +10975,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11307,7 +11404,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11357,7 +11454,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11586,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11628,6 +11725,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11789,7 +11887,7 @@ msgstr "Regra de prioridade mais alta será aplicada primeiro"
msgid "Highlight"
msgstr "Realçar"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11872,15 +11970,20 @@ msgstr "Horas"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "Como essa moeda deve ser formatada? Se não for definido, serão usados os padrões do sistema"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12561,11 +12664,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12632,11 +12735,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12723,7 +12826,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12979,7 +13082,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13013,7 +13116,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13025,9 +13128,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13107,7 +13210,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13131,10 +13234,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13188,7 +13295,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13937,7 +14044,7 @@ msgstr ""
msgid "Landing Page"
msgstr "Página de chegada"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14233,7 +14340,7 @@ msgstr "Carta"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14547,7 +14654,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Lista"
@@ -14861,6 +14968,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15047,7 +15159,7 @@ msgstr "Obrigatório Depende"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15270,7 +15382,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15468,6 +15580,12 @@ msgstr ""
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15487,7 +15605,7 @@ msgstr ""
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15581,7 +15699,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15589,7 +15707,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15655,7 +15773,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15955,7 +16073,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16239,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16250,7 +16368,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16295,7 +16413,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16327,7 +16464,7 @@ msgstr "Novo valor a ser definido"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16478,7 +16615,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Não"
@@ -16507,7 +16644,7 @@ msgid "No Copy"
msgstr "Nenhuma Cópia"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16766,7 +16903,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16859,6 +16996,12 @@ msgstr "Não Negativo"
msgid "Non-Conforming"
msgstr "Não conforme"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Nenhum"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16894,7 +17037,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16920,9 +17063,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17030,7 +17173,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Não Permitido"
@@ -17351,6 +17494,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17600,7 +17748,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17631,7 +17779,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17639,7 +17787,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17772,7 +17920,7 @@ msgstr "Inaugurado"
msgid "Operation"
msgstr "Operação"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17887,7 +18035,7 @@ msgstr "História da Organização"
msgid "Org History Heading"
msgstr "Cabeçalho da História da Organização"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17969,9 +18117,11 @@ msgstr "Proprietário"
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18266,8 +18416,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18372,7 +18522,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18384,7 +18534,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18693,7 +18843,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18864,7 +19014,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18881,23 +19031,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18905,7 +19055,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18917,7 +19067,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18930,11 +19080,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18950,7 +19100,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19018,7 +19168,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19052,7 +19202,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19125,10 +19275,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19174,7 +19333,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19428,7 +19587,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19489,6 +19648,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19499,6 +19663,10 @@ msgstr "Ajuda sobre Formatos de Impressão"
msgid "Print Format Type"
msgstr "Tipo do Formato de Impressão"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19534,7 +19702,7 @@ msgstr "Ocultar Impressão se não Preenchido"
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19552,7 +19720,7 @@ msgstr "Servidor de impressão"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19662,6 +19830,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19784,6 +19956,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19923,7 +20099,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20136,7 +20312,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20636,7 +20812,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20965,6 +21141,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20980,8 +21158,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Relatório"
@@ -21050,7 +21231,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21106,7 +21287,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21122,7 +21303,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21343,6 +21524,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21719,7 +21925,7 @@ msgstr "Redirecionamentos de rota"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22004,7 +22210,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22031,7 +22237,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22207,6 +22413,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22487,7 +22698,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23028,7 +23239,7 @@ msgstr ""
msgid "Server Action"
msgstr "Ação do Servidor"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23094,7 +23305,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23152,7 +23363,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23370,7 +23581,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23459,6 +23670,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23485,6 +23698,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23602,6 +23821,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23628,6 +23853,12 @@ msgstr "Mostrar Seção Títulos"
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23658,6 +23889,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23711,6 +23948,12 @@ msgstr "Mostrar o formulário completo em vez de um modal de entrada rápida"
msgid "Show in Module Section"
msgstr "Mostrar na Seção Módulo"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23796,7 +24039,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23882,8 +24125,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Ignorar autorização"
@@ -24047,6 +24292,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24114,7 +24369,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24204,7 +24459,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24220,7 +24475,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24441,7 +24696,7 @@ msgstr "Intervalo de tempo das estatísticas"
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24772,7 +25027,7 @@ msgstr ""
msgid "Success title"
msgstr ""
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24840,7 +25095,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24949,7 +25204,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25127,6 +25382,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25186,6 +25442,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25256,7 +25517,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25512,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26503,6 +26770,12 @@ msgstr "Símbolo"
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26530,7 +26803,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26723,7 +26996,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26770,7 +27043,7 @@ msgstr "Transições"
msgid "Translatable"
msgstr "Traduzível"
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr ""
@@ -27024,10 +27297,48 @@ msgstr "URL para documentação ou ajuda"
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27077,7 +27388,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27094,7 +27405,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Desatribuir condição"
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27138,6 +27449,13 @@ msgstr ""
msgid "Unique"
msgstr "Único"
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Desconhecido"
@@ -27728,7 +28046,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28032,15 +28350,15 @@ msgstr "Valor Alterado"
msgid "Value To Be Set"
msgstr "Valor a ser definido"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28066,6 +28384,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28403,7 +28727,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28801,7 +29125,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28942,7 +29266,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29130,7 +29454,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29209,7 +29533,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29225,7 +29549,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29233,7 +29557,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29278,7 +29602,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29397,7 +29721,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29417,7 +29741,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29490,15 +29814,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29666,11 +29990,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29684,7 +30008,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29696,7 +30020,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29720,7 +30044,7 @@ msgstr ""
msgid "_report"
msgstr "_relatório"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29743,7 +30067,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "e"
@@ -29801,7 +30125,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29968,7 +30292,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30042,7 +30366,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30232,7 +30556,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30566,7 +30890,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30574,7 +30898,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30604,7 +30928,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -30676,7 +31000,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30819,7 +31143,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30843,7 +31167,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30853,7 +31177,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} é necessário"
@@ -30903,23 +31228,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30931,7 +31256,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30960,12 +31285,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31002,7 +31327,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31118,11 +31443,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31271,11 +31596,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index 78d3c55d04..a99f360f1d 100644
--- a/frappe/locale/ru.po
+++ b/frappe/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-06-27 17:34\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-15 20:16\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
@@ -555,6 +555,11 @@ msgstr ""
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr ""
@@ -589,6 +594,13 @@ msgstr ""
msgid "A template already exists for field {0} of {1}"
msgstr ""
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr ""
@@ -850,7 +862,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr ""
@@ -1015,8 +1027,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1052,7 +1064,7 @@ msgid "Add Gray Background"
msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr ""
@@ -1866,6 +1878,12 @@ msgstr ""
msgid "Allowed Modules"
msgstr ""
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -1882,6 +1900,42 @@ msgstr "Допустимые области встраивания"
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr "Описание состояния"
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Подтвердите доступ"
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr ""
@@ -9248,7 +9345,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9274,7 +9371,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9335,7 +9432,7 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9700,7 +9797,7 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9771,7 +9868,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -9814,7 +9911,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9830,7 +9927,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10278,7 +10375,7 @@ msgstr ""
msgid "Followed by"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
@@ -10462,7 +10559,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10740,7 +10837,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr ""
@@ -10800,7 +10897,7 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -10878,7 +10975,7 @@ msgid "Generate Random Password"
msgstr ""
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11307,7 +11404,7 @@ msgstr ""
msgid "Group your custom doctypes under modules"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
@@ -11357,7 +11454,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11586,7 +11683,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
@@ -11628,6 +11725,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr ""
@@ -11789,7 +11887,7 @@ msgstr ""
msgid "Highlight"
msgstr ""
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr ""
@@ -11872,15 +11970,20 @@ msgstr ""
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr ""
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12561,11 +12664,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr ""
@@ -12632,11 +12735,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr ""
@@ -12723,7 +12826,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr ""
@@ -12979,7 +13082,7 @@ msgstr ""
msgid "Invalid Home Page"
msgstr ""
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr ""
@@ -13013,7 +13116,7 @@ msgstr ""
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr ""
@@ -13025,9 +13128,9 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr ""
@@ -13107,7 +13210,7 @@ msgstr ""
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
@@ -13131,10 +13234,14 @@ msgstr ""
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr ""
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr ""
@@ -13188,7 +13295,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
@@ -13937,7 +14044,7 @@ msgstr ""
msgid "Landing Page"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr ""
@@ -14233,7 +14340,7 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14547,7 +14654,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr ""
@@ -14861,6 +14968,11 @@ msgstr ""
msgid "Login with {0}"
msgstr ""
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15047,7 +15159,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr ""
@@ -15270,7 +15382,7 @@ msgstr ""
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15468,6 +15580,12 @@ msgstr "Мета-заголовок"
msgid "Meta title for SEO"
msgstr ""
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15487,7 +15605,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr ""
@@ -15581,7 +15699,7 @@ msgstr ""
msgid "Missing Fields"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
@@ -15589,7 +15707,7 @@ msgstr ""
msgid "Missing Permission"
msgstr ""
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
@@ -15655,7 +15773,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -15955,7 +16073,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16121,7 +16239,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr ""
@@ -16250,7 +16368,7 @@ msgstr ""
msgid "New Onboarding"
msgstr ""
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr ""
@@ -16295,7 +16413,26 @@ msgstr ""
msgid "New Workspace"
msgstr ""
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
@@ -16327,7 +16464,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr ""
@@ -16478,7 +16615,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16507,7 +16644,7 @@ msgid "No Copy"
msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16766,7 +16903,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16859,6 +16996,12 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr ""
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -16894,7 +17037,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16920,9 +17063,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17030,7 +17173,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17351,6 +17494,11 @@ msgstr ""
msgid "OAuth Scope"
msgstr ""
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
@@ -17600,7 +17748,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17631,7 +17779,7 @@ msgstr ""
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr ""
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr ""
@@ -17639,7 +17787,7 @@ msgstr ""
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
@@ -17772,7 +17920,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr ""
@@ -17887,7 +18035,7 @@ msgstr ""
msgid "Org History Heading"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr ""
@@ -17969,9 +18117,11 @@ msgstr ""
msgid "PATCH"
msgstr ""
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr ""
@@ -18266,8 +18416,8 @@ msgstr ""
msgid "Parent is the name of the document to which the data will get added to."
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
#: frappe/permissions.py:820
@@ -18372,7 +18522,7 @@ msgstr ""
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
@@ -18384,7 +18534,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
@@ -18693,7 +18843,7 @@ msgstr ""
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -18864,7 +19014,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr ""
@@ -18881,23 +19031,23 @@ msgstr ""
msgid "Please ensure that your profile has an email address"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr ""
@@ -18905,7 +19055,7 @@ msgstr ""
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr ""
@@ -18917,7 +19067,7 @@ msgstr ""
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr ""
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr ""
@@ -18930,11 +19080,11 @@ msgstr ""
msgid "Please enter valid mobile nos"
msgstr ""
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
@@ -18950,7 +19100,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19018,7 +19168,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19052,7 +19202,7 @@ msgstr ""
msgid "Please set filters"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr ""
@@ -19125,10 +19275,19 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19174,7 +19333,7 @@ msgstr ""
msgid "Portal Settings"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr ""
@@ -19428,7 +19587,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19489,6 +19648,11 @@ msgstr ""
msgid "Print Format Field Template"
msgstr ""
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19499,6 +19663,10 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr ""
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr ""
@@ -19534,7 +19702,7 @@ msgstr ""
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr ""
@@ -19552,7 +19720,7 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -19662,6 +19830,10 @@ msgstr ""
msgid "Private Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19784,6 +19956,10 @@ msgstr ""
msgid "Public Files (MB)"
msgstr ""
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -19923,7 +20099,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr ""
@@ -20136,7 +20312,7 @@ msgstr ""
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr ""
@@ -20636,7 +20812,7 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20965,6 +21141,8 @@ msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -20980,8 +21158,11 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr ""
@@ -21050,7 +21231,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr ""
@@ -21106,7 +21287,7 @@ msgstr ""
msgid "Report initiated, click to view status"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
@@ -21122,7 +21303,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21343,6 +21524,31 @@ msgstr ""
msgid "Reset your password"
msgstr ""
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21719,7 +21925,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr ""
@@ -22004,7 +22210,7 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22031,7 +22237,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr ""
@@ -22207,6 +22413,11 @@ msgstr ""
msgid "Scopes"
msgstr ""
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22487,7 +22698,7 @@ msgid "Select Column"
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr ""
@@ -23028,7 +23239,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23094,7 +23305,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr ""
@@ -23152,7 +23363,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr ""
@@ -23370,7 +23581,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23459,6 +23670,8 @@ msgstr ""
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr ""
@@ -23485,6 +23698,12 @@ msgstr ""
msgid "Show All"
msgstr ""
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr ""
@@ -23602,6 +23821,12 @@ msgstr ""
msgid "Show Processlist"
msgstr ""
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
@@ -23628,6 +23853,12 @@ msgstr ""
msgid "Show Sidebar"
msgstr ""
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23658,6 +23889,12 @@ msgstr ""
msgid "Show Traceback"
msgstr ""
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr ""
@@ -23711,6 +23948,12 @@ msgstr ""
msgid "Show in Module Section"
msgstr ""
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -23796,7 +24039,7 @@ msgid "Sign Up is disabled"
msgstr ""
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr ""
@@ -23882,8 +24125,10 @@ msgstr ""
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr ""
@@ -24047,6 +24292,16 @@ msgstr ""
msgid "Soft-Bounced"
msgstr ""
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr ""
@@ -24114,7 +24369,7 @@ msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24204,7 +24459,7 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
@@ -24220,7 +24475,7 @@ msgstr ""
msgid "Standard Permissions"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr ""
@@ -24441,7 +24696,7 @@ msgstr ""
msgid "Status"
msgstr ""
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr ""
@@ -24772,7 +25027,7 @@ msgstr "Сообщение об успехе"
msgid "Success title"
msgstr "Название успеха"
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr ""
@@ -24840,7 +25095,7 @@ msgstr ""
msgid "Sum"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr ""
@@ -24949,7 +25204,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
@@ -25127,6 +25382,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25186,6 +25442,11 @@ msgctxt "Number system"
msgid "T"
msgstr ""
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25256,7 +25517,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25512,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under "
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
@@ -26503,6 +26770,12 @@ msgstr ""
msgid "Token Cache"
msgstr ""
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
+msgstr ""
+
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
@@ -26530,7 +26803,7 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
@@ -26723,7 +26996,7 @@ msgstr ""
msgid "Tracking"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1781
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -26770,7 +27043,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2183
+#: frappe/public/js/frappe/views/reports/query_report.js:2207
msgid "Translate Data"
msgstr "Перевести данные"
@@ -27024,10 +27297,48 @@ msgstr ""
msgid "URL must start with http:// or https://"
msgstr ""
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr ""
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
@@ -27077,7 +27388,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:179
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27094,7 +27405,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:375
+#: frappe/app.py:396
msgid "Uncaught Exception"
msgstr ""
@@ -27138,6 +27449,13 @@ msgstr ""
msgid "Unique"
msgstr ""
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr ""
@@ -27728,7 +28046,7 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28032,15 +28350,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28066,6 +28384,12 @@ msgstr ""
msgid "Value must be one of {0}"
msgstr ""
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28403,7 +28727,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
@@ -28801,7 +29125,7 @@ msgstr ""
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Будет запускать запланированные задания только раз в день для неактивных сайтов. Установите значение 0, чтобы избежать автоматического отключения планировщика."
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr ""
@@ -28942,7 +29266,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29130,7 +29454,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29209,7 +29533,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29225,7 +29549,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29233,7 +29557,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29278,7 +29602,7 @@ msgstr ""
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr ""
@@ -29397,7 +29721,7 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr ""
@@ -29417,7 +29741,7 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
@@ -29490,15 +29814,15 @@ msgstr ""
msgid "You must add atleast one link."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Для выполнения этого действия вам необходимо разрешение '{0}' на {1} {2} ."
@@ -29666,11 +29990,11 @@ msgstr ""
msgid "Your login id is"
msgstr ""
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
@@ -29684,7 +30008,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29696,7 +30020,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr ""
@@ -29720,7 +30044,7 @@ msgstr ""
msgid "_report"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -29743,7 +30067,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr ""
@@ -29801,7 +30125,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -29968,7 +30292,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
@@ -30042,7 +30366,7 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
@@ -30232,7 +30556,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -30566,7 +30890,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr ""
@@ -30574,7 +30898,7 @@ msgstr ""
msgid "{0} are currently {1}"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr ""
@@ -30604,7 +30928,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} не может быть изменен, поскольку он не отменен. Пожалуйста, отмените документ перед созданием поправки."
@@ -30676,7 +31000,7 @@ msgstr ""
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30819,7 +31143,7 @@ msgstr ""
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr ""
@@ -30843,7 +31167,7 @@ msgstr ""
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr ""
@@ -30853,7 +31177,8 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
@@ -30903,23 +31228,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -30931,7 +31256,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr ""
@@ -30960,12 +31285,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr ""
@@ -31002,7 +31327,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr ""
@@ -31118,11 +31443,11 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
@@ -31271,11 +31596,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
index 36bcef8acc..3f3a72ad8d 100644
--- a/frappe/locale/sr.po
+++ b/frappe/locale/sr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-07-04 19:20\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-16 20:14\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "1 извештај"
msgid "1 comment"
msgstr "1 коментар"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "пре 1 дан"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 сат"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "пре 1 сата"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "пре 1 минут"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "пре 1 месец"
@@ -180,37 +180,37 @@ msgstr "1 д 2"
msgid "1 record will be exported"
msgstr "1 запис ће бити извезен"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "пре 1 секунде"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "пре 1 недељу"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "пре 1 годину"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "пре 2 сата"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "пре 2 месеца"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "пре 2 недеље"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "пре 2 године"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "пре 3 минута"
@@ -226,7 +226,7 @@ msgstr "4 сата"
msgid "5 Records"
msgstr "5 записа"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "пре 5 дана"
@@ -740,6 +740,11 @@ msgstr ">="
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Назив DocType-а треба да почне са словом и може садржати искључиво слова, бројеве, размаке, доње црте и цртице"
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Истакнути пост мора имати насловну слику"
@@ -774,6 +779,13 @@ msgstr "Симбол за ову валуту. На пример $"
msgid "A template already exists for field {0} of {1}"
msgstr "Шаблон већ постоји за поље {0} врсте {1}"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Реч саму по себи је лако наслутити."
@@ -1035,7 +1047,7 @@ msgstr "Радња / Путања"
msgid "Action Complete"
msgstr "Радња завршена"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Радња неуспешна"
@@ -1200,8 +1212,8 @@ msgid "Add Child"
msgstr "Додај зависни елемент"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1237,7 +1249,7 @@ msgid "Add Gray Background"
msgstr "Додај сиву позадину"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Додај групу"
@@ -2052,6 +2064,12 @@ msgstr "Дозвољено у помињанима"
msgid "Allowed Modules"
msgstr "Дозвољени модули"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -2068,6 +2086,42 @@ msgstr "Дозвољени уметни домени"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Дозвољавање DocType, DocType. Будите опрезни!"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Већ регистрован"
@@ -2159,7 +2213,7 @@ msgstr "Измена"
msgid "Amendment Naming Override"
msgstr "Занемари правила именовања измена"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Измена није дозвољена"
@@ -2248,16 +2302,6 @@ msgstr "Осим систем менаџера, улоге са правима
msgid "App"
msgstr "Апликација"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "ИД клијента апликације"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Тајни кључ клијента апликације"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2271,21 +2315,24 @@ msgstr "Лого апликације"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Назив апликације"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr "Назив апликације (назив клијента)"
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Апликација није пронађена за модул: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "Апликација {0} није инсталирана"
@@ -2531,7 +2578,7 @@ msgstr "Према Вашем захтеву, Ваш налог и подаци
msgid "Assign Condition"
msgstr "Додели услов"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Додели"
@@ -2540,7 +2587,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Додели"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Додели групи корисника"
@@ -2785,11 +2832,11 @@ msgstr "Прилог уклоњен"
msgid "Attachments"
msgstr "Прилози"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Покушава се повезивање са QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Покушава се покретање QZ Tray..."
@@ -2841,6 +2888,11 @@ msgstr "Аутентификација није успела приликом п
msgid "Author"
msgstr "Аутор"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr "Ауторизација"
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3075,7 +3127,7 @@ msgstr "Аватар"
msgid "Average"
msgstr "Просек"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Просечна вредност {0}"
@@ -3953,7 +4005,7 @@ msgid "Camera"
msgstr "Камера"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4105,11 +4157,11 @@ msgstr "Није могуће отказати пре подношења. Пог
msgid "Cannot cancel {0}."
msgstr "Није могуће отказати {0}."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Није могуће променити статус документа из 0 (нацрт) у 2 (отказан)"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Није могуће променити статус документа из 1 (поднет) у 0 (нацрт)"
@@ -4137,7 +4189,7 @@ msgstr "Није могуће креирати приватни радни пр
msgid "Cannot delete Home and Attachments folders"
msgstr "Није могуће обрисати почетне и приложене датотеке"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Није могуће обрисати или отказати јер је {0} {1} повезано са {2} {3} {4}"
@@ -4192,7 +4244,7 @@ msgstr "Није могуће уредити стандардне графико
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Није могуће уредити стандардне извештаје. Молимо Вас направите дупликат и креирајте нови извештај"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Није могуће уредити отказан документ"
@@ -4229,7 +4281,7 @@ msgstr "Није могуће мапирати више штампача на ј
msgid "Cannot import table with more than 5000 rows."
msgstr "Није могуће увозити табелу са више од 5000 редова."
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Није могуће повезати отказани документ: {0}"
@@ -4274,7 +4326,7 @@ msgstr "Није могуће ажурирати {0}"
msgid "Cannot use sub-query in order by"
msgstr "Није могуће користити подупит у команди сортирај по"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "Није могуће користити {0} у команди сортирај/групиши по"
@@ -4331,10 +4383,6 @@ msgstr "Опис категорије"
msgid "Category Name"
msgstr "Назив категорије"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Цент"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4620,6 +4668,10 @@ msgstr "Очисти и додај шаблон"
msgid "Clear & Add template"
msgstr "Очисти и додај шаблон"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Очисти све"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4741,8 +4793,10 @@ msgid "Client Credentials"
msgstr "Креденцијали клијента"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "ИД клијента"
@@ -4758,6 +4812,12 @@ msgstr "Ид клијента"
msgid "Client Information"
msgstr "Информације о клијенту"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr "Метаподаци клијента"
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4770,13 +4830,32 @@ msgstr "Клијентска скрипта"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Тајна клијента"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr "Основна тајна клијента"
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr "Client Secret Post"
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr "URI клијента"
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4861,7 +4940,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Сажми"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Сажми све"
@@ -5007,7 +5086,7 @@ msgstr "Колоне / Поља"
msgid "Columns based on"
msgstr "Колоне засноване на"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "Комбинација врсте дозволе ({0}) и врсте одговора ({1}) није дозвољена"
@@ -5256,6 +5335,12 @@ msgstr "Опис услова"
msgid "Conditions"
msgstr "Услови"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr "Конфигурација"
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5294,7 +5379,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Конфигуришите различите аспекте како функционише именовање докумената, као што су серије именовања, тренутни бројач."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Потврди"
@@ -5303,7 +5388,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Потврди"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Потврди приступ"
@@ -5316,7 +5401,7 @@ msgstr "Потврди уклањање налога"
msgid "Confirm New Password"
msgstr "Потврди нову лозинку"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Потврди лозинку"
@@ -5357,8 +5442,8 @@ msgstr "Повезане апликације"
msgid "Connected User"
msgstr "Повезани корисник"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Повезано са QZ Tray!"
@@ -5450,6 +5535,11 @@ msgstr "Подешавање за контактирање"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Опције за контакт, попут \"Упит за продају, Упит за подршку\" итд., свака у новом реду или одвојена зарезима."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Контакти"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "Садржи {0} исправку безбедности"
@@ -5468,7 +5558,7 @@ msgstr "Садржи {0} исправки безбедности"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5550,7 +5640,7 @@ msgstr "Статус доприноса"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Контролише да ли нови корисници могу да се региструју користећи овај кључ за пријављивање путем друштвених мрежа. Уколико није постављено, поштују се подешавања веб-сајта."
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Копирано у међуспремник."
@@ -5591,7 +5681,7 @@ msgstr "Исправна верзија :"
msgid "Could not connect to outgoing email server"
msgstr "Није било могуће повезати се са сервером за излазне имејлове"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "Није било могуће пронаћи {0}"
@@ -5619,7 +5709,7 @@ msgstr "Није било могуће сачувати, проверите ун
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Бројчано"
@@ -6324,7 +6414,7 @@ msgstr "Тамна тема"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Контролна табла"
@@ -7494,6 +7584,7 @@ msgstr "Статус документа следећих стања је про
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7739,7 +7830,7 @@ msgstr "Услов правила именовања документа"
msgid "Document Naming Settings"
msgstr "Подешавање именовања докумената"
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "Документ у реду за обраду"
@@ -7896,7 +7987,7 @@ msgid "Document Types and Permissions"
msgstr "Врсте и дозволе документа"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr "Документ је откључан"
@@ -8033,7 +8124,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr "Немојте кодирати HTML тагове попут <script> или знакове попут < or >, јер могу бити намерно коришћени у овом пољу"
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "Немате налог?"
@@ -8288,7 +8379,7 @@ msgstr "ИЗЛАЗ"
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8840,6 +8931,12 @@ msgstr "Омогући аутоматско повезивање у докуме
msgid "Enable Comments"
msgstr "Омогући коментаре"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr "Омогући динамичку регистрацију клијента"
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9231,7 +9328,7 @@ msgstr "Евиденције грешака"
msgid "Error Message"
msgstr "Порука о грешци"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "Грешка при повезивању са QZ Tray апликацијом...
Потребно је да имате инсталирану и покренуту QZ Tray апликацију, да бисте могли да користите функцију необрађене штампе.
Кликните овде да бисте преузели и инсталирали QZ Tray.
Кликните овде да бисте научили више о необрађеној штампи.."
@@ -9442,7 +9539,7 @@ msgstr "Извршавање кода"
msgid "Executing..."
msgstr "Извршавање..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "Време извршавања: {0} секунди"
@@ -9468,7 +9565,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Прошири"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Прошири све"
@@ -9529,7 +9626,7 @@ msgstr "Време истека страница са QR кодом"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9894,7 +9991,7 @@ msgstr "Преузми подразумеване документе за гло
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9965,7 +10062,7 @@ msgstr "Поље за праћење"
msgid "Field type cannot be changed for {0}"
msgstr "Врста поља не може бити промењена за {0}"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "Поље {0} не постоји у {1}"
@@ -10008,7 +10105,7 @@ msgstr "Назив поља '{0}' је у конфликту са {1} назив
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Назив поља је ограничен на 64 карактера ({0})"
@@ -10024,7 +10121,7 @@ msgstr "Назив поља које ће бити DocType за ово линк
msgid "Fieldname {0} appears multiple times"
msgstr "Назив поља {0} се појављује више пута"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}"
@@ -10472,7 +10569,7 @@ msgstr "Прати"
msgid "Followed by"
msgstr "Праћен од стране"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "Следећи филтери извештаја имају недостајуће вредности:"
@@ -10657,7 +10754,7 @@ msgstr "За корисника"
msgid "For Value"
msgstr "За вредност"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "За поређење, користите >5, <10 или =324. За опсеге, користите 5:10 (за вредности између 5 и 10)."
@@ -10935,7 +11032,7 @@ msgstr "Датум почетка"
msgid "From Date Field"
msgstr "Поље за датум почетка"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "Од врсте документа"
@@ -10995,7 +11092,7 @@ msgstr "Функција"
msgid "Function Based On"
msgstr "Функција заснована на"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "Функција {0} није на листи дозвољених."
@@ -11073,7 +11170,7 @@ msgid "Generate Random Password"
msgstr "Генериши насумичну лозинку"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Генериши URL за праћење"
@@ -11502,7 +11599,7 @@ msgstr "Група класе објекта"
msgid "Group your custom doctypes under modules"
msgstr "Групиши своје прилагођене врсте докумената унутар модула"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "Груписано по {0}"
@@ -11552,7 +11649,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11781,7 +11878,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "Ево Вашег URL за праћење"
@@ -11823,6 +11920,7 @@ msgstr "Сакривена поља"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Сакриј"
@@ -11984,7 +12082,7 @@ msgstr "Правило са вишим приоритетом биће прим
msgid "Highlight"
msgstr "Истакнуто"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Савет: Укључите симболе, бројеве и велика слова у лозинку"
@@ -12067,15 +12165,20 @@ msgstr "Сата"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "Како треба да се форматира ова валута? Уколико није подешено, користиће се подразумеване вредности система"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr "Људски читљив назив намењен за приказивање крајњем кориснику."
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr "Изгледа да још увек немаш приступ ниједном радном простору, увек можеш да направиш један за себе. Кликни на дугме Креирај радни простор да га направиш.
"
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12756,11 +12859,11 @@ msgstr "Укључи тему из апликација"
msgid "Include Web View Link in Email"
msgstr "Укључи линк ка веб-приказу у имејлу"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "Укључи филтере"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "Укључи индентацију"
@@ -12827,11 +12930,11 @@ msgstr "Погрешно корисничко име или лозинка"
msgid "Incorrect Verification code"
msgstr "Погрешан верификациони код"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "Погрешна вредност у реду {0}:"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "Погрешна вредност:"
@@ -12918,7 +13021,7 @@ msgstr "Унеси изнад"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "Унеси након"
@@ -13174,7 +13277,7 @@ msgstr "Неважећа вредност филтера"
msgid "Invalid Home Page"
msgstr "Неважећа почетна страница"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Неважећи линк"
@@ -13208,7 +13311,7 @@ msgstr "Неважећа опција"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "Неважећи излазни имејл сервер или порт: {0}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Неважећи излазни формат"
@@ -13220,9 +13323,9 @@ msgstr "Неважећа измена"
msgid "Invalid Parameters."
msgstr "Неважећи параметри."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "Неважећа лозинка"
@@ -13302,7 +13405,7 @@ msgstr "Неважећа врста услова у угњежденим фил
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Неважећи смер у Сортирај по: {0}. Мора бити 'РАСТУЋЕ' или 'ОПАДАЈУЋЕ'."
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "Неважећи статус документа"
@@ -13326,10 +13429,14 @@ msgstr "Неважећи формат поља у {0}: {1}. Користите '
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Неважећи назив поља у функцији: {0}. Дозвољени су само једноставни називи поља."
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Неважећи назив поља {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr "Неважећи назив поља: {0}"
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr "Неважећа врста поља: {0}"
@@ -13383,7 +13490,7 @@ msgstr "Неважећи или оштећен садржај за увоз"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Неважеће преусмерење регеx функције у реду #{}: {}"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "Неважећи аргументи захтева"
@@ -14132,7 +14239,7 @@ msgstr "Ознака је обавезна"
msgid "Landing Page"
msgstr "Циљна страница"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Пејзажни"
@@ -14428,7 +14535,7 @@ msgstr "Писмо"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14742,7 +14849,7 @@ msgstr "Линкови"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Листа"
@@ -15056,6 +15163,11 @@ msgstr "Пријављивање путем корисничком имена и
msgid "Login with {0}"
msgstr "Пријављивање са {0}"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr "Лого URI"
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15242,7 +15354,7 @@ msgstr "Обавезно зависи од"
msgid "Mandatory Depends On (JS)"
msgstr "Обавезно зависи од (JS)"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Недостају обавезни подаци:"
@@ -15465,7 +15577,7 @@ msgstr "Значење опција поднеси, откажи, измени"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15663,6 +15775,12 @@ msgstr "Мета наслов"
msgid "Meta title for SEO"
msgstr "Мета наслов за SEO"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr "Метаподаци"
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15682,7 +15800,7 @@ msgstr "Мета наслов за SEO"
msgid "Method"
msgstr "Метода"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr "Метода није дозвољена"
@@ -15776,7 +15894,7 @@ msgstr "Недостајуће поље"
msgid "Missing Fields"
msgstr "Недостајућа поља"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "Недостајући обавезни филтери"
@@ -15784,7 +15902,7 @@ msgstr "Недостајући обавезни филтери"
msgid "Missing Permission"
msgstr "Недостајуће дозволе"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "Недостајуће вредности"
@@ -15850,7 +15968,7 @@ msgstr "Измењено од стране"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16150,7 +16268,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16318,7 +16436,7 @@ msgstr "Подешавање навигације"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Негативна вредност"
@@ -16447,7 +16565,7 @@ msgstr "Нова бројчана картица"
msgid "New Onboarding"
msgstr "Нова уводна обука"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Нова лозинка"
@@ -16492,7 +16610,26 @@ msgstr "Нови назив радног тока"
msgid "New Workspace"
msgstr "Нови радни простор"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "Нова лозинка не сме бити иста као стара лозинка"
@@ -16524,7 +16661,7 @@ msgstr "Нова вредност треба да буде постављена"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "Нови {0}"
@@ -16675,7 +16812,7 @@ msgstr "Следеће на клик"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Не"
@@ -16704,7 +16841,7 @@ msgid "No Copy"
msgstr "Без копирања"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16963,7 +17100,7 @@ msgstr "Број редова (максимално 500)"
msgid "No of Sent SMS"
msgstr "Број послатих SMS порука"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Не постоји дозвола за {0}"
@@ -17056,6 +17193,12 @@ msgstr "Није негативна вредност"
msgid "Non-Conforming"
msgstr "Неподударан"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Ниједном"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Ниједно: Крај радног тока"
@@ -17091,7 +17234,7 @@ msgstr "Нису потомци од"
msgid "Not Equals"
msgstr "Није једнако"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "Није пронађено"
@@ -17117,9 +17260,9 @@ msgstr "Није повезани ни са једним записом"
msgid "Not Nullable"
msgstr "Не може бити празно"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17227,7 +17370,7 @@ msgstr "Није у развојном режиму! Поставите у си
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Није дозвољено"
@@ -17548,6 +17691,11 @@ msgstr "Подешавање OAuth провајдера"
msgid "OAuth Scope"
msgstr "OAuth опсег"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr "OAuth подешавања"
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "OAuth је омогућен, али није ауторизован. Молимо Вас да користите дугме \"Ауторизуј приступ путем API-ја\" за то."
@@ -17797,7 +17945,7 @@ msgstr "Искључиво менаџер радног простора може
msgid "Only allowed to export customizations in developer mode"
msgstr "Извоз прилагођавања је дозвољен само у развојном режиму"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "Искључиво нацрти докумената могу бити одбачени"
@@ -17828,7 +17976,7 @@ msgstr "Могу се уређивати само извештаји креир
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Само стандардни DocType-ови могу бити прилагођени путем поља прилагоди образац."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr "Искључиво администратор може обрисати стандардни DocType."
@@ -17836,7 +17984,7 @@ msgstr "Искључиво администратор може обрисати
msgid "Only the assignee can complete this to-do."
msgstr "Искључиво додељени корисник може завршити овај задатак."
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "Дозвољено је искључиво {0} извештаја послатих путем имејла по кориснику."
@@ -17969,7 +18117,7 @@ msgstr "Отворено"
msgid "Operation"
msgstr "Операција"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "Оператор мора бити један од следећих {0}"
@@ -18084,7 +18232,7 @@ msgstr "Историја организације"
msgid "Org History Heading"
msgstr "Наслов историје организације"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "Оријентација"
@@ -18166,9 +18314,11 @@ msgstr "Власник"
msgid "PATCH"
msgstr "PATCH"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "PDF"
@@ -18463,9 +18613,9 @@ msgstr "Матична врста документа је неопходна з
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Матични означава назив документа у који ће се подаци додати."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
-msgstr "Груписање матично-ка-зависном или зависно-ка-матичном није дозвољено."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
+msgstr ""
#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
@@ -18569,7 +18719,7 @@ msgstr "Лозинка није пронађена за {0} {1} {2}"
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Упутство за ресетовање лозинке је послато на имејл корисника {}"
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "Лозинка постављена"
@@ -18581,7 +18731,7 @@ msgstr "Величина лозинке премашује дозвољену г
msgid "Password size exceeded the maximum allowed size."
msgstr "Величине лозинке премашује дозвољену границу."
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "Лозинке се не подударају"
@@ -18890,7 +19040,7 @@ msgstr "Телефон бр."
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Број телефона {0} постављен у пољу {1} није валидан."
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -19061,7 +19211,7 @@ msgstr "Молимо Вас да омогућите барем један кљу
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Молимо Вас да омогућите искачуће прозоре"
@@ -19078,23 +19228,23 @@ msgstr "Молимо Вас да омогућите {} пре него што н
msgid "Please ensure that your profile has an email address"
msgstr "Молимо Вас да се уверите да Ваш профил садржи имејл адресу"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Молимо Вас да унесте URL токен за приступ"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Молимо Вас да унесете URL ауторизацију"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Молимо Вас да унесете основни URL"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Молимо Вас да унесете клијентски ИД пре него што је пријављивање путем друштвених мрежа омогућено"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Молимо Вас да унесте тајну клијента пре него што је пријављивање путем друштвених мрежа омогућено"
@@ -19102,7 +19252,7 @@ msgstr "Молимо Вас да унесте тајну клијента пре
msgid "Please enter OpenID Configuration URL"
msgstr "Молимо Вас да унесете URL за OpenID конфигурацију"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Молимо Вас да унесете URL за преусмеравање"
@@ -19114,7 +19264,7 @@ msgstr "Молимо Вас да унесете важећу имејл адре
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr "Молимо Вас да унесете и своју имејл адресу и поруку како бисмо могли да Вам се јавимо! Хвала Вам!"
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Молимо Вас да унесете лозинку"
@@ -19127,11 +19277,11 @@ msgstr "Молимо Вас да унесете лозинку за: {0}"
msgid "Please enter valid mobile nos"
msgstr "Молимо Вас да унесете важеће бројеве мобилних телефона"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "Молимо Вас да унесете своју нову лозинку."
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "Молимо Вас да унесете своју стару лозинку."
@@ -19147,7 +19297,7 @@ msgstr "Молимо Вас да се пријавите како бисте о
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Молимо Вас да се уверите да документи референтне комуникације нису кружно повезани."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Молимо Вас да освежите како бисте добили најновији документ."
@@ -19215,7 +19365,7 @@ msgstr "Молимо Вас да изаберете важећи филтер д
msgid "Please select applicable Doctypes"
msgstr "Молимо Вас да изаберете примењиве DocType-ове"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Молимо Вас да изаберете барем 1 колону из {0} за сортирање/груписање"
@@ -19249,7 +19399,7 @@ msgstr "Молимо Вас да поставите мапирање штамп
msgid "Please set filters"
msgstr "Молимо Вас да поставите филтере"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Молимо Вас да поставите вредности филтера у табели филтер извештаја."
@@ -19322,10 +19472,19 @@ msgstr "Молимо Вас да ажурирате {} пре него што н
msgid "Please use a valid LDAP search filter"
msgstr "Молимо Вас да користите важећи LDAP филтер за претрагу"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr "Молимо Вас да користите следеће линкове да преузмете резервну копију фајла."
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Молимо Вас да посетите https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key за више информација."
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr "URI политике"
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19371,7 +19530,7 @@ msgstr "Ставка менија портала"
msgid "Portal Settings"
msgstr "Подешавање портала"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "Портрет"
@@ -19625,7 +19784,7 @@ msgstr "Примарни кључ за DocType {0} не може бити про
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19686,6 +19845,11 @@ msgstr "Грешка у формату за штампу"
msgid "Print Format Field Template"
msgstr "Шаблон поља формата за штампу"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr "Формат штампе за"
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19696,6 +19860,10 @@ msgstr "Помоћ за формат штампе"
msgid "Print Format Type"
msgstr "Врста формата штампе"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr "Формат штампе није пронађен"
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "Формат штампе {0} је онемогућен"
@@ -19731,7 +19899,7 @@ msgstr "Сакриј штампу уколико нема вредности"
msgid "Print Language"
msgstr "Језик штампе"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "Штампа је послата на штампач!"
@@ -19749,7 +19917,7 @@ msgstr "Сервер за штампу"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Подешавање штампе"
@@ -19859,6 +20027,10 @@ msgstr "Приватно"
msgid "Private Files (MB)"
msgstr "Приватни фајлови (МБ)"
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr "Резервна копија приватних фајлова:"
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19981,6 +20153,10 @@ msgstr "Јавни"
msgid "Public Files (MB)"
msgstr "Јавни фајлови (МБ)"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr "Резервна копија јавних фајлова:"
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -20120,7 +20296,7 @@ msgstr "QR код"
msgid "QR Code for Login Verification"
msgstr "QR код за верификацију пријављивања"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "QZ Tray неуспешно: "
@@ -20333,7 +20509,7 @@ msgstr "Оцена"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Необрађене команде"
@@ -20833,7 +21009,7 @@ msgstr "Извор приступа"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21162,6 +21338,8 @@ msgstr "Одговори свима"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21177,8 +21355,11 @@ msgstr "Одговори свима"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Извештај"
@@ -21247,7 +21428,7 @@ msgstr "Менаџер извештавања"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "Назив извештаја"
@@ -21303,7 +21484,7 @@ msgstr "Извештај нема нумеричких поља, молимо В
msgid "Report initiated, click to view status"
msgstr "Извештај је покренут, кликните да бисте погледали статус"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "Достигнуто је ограничење извештаја"
@@ -21319,7 +21500,7 @@ msgstr "Извештај је успешно ажуриран"
msgid "Report was not saved (there were errors)"
msgstr "Извештај није сачуван (догодиле су се грешке)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Извештај са више од 10 колона изгледа боље у пејзажном режиму."
@@ -21540,6 +21721,31 @@ msgstr "Врати на подразумевана подешавања"
msgid "Reset your password"
msgstr "Ресетуј своју лозинку"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr "Ресурс"
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr "Документација о ресурсу"
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr "Назив ресурса"
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr "URI политике ресурса"
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr "URI услова коришћења ресурса"
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21916,7 +22122,7 @@ msgstr "Преусмеравање путање"
msgid "Route: Example \"/app\""
msgstr "Путања: Пример \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Ред"
@@ -22201,7 +22407,7 @@ msgstr "Субота"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22228,7 +22434,7 @@ msgstr "Сачувај као"
msgid "Save Customizations"
msgstr "Сачувај прилагођавања"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "Сачувај извештај"
@@ -22404,6 +22610,11 @@ msgstr "Опсег"
msgid "Scopes"
msgstr "Опсези"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr "Подржани опсег"
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22684,7 +22895,7 @@ msgid "Select Column"
msgstr "Изабери колону"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Изабери колоне"
@@ -23225,7 +23436,7 @@ msgstr "Серија {0} је већ искоришћена у {1}"
msgid "Server Action"
msgstr "Серверска радња"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Серверска грешка"
@@ -23291,7 +23502,7 @@ msgstr "Подразумеване вредности сесије"
msgid "Session Defaults Saved"
msgstr "Подразумеване вредности сесије су сачуване"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "Сесија је истекла"
@@ -23349,7 +23560,7 @@ msgstr "Постави филтере"
msgid "Set Filters for {0}"
msgstr "Постави филтере за {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr "Постави ниво"
@@ -23591,7 +23802,7 @@ msgstr "Поставке > Корисник"
msgid "Setup > User Permissions"
msgstr "Поставке > Корисничке дозволе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Поставке аутоматског имејла"
@@ -23680,6 +23891,8 @@ msgstr "Пречице"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Прикажи"
@@ -23706,6 +23919,12 @@ msgstr "Прикажи апсолутне вредности"
msgid "Show All"
msgstr "Прикажи све"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr "Прикажи метаподатке ауторизационог сервера"
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Прикажи календар"
@@ -23823,6 +24042,12 @@ msgstr "Прикажи преглед искачућег прозора"
msgid "Show Processlist"
msgstr "Прикажи листу процеса"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr "Прикажи метаподатке заштићеног ресурса"
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "Прикажи повезане грешке"
@@ -23849,6 +24074,12 @@ msgstr "Прикажи наслове одељака"
msgid "Show Sidebar"
msgstr "Прикажи бочну траку"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr "Прикажи кључ за пријављивање путем друштвених мрежа као ауторизациони сервер"
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23879,6 +24110,12 @@ msgstr "Прикажи обилазак"
msgid "Show Traceback"
msgstr "Прикажи след грешке"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr "Прикажи вредности изнад графикона"
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Прикажи упозорења"
@@ -23932,6 +24169,12 @@ msgstr "Прикажи цео образац уместо брзог уноса
msgid "Show in Module Section"
msgstr "Прикажи у одељку модула"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr "Прикажи у метаподацима ресурса"
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -24017,7 +24260,7 @@ msgid "Sign Up is disabled"
msgstr "Регистрација је онемогућена"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "Региструј се"
@@ -24103,8 +24346,10 @@ msgstr "Прескочи"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Прескочи ауторизацију"
@@ -24268,6 +24513,16 @@ msgstr "SocketIO транспортни режим"
msgid "Soft-Bounced"
msgstr "Привремено неуспешно"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr "ID софтвера"
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr "Верзија софтвера"
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "Неке колоне могу бити исечене приликом штампања у PDF формату. Покушајте да број колона буде мањи од 10."
@@ -24335,7 +24590,7 @@ msgstr "Поље за сортирање {0} мора бити важећи на
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24425,7 +24680,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Стандардно"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "Стандардни DocType не може бити обрисан."
@@ -24441,7 +24696,7 @@ msgstr "Стандардно није постављено"
msgid "Standard Permissions"
msgstr "Стандардне дозволе"
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "Стандардни формат штампе не може бити ажуриран"
@@ -24662,7 +24917,7 @@ msgstr "Временски интервал статистике"
msgid "Status"
msgstr "Статус"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Статус ажуриран"
@@ -24993,7 +25248,7 @@ msgstr "Порука о успеху"
msgid "Success title"
msgstr "Наслов успеха"
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "Успешно! Спремни сте за наставак 👍"
@@ -25061,7 +25316,7 @@ msgstr "Предложено корисничко име: {0}"
msgid "Sum"
msgstr "Збир"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Збир за {0}"
@@ -25170,7 +25425,7 @@ msgstr "Синхронизовање"
msgid "Syncing {0} of {1}"
msgstr "Синхронизовање {0} од {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "Грешка у синтакси"
@@ -25348,6 +25603,7 @@ msgstr "Евиденције система"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25407,6 +25663,11 @@ msgctxt "Number system"
msgid "T"
msgstr "Т"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr "URI услова коришћења"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25477,7 +25738,7 @@ msgstr "Скраћена табела"
msgid "Table updated"
msgstr "Табела ажурирана"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "Табела {0} не може бити празна"
@@ -25739,7 +26000,7 @@ msgstr "API кључ за интернет претраживач добијен
"\"APIs & Services\" > \"Credentials\"\n"
""
-#: frappe/database/database.py:475
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr "Промене су враћене на претходно стање."
@@ -25797,11 +26058,11 @@ msgstr "Следећи дани за задатак су поновљени: {0}
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
msgstr "Следећа скрипта заглавља ће додати тренутни датум у елемент класе 'хеадер-цонтент' у 'HTML заглавље'"
-#: frappe/core/doctype/data_import/importer.py:1086
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr "Следеће вредности нису важеће: {0}. Дозвољене вредности су: {1}"
-#: frappe/core/doctype/data_import/importer.py:1043
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr "Следеће вредности не постоје за: {0}: {1}"
@@ -25840,7 +26101,7 @@ msgstr "Следећи обилазак ће почети од места на
msgid "The number of seconds until the request expires"
msgstr "Број секунди до истека захтева"
-#: frappe/www/update-password.html:88
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "Лозинка за Ваш налог је истекла."
@@ -25865,7 +26126,7 @@ msgstr "Линк за ресетовање лозинке је истекао"
msgid "The reset password link has either been used before or is invalid"
msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи"
-#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Ресурс који тражите није доступан"
@@ -26005,6 +26266,12 @@ msgstr "Дошло је до грешака приликом постављањ
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr "Ове најаве ће се појавити унутар обавештења које се може затворити, испод навигационе траке."
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr ""
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -26054,7 +26321,7 @@ msgstr "Ове године"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ова радња је неповратна. Да ли желите да наставите?"
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "Ова радња је дозвољена само за {}"
@@ -26081,7 +26348,7 @@ msgstr "Овај доцтyпе нема неповезаних поља која
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Овај доцтyпе има неизвршене миграције, покрените 'bench migrate' пре измене како бисте избегли губитак измена."
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Овај документ се не може тренутно обрисати јер га други корисник уређује. Покушајте поново касније."
@@ -26097,7 +26364,7 @@ msgstr "Овај документ има несачуване измене ко
msgid "This document is already amended, you cannot ammend it again"
msgstr "Овај документ је већ измењен и не може поново бити измењен"
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Овај документ је тренутно закључан и чека на извршење. Покушајте поново касније."
@@ -26162,7 +26429,7 @@ msgstr "Овај провајдер геолокације још увек ни
msgid "This goes above the slideshow."
msgstr "Ово се приказује изнад презентације."
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај."
@@ -26610,7 +26877,7 @@ msgstr "Да бисте додали динамичке вредности из
"\n"
"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
+
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
msgstr "Непознат"
@@ -27970,7 +28288,7 @@ msgstr "Корисничка дозвола"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/query_report.js:1907
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Корисничке дозволе"
@@ -28274,15 +28592,15 @@ msgstr "Вредност промењена"
msgid "Value To Be Set"
msgstr "Вредност коју треба поставити"
-#: frappe/model/base_document.py:1054 frappe/model/document.py:833
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Вредност се не може променити за {0}"
-#: frappe/model/document.py:779
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "Вредност не може бити негативна за"
-#: frappe/model/document.py:783
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "Вредност не може бити негативна за {0}: {1}"
@@ -28308,6 +28626,12 @@ msgstr "Вредност из овог поља биће постављена к
msgid "Value must be one of {0}"
msgstr "Вредност мора бити једна од {0}"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
+
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
@@ -28645,7 +28969,7 @@ msgstr "Веб-страница"
msgid "Web Page Block"
msgstr "Блок веб-странице"
-#: frappe/public/js/frappe/utils/utils.js:1709
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr "URL веб-странице"
@@ -29043,7 +29367,7 @@ msgstr "Биће приказано само уколико су наслови
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
msgstr "Планирани задаци ће се извршавати само једном дневно за неактивне сајтове. Поставите на 0 да бисте избегли аутоматско искључивање планера."
-#: frappe/public/js/frappe/form/print_utils.js:15
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "Са заглављем"
@@ -29184,7 +29508,7 @@ msgstr "Радни ток је успешно ажуриран"
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
-#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/utils/utils.js:932
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Радни простор"
@@ -29372,7 +29696,7 @@ msgstr "Жута"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Да"
@@ -29451,7 +29775,7 @@ msgstr "Немате дозволу да одштампате овај изве
msgid "You are not allowed to send emails related to this document"
msgstr "Немате дозволу да пошаљете имејл везан за овај документ"
-#: frappe/website/doctype/web_form/web_form.py:566
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "Немате дозволу да ажурирате овај документ веб-обрасца"
@@ -29467,7 +29791,7 @@ msgstr "Није Вам дозвољено да приступите овој с
msgid "You are not permitted to access this page."
msgstr "Немате дозволу да приступите овој страници."
-#: frappe/__init__.py:677
+#: frappe/__init__.py:465
msgid "You are not permitted to access this resource. Login to access"
msgstr "Немате дозволу за приступ овом ресурсу. Пријавите се за приступ"
@@ -29475,7 +29799,7 @@ msgstr "Немате дозволу за приступ овом ресурсу.
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Сада пратите овај документ. Добијаћете дневна обавештења путем имејла. Можете ово променити у подешавањима корисника."
-#: frappe/core/doctype/installed_applications/installed_applications.py:86
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Дозвољено Вам је да ажурирате редослед, немојте уклањати или додавати апликације."
@@ -29520,7 +29844,7 @@ msgstr "Можете променити политику чувања подат
msgid "You can continue with the onboarding after exploring this page"
msgstr "Можете наставити са уводном обуком након што истражите ову страницу"
-#: frappe/model/delete_doc.py:136
+#: frappe/model/delete_doc.py:137
msgid "You can disable this {0} instead of deleting it."
msgstr "Можете онемогућити овај {0} уместо да га обришете."
@@ -29639,7 +29963,7 @@ msgstr "Немате дозволу за читање или избор за {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ."
-#: frappe/app.py:360
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "Немате довољно дозвола да довршите ову радњу"
@@ -29659,7 +29983,7 @@ msgstr "Немате дозволу да откажете све повезан
msgid "You don't have access to Report: {0}"
msgstr "Немате приступ извештају: {0}"
-#: frappe/website/doctype/web_form/web_form.py:769
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr "Немате дозволе за приступ DocType-у {0}."
@@ -29732,15 +30056,15 @@ msgstr "Ви сте последњи пут ово уредили"
msgid "You must add atleast one link."
msgstr "Морате додати барем један линк."
-#: frappe/website/doctype/web_form/web_form.py:765
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr "Морате бити пријављени да бисте користили овај образац."
-#: frappe/website/doctype/web_form/web_form.py:606
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "Морате бити пријављени да бисте поднели овај образац"
-#: frappe/model/document.py:356
+#: frappe/model/document.py:358
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Неопходна Вам је дозвола '{0}' на {1} {2} да бисте извршили ову радњу."
@@ -29908,11 +30232,11 @@ msgstr "Ваш образац је успешно ажуриран"
msgid "Your login id is"
msgstr "Ваш ИД за пријављивање је"
-#: frappe/www/update-password.html:167
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr "Нова лозинка је успешно постављена."
-#: frappe/www/update-password.html:147
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr "Стара лозинка је нетачна."
@@ -29926,7 +30250,7 @@ msgstr "Назив и адреса Ваше организације за под
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ваш упит је примљен. Одговорићемо Вам ускоро, уколико имате додатне информације молимо Вас да одговорите на ову поруку."
-#: frappe/app.py:353
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили."
@@ -29938,7 +30262,7 @@ msgstr "Ваш сајт је тренутно на одржавању или с
msgid "Your verification code is {0}"
msgstr "Ваш верификациони код је {0}"
-#: frappe/utils/data.py:1557
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "Нула"
@@ -29962,7 +30286,7 @@ msgstr "_doctype"
msgid "_report"
msgstr "_report"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:360
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` ради само са `as_list=True` или `as_dict=True`"
@@ -29985,7 +30309,7 @@ msgstr "афтеринсерт"
msgid "amend"
msgstr "измени"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "и"
@@ -30043,7 +30367,7 @@ msgid "cyan"
msgstr "цијан"
#: frappe/public/js/frappe/form/controls/duration.js:218
-#: frappe/public/js/frappe/utils/utils.js:1116
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "д"
@@ -30210,7 +30534,7 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip није пронађен у PATH! Ово је неопходно за прављење резервне копије."
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1120
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "х"
@@ -30284,7 +30608,7 @@ msgid "long"
msgstr "дуго"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1124
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
@@ -30474,7 +30798,7 @@ msgid "restored {0} as {1}"
msgstr "враћено {0} као {1}"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1128
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -30808,7 +31132,7 @@ msgstr "{0} је већ отказао претплату"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} је већ отказао претплату за {1} {2}"
-#: frappe/utils/data.py:1750
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} и {1}"
@@ -30816,7 +31140,7 @@ msgstr "{0} и {1}"
msgid "{0} are currently {1}"
msgstr "{0} је тренутно {1}"
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} су неопходни"
@@ -30846,7 +31170,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} је отказао овај документ {1}"
-#: frappe/model/document.py:546
+#: frappe/model/document.py:548
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} не може бити измењен јер није отказан. Молимо Вас да откажете документ пре него што направите измену."
@@ -30918,7 +31242,7 @@ msgstr "{0} поље не може бити постављено као једи
msgid "{0} fields cannot contain backticks (`): {1}"
msgstr "Поља {0} не смеју да садрже backticks (`): {1}"
-#: frappe/core/doctype/data_import/importer.py:1068
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} формат није могао бити одређен из вредности у овој колони. Подразумевано на {1}."
@@ -31061,7 +31385,7 @@ msgstr "{0} није важећи матични DocType за {1}"
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} није важеће матично поље за {1}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} није важећи формат извештаја. Формат извештаја треба да буде један од следећих {1}"
@@ -31085,7 +31409,7 @@ msgstr "{0} није један од {1}"
msgid "{0} is not set"
msgstr "{0} није постављен"
-#: frappe/printing/doctype/print_format/print_format.py:164
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} је сада подразумевани формат за штампање за {1} доцтyпе"
@@ -31095,7 +31419,8 @@ msgstr "{0} је једно од {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} је неопходно"
@@ -31145,23 +31470,23 @@ msgstr "пре {0} минута"
msgid "{0} months ago"
msgstr "пре {0} месеци"
-#: frappe/model/document.py:1793
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} мора бити након {1}"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1560
msgid "{0} must be beginning with '{1}'"
msgstr "{0} мора почињати са '{1}'"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1562
msgid "{0} must be equal to '{1}'"
msgstr "{0} мора бити једнако '{1}'"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1558
msgid "{0} must be none of {1}"
msgstr "{0} не сме бити ниједно од {1}"
-#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} мора бити један од {1}"
@@ -31173,7 +31498,7 @@ msgstr "{0} мора прво бити постављено"
msgid "{0} must be unique"
msgstr "{0} мора бити јединствено"
-#: frappe/model/document.py:1556
+#: frappe/model/document.py:1564
msgid "{0} must be {1} {2}"
msgstr "{0} мора бити {1} {2}"
@@ -31202,12 +31527,12 @@ msgstr "{0} од {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} од {1} ({2} редова са зависним подацима)"
-#: frappe/utils/data.py:1565
+#: frappe/utils/data.py:1566
msgctxt "Money in words"
msgid "{0} only."
msgstr "само {0}."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} или {1}"
@@ -31244,7 +31569,7 @@ msgstr "{0} је уклонио свој задатак."
msgid "{0} role does not have permission on any doctype"
msgstr "Улога {0} нема дозволе ни за једну врсту документа"
-#: frappe/model/document.py:1786
+#: frappe/model/document.py:1794
msgid "{0} row #{1}: "
msgstr "{0} ред#{1}: "
@@ -31360,11 +31685,11 @@ msgstr "{0} {1} не постоји, изаберите ново тачку за
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} је повезан са следећим поднетим документима: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:580
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} није пронађен"
-#: frappe/model/delete_doc.py:247
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}."
@@ -31513,11 +31838,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т
msgid "{} Complete"
msgstr "{} завршено"
-#: frappe/utils/data.py:2522
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr "{} Неважећи пyтхон код на линији {}"
-#: frappe/utils/data.py:2531
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Потенцијално неважећи пyтхон код.
{}"
diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po
index 66b971b514..6475c13adb 100644
--- a/frappe/locale/sr_CS.po
+++ b/frappe/locale/sr_CS.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-27 08:47+0000\n"
-"PO-Revision-Date: 2025-07-06 19:35\n"
+"POT-Creation-Date: 2025-07-13 09:36+0000\n"
+"PO-Revision-Date: 2025-07-16 20:14\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -149,7 +149,7 @@ msgstr "1 izveštaj"
msgid "1 comment"
msgstr "1 komentar"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr "pre 1 dan"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "pre 1 sata"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "pre 1 minut"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "pre 1 mesec"
@@ -180,37 +180,37 @@ msgstr "1 оd 2"
msgid "1 record will be exported"
msgstr "1 zapis će biti izvezen"
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr "pre 1 sekunde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "pre 1 nedelju"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "pre 1 godinu"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr "pre 2 sata"
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr "pre 2 meseca"
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr "pre 2 nedelje"
-#: frappe/tests/test_utils.py:718
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr "pre 2 godine"
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr "pre 3 minuta"
@@ -226,7 +226,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 zapisa"
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr "pre 5 dana"
@@ -740,6 +740,11 @@ msgstr ">="
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Naziv DocType-a treba da počne sa slovom i može sadržati isključivo slova, brojeve, razmake, donje crte i crtice"
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Istaknuti post mora imati naslovnu sliku"
@@ -774,6 +779,13 @@ msgstr "Simbol za ovu valutu. Na primer $"
msgid "A template already exists for field {0} of {1}"
msgstr "Šablon već postoji za polje {0} vrste {1}"
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Reč samu po sebi je lako naslutiti."
@@ -1035,7 +1047,7 @@ msgstr "Radnja / Putanja"
msgid "Action Complete"
msgstr "Radnja završena"
-#: frappe/model/document.py:1873
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "Radnja neuspešna"
@@ -1200,8 +1212,8 @@ msgid "Add Child"
msgstr "Dodaj zavisni element"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1771
-#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/query_report.js:1795
+#: frappe/public/js/frappe/views/reports/query_report.js:1798
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1237,7 +1249,7 @@ msgid "Add Gray Background"
msgstr "Dodaj sivu pozadinu"
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
-#: frappe/public/js/frappe/ui/group_by/group_by.js:427
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Dodaj grupu"
@@ -2052,6 +2064,12 @@ msgstr "Dozvoljeno u pominjanima"
msgid "Allowed Modules"
msgstr "Dozvoljeni moduli"
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -2068,6 +2086,42 @@ msgstr "Dozvoljeni umetni domeni"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Dozvoljavanje DocType, DocType. Budite oprezni!"
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Već registrovan"
@@ -2159,7 +2213,7 @@ msgstr "Izmena"
msgid "Amendment Naming Override"
msgstr "Zanemari pravila imenovanja izmena"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Izmena nije dozvoljena"
@@ -2248,16 +2302,6 @@ msgstr "Osim sistem menadžera, uloge sa pravima za postavljanje korisničkih do
msgid "App"
msgstr "Aplikacija"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "ID klijenta aplikacije"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Tajni ključ klijenta aplikacije"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2271,21 +2315,24 @@ msgstr "Logo aplikacije"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Naziv aplikacije"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr "Naziv aplikacije (naziv klijenta)"
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2531,7 +2578,7 @@ msgstr "Prema Vašem zahtevu, Vaš nalog i podaci na {0} povezani sa imejl adres
msgid "Assign Condition"
msgstr "Dodeli uslov"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Dodeli"
@@ -2540,7 +2587,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodeli"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Dodeli grupi korisnika"
@@ -2785,11 +2832,11 @@ msgstr "Prilog uklonjen"
msgid "Attachments"
msgstr "Prilozi"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Pokušava se povezivanje sa QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Pokušava se pokretanje QZ Tray..."
@@ -2841,6 +2888,11 @@ msgstr "Autentifikacija nije uspela prilikom primanja imejlova sa imejl naloga:
msgid "Author"
msgstr "Autor"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr "Autorizacija"
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3075,7 +3127,7 @@ msgstr "Avatar"
msgid "Average"
msgstr "Prosek"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Prosečna vrednost {0}"
@@ -3953,7 +4005,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4105,11 +4157,11 @@ msgstr "Nije moguće otkazati pre podnošenja. Pogledaj tranziciju {0}"
msgid "Cannot cancel {0}."
msgstr "Nije moguće otkazati {0}."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Nije moguće promeniti status dokumenta iz 0 (nacrt) u 2 (otkazan)"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Nije moguće promeniti status dokumenta iz 1 (podnet) u 0 (nacrt)"
@@ -4137,7 +4189,7 @@ msgstr "Nije moguće kreirati privatni radni prostor za ostale korisnike"
msgid "Cannot delete Home and Attachments folders"
msgstr "Nije moguće obrisati početne i priložene datoteke"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Nije moguće obrisati ili otkazati jer je {0} {1} povezano sa {2} {3} {4}"
@@ -4192,7 +4244,7 @@ msgstr "Nije moguće urediti standardne grafikone"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Nije moguće urediti standardne izveštaje. Molimo Vas napravite duplikat i kreirajte novi izveštaj"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Nije moguće urediti otkazan dokument"
@@ -4229,7 +4281,7 @@ msgstr "Nije moguće mapirati više štampača na jedan format za štampu."
msgid "Cannot import table with more than 5000 rows."
msgstr "Nije moguće uvoziti tabelu sa više od 5000 redova."
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Nije moguće povezati otkazani dokument: {0}"
@@ -4274,7 +4326,7 @@ msgstr "Nije moguće ažurirati {0}"
msgid "Cannot use sub-query in order by"
msgstr "Nije moguće koristiti podupit u komandi sortiraj po"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "Nije moguće koristiti {0} u komandi sortiraj/grupiši po"
@@ -4331,10 +4383,6 @@ msgstr "Opis kategorije"
msgid "Category Name"
msgstr "Naziv kategorije"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Cent"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4620,6 +4668,10 @@ msgstr "Očisti i dodaj šablon"
msgid "Clear & Add template"
msgstr "Očisti i dodaj šablon"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Očisti sve"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4741,8 +4793,10 @@ msgid "Client Credentials"
msgstr "Kredencijali klijenta"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "ID klijenta"
@@ -4758,6 +4812,12 @@ msgstr "Id klijenta"
msgid "Client Information"
msgstr "Informacije o klijentu"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr "Metapodaci klijenta"
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4770,13 +4830,32 @@ msgstr "Klijentska skripta"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Tajna klijenta"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr "Osnovna tajna klijenta"
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr "Client Secret Post"
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr "URI klijenta"
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4861,7 +4940,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sažmi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sažmi sve"
@@ -5007,7 +5086,7 @@ msgstr "Kolone / Polja"
msgid "Columns based on"
msgstr "Kolone zasnovane na"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "Kombinacija vrste dozvole ({0}) i vrste odgovora ({1}) nije dozvoljena"
@@ -5256,6 +5335,12 @@ msgstr "Opis uslova"
msgid "Conditions"
msgstr "Uslovi"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr "Konfiguracija"
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5294,7 +5379,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Konfigurišite različite aspekte kako funkcioniše imenovanje dokumenata, kao što su serije imenovanja, trenutni brojač."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Potvrdi"
@@ -5303,7 +5388,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Potvrdi"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Potvrdi pristup"
@@ -5316,7 +5401,7 @@ msgstr "Potvrdi uklanjanje naloga"
msgid "Confirm New Password"
msgstr "Potvrdi novu lozinku"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Potvrdi lozinku"
@@ -5357,8 +5442,8 @@ msgstr "Povezane aplikacije"
msgid "Connected User"
msgstr "Povezani korisnik"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Povezano sa QZ Tray!"
@@ -5450,6 +5535,11 @@ msgstr "Podešavanje za kontaktiranje"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Opcije za kontakt, poput \"Upit za prodaju, Upit za podršku\" itd., svaka u novom redu ili odvojena zarezima."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Kontakti"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "Sadrži {0} ispravku bezbednosti"
@@ -5468,7 +5558,7 @@ msgstr "Sadrži {0} ispravki bezbednosti"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5550,7 +5640,7 @@ msgstr "Status doprinosa"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Kontroliše da li novi korisnici mogu da se registruju koristeći ovaj ključ za prijavljivanje putem društvenih mreža. Ukoliko nije postavljeno, poštuju se podešavanja veb-sajta."
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Kopirano u međuspremnik."
@@ -5591,7 +5681,7 @@ msgstr "Ispravna verzija :"
msgid "Could not connect to outgoing email server"
msgstr "Nije bilo moguće povezati se sa serverom za izlazne imejlove"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "Nije bilo moguće pronaći {0}"
@@ -5619,7 +5709,7 @@ msgstr "Nije bilo moguće sačuvati, proverite unesene podatke"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Brojčano"
@@ -6324,7 +6414,7 @@ msgstr "Tamna tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Kontrolna tabla"
@@ -7494,6 +7584,7 @@ msgstr "Status dokumenta sledećih stanja je promenjen:
{0}<
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7739,7 +7830,7 @@ msgstr "Uslov pravila imenovanja dokumenta"
msgid "Document Naming Settings"
msgstr "Podešavanje imenovanja dokumenata"
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "Dokument u redu za obradu"
@@ -7896,7 +7987,7 @@ msgid "Document Types and Permissions"
msgstr "Vrste i dozvole dokumenta"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr "Dokument je otključan"
@@ -8033,7 +8124,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr "Nemojte kodirati HTML tagove poput <script> ili znakove poput < or >, jer mogu biti namerno korišćeni u ovom polju"
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "Nemate nalog?"
@@ -8288,7 +8379,7 @@ msgstr "IZLAZ"
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8840,6 +8931,12 @@ msgstr "Omogući automatsko povezivanje u dokumentima"
msgid "Enable Comments"
msgstr "Omogući komentare"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr "Omogući dinamičku registraciju klijenta"
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9231,7 +9328,7 @@ msgstr "Evidencije grešaka"
msgid "Error Message"
msgstr "Poruka o grešci"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...
Potrebno je da imate instaliranu i pokrenutu QZ Tray, da biste mogli da koristite funkciju neobrađene štampe.
Kliknite ovde da biste preuzeli i instalirali QZ Tray.
Kliknite ovde da biste naučili više o neobrađenoj štampi.."
@@ -9442,7 +9539,7 @@ msgstr "Izvršavanje koda"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2071
+#: frappe/public/js/frappe/views/reports/query_report.js:2095
msgid "Execution Time: {0} sec"
msgstr "Vreme izvršavanja: {0} sekundi"
@@ -9468,7 +9565,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Proširi sve"
@@ -9529,7 +9626,7 @@ msgstr "Vreme isteka stranica sa QR kodom"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/query_report.js:1783
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
@@ -9894,7 +9991,7 @@ msgstr "Preuzmi podrazumevane dokumente za globalnu pretragu."
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: frappe/public/js/frappe/views/reports/query_report.js:1842
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9965,7 +10062,7 @@ msgstr "Polje za praćenje"
msgid "Field type cannot be changed for {0}"
msgstr "Vrsta polja ne može biti promenjena za {0}"
-#: frappe/database/database.py:892
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr "Polje {0} ne postoji u {1}"
@@ -10008,7 +10105,7 @@ msgstr "Naziv polja '{0}' je u konfliktu sa {1} nazivom {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:385
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Naziv polja je ograničen na 64 karaktera ({0})"
@@ -10024,7 +10121,7 @@ msgstr "Naziv polja koje će biti DocType za ovo link polje."
msgid "Fieldname {0} appears multiple times"
msgstr "Naziv polja {0} se pojavljuje više puta"
-#: frappe/database/schema.py:375
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Naziv polja {0} ne može sadržati specijalne karaktere poput {1}"
@@ -10472,7 +10569,7 @@ msgstr "Prati"
msgid "Followed by"
msgstr "Praćen od strane"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr "Sledeći filteri izveštaja imaju nedostajuće vrednosti:"
@@ -10657,7 +10754,7 @@ msgstr "Za korisnika"
msgid "For Value"
msgstr "Za vrednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/query_report.js:2092
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 or =324. Za opsege, koristite 5:10 (za vrednosti između 5 i 10)."
@@ -10935,7 +11032,7 @@ msgstr "Datum početka"
msgid "From Date Field"
msgstr "Polje za datum početka"
-#: frappe/public/js/frappe/views/reports/query_report.js:1779
+#: frappe/public/js/frappe/views/reports/query_report.js:1803
msgid "From Document Type"
msgstr "Od vrste dokumenta"
@@ -10995,7 +11092,7 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:678
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na listi dozvoljenih."
@@ -11073,7 +11170,7 @@ msgid "Generate Random Password"
msgstr "Generiši nasumičnu lozinku"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
-#: frappe/public/js/frappe/utils/utils.js:1787
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generiši URL za praćenje"
@@ -11502,7 +11599,7 @@ msgstr "Grupa klase objekta"
msgid "Group your custom doctypes under modules"
msgstr "Grupiši svoje prilagođene vrste dokumenata unutar modula"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:425
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr "Grupisano po {0}"
@@ -11552,7 +11649,7 @@ msgstr "HH:mm:ss"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/printing/doctype/print_format/print_format.py:98
#: frappe/public/js/print_format_builder/Field.vue:86
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -11781,7 +11878,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1784
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr "Evo Vašeg URL za praćenje"
@@ -11823,6 +11920,7 @@ msgstr "Sakrivena polja"
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Sakrij"
@@ -11984,7 +12082,7 @@ msgstr "Pravilo sa višim prioritetom biće primenjeno prvo"
msgid "Highlight"
msgstr "Istaknuto"
-#: frappe/www/update-password.html:276
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Savet: Uključite simbole, brojeve i velika slova u lozinku"
@@ -12067,15 +12165,20 @@ msgstr "Časovi"
msgid "How should this currency be formatted? If not set, will use system defaults"
msgstr "Kako treba da se formatira ova valuta? Ukoliko nije podešeno, koristiće se podrazumevane vrednosti sistema"
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr "Ljudski čitljiv naziv namenjen za prikazivanje krajnjem korisniku."
+
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
msgstr "Izgleda da još uvek nemaš pristup nijednom radnom prostoru, uvek možeš da napraviš jedan za sebe. Klikni na dugme Kreiraj radni prostor da ga napraviš.
"
-#: frappe/core/doctype/data_import/importer.py:1171
-#: frappe/core/doctype/data_import/importer.py:1177
-#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
@@ -12756,11 +12859,11 @@ msgstr "Uključi temu iz aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi link ka veb-prikazu u imejlu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1594
+#: frappe/public/js/frappe/views/reports/query_report.js:1618
msgid "Include filters"
msgstr "Uključi filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1586
+#: frappe/public/js/frappe/views/reports/query_report.js:1610
msgid "Include indentation"
msgstr "Uključi indentaciju"
@@ -12827,11 +12930,11 @@ msgstr "Pogrešno korisničko ime ili lozinka"
msgid "Incorrect Verification code"
msgstr "Pogrešan verifikacioni kod"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1551
msgid "Incorrect value in row {0}:"
msgstr "Pogrešna vrednost u redu {0}:"
-#: frappe/model/document.py:1545
+#: frappe/model/document.py:1553
msgid "Incorrect value:"
msgstr "Pogrešna vrednost:"
@@ -12918,7 +13021,7 @@ msgstr "Unesi iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/query_report.js:1848
msgid "Insert After"
msgstr "Unesi nakon"
@@ -13174,7 +13277,7 @@ msgstr "Nevažeća vrednost filtera"
msgid "Invalid Home Page"
msgstr "Nevažeća početna stranica"
-#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Nevažeći link"
@@ -13208,7 +13311,7 @@ msgstr "Nevažeća opcija"
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr "Nevažeći izlazni imejl server ili port: {0}"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Nevažeći izlazni format"
@@ -13220,9 +13323,9 @@ msgstr "Nevažeća izmena"
msgid "Invalid Parameters."
msgstr "Nevažeći parametri."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
-#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
-#: frappe/www/update-password.html:247
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "Nevažeća lozinka"
@@ -13302,7 +13405,7 @@ msgstr "Nevažeća vrsta uslova u ugnježdenom filteru: {0}"
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Nevažeći smer u Sortiraj po: {0}. Mora biti 'RASTUĆE' ili 'OPADAJUĆE'."
-#: frappe/model/document.py:1014 frappe/model/document.py:1028
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13326,10 +13429,14 @@ msgstr "Nevažeći format polja u {0}: {1}. Koristite 'field', 'link_field.field
msgid "Invalid field name in function: {0}. Only simple field names are allowed."
msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja."
-#: frappe/utils/data.py:2196
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr "Nevažeći naziv polja: {0}"
+
#: frappe/database/query.py:668
msgid "Invalid field type: {0}"
msgstr "Nevažeća vrsta polja: {0}"
@@ -13383,7 +13490,7 @@ msgstr "Nevažeći ili oštećen sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}"
-#: frappe/app.py:316
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahteva"
@@ -14132,7 +14239,7 @@ msgstr "Oznaka je obavezna"
msgid "Landing Page"
msgstr "Ciljna stranica"
-#: frappe/public/js/frappe/form/print_utils.js:30
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Pejzažni"
@@ -14428,7 +14535,7 @@ msgstr "Pismo"
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/page/print/print.js:127
-#: frappe/public/js/frappe/form/print_utils.js:20
+#: frappe/public/js/frappe/form/print_utils.js:43
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
@@ -14742,7 +14849,7 @@ msgstr "Linkovi"
#: frappe/custom/doctype/client_script/client_script.json
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/utils/utils.js:923
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
msgstr "Lista"
@@ -15056,6 +15163,11 @@ msgstr "Prijavljivanje putem korisničkom imena i lozinke nije dozvoljena."
msgid "Login with {0}"
msgstr "Prijavljivanje sa {0}"
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr "Logo URI"
+
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
@@ -15242,7 +15354,7 @@ msgstr "Obavezno zavisi od"
msgid "Mandatory Depends On (JS)"
msgstr "Obavezno zavisi od (JS)"
-#: frappe/website/doctype/web_form/web_form.py:470
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Nedostaju obavezni podaci:"
@@ -15465,7 +15577,7 @@ msgstr "Značenje opcija podnesi, otkaži, izmeni"
#. Label of the medium (Data) field in DocType 'Web Page View'
#: frappe/desk/doctype/todo/todo.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
-#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/public/js/frappe/utils/utils.js:1737
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15663,6 +15775,12 @@ msgstr "Meta naslov"
msgid "Meta title for SEO"
msgstr "Meta naslov za SEO"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr "Metapodaci"
+
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
#. Label of the method (Select) field in DocType 'Recorder'
@@ -15682,7 +15800,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:680
+#: frappe/__init__.py:468
msgid "Method Not Allowed"
msgstr "Metoda nije dozvoljena"
@@ -15776,7 +15894,7 @@ msgstr "Nedostajuće polje"
msgid "Missing Fields"
msgstr "Nedostajuća polja"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr "Nedostajući obavezni filteri"
@@ -15784,7 +15902,7 @@ msgstr "Nedostajući obavezni filteri"
msgid "Missing Permission"
msgstr "Nedostajuće dozvole"
-#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr "Nedostajuće vrednosti"
@@ -15850,7 +15968,7 @@ msgstr "Izmenjeno od strane"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
-#: frappe/public/js/frappe/utils/utils.js:926
+#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16150,7 +16268,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/web_form/web_form.py:487
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16318,7 +16436,7 @@ msgstr "Podešavanje navigacije"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privatni radni prostor drugih korisnika"
-#: frappe/model/document.py:792
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Negativna vrednost"
@@ -16447,7 +16565,7 @@ msgstr "Nova brojčana kartica"
msgid "New Onboarding"
msgstr "Nova uvodna obuka"
-#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Nova lozinka"
@@ -16492,7 +16610,26 @@ msgstr "Novi naziv radnog toka"
msgid "New Workspace"
msgstr "Novi radni prostor"
-#: frappe/www/update-password.html:79
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr "Nova lozinka ne sme biti ista kao stara lozinka"
@@ -16524,7 +16661,7 @@ msgstr "Nova vrednost treba da bude postavljena"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:376
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
msgstr "Novi {0}"
@@ -16675,7 +16812,7 @@ msgstr "Sledeće na klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/public/js/frappe/views/reports/query_report.js:1638
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16704,7 +16841,7 @@ msgid "No Copy"
msgstr "Bez kopiranja"
#: frappe/core/doctype/data_export/exporter.py:162
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
#: frappe/public/js/frappe/data_import/import_preview.js:146
#: frappe/public/js/frappe/form/multi_select_dialog.js:224
@@ -16963,7 +17100,7 @@ msgstr "Broj redova (maksimalno 500)"
msgid "No of Sent SMS"
msgstr "Broj poslatih SMS poruka"
-#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Ne postoji dozvola za {0}"
@@ -17056,6 +17193,12 @@ msgstr "Nije negativna vrednost"
msgid "Non-Conforming"
msgstr "Nepodudaran"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "None"
+msgstr "Nijednom"
+
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Nijedno: Kraj radnog toka"
@@ -17091,7 +17234,7 @@ msgstr "Nisu potomci od"
msgid "Not Equals"
msgstr "Nije jednako"
-#: frappe/app.py:366 frappe/www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije pronađeno"
@@ -17117,9 +17260,9 @@ msgstr "Nije povezani ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Ne može biti prazno"
-#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/doctype/web_form/web_form.py:736
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17227,7 +17370,7 @@ msgstr "Nije u razvojnom režimu! Postavite u site_config.json ili napravite 'Pr
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17548,6 +17691,11 @@ msgstr "Podešavanje OAuth provajdera"
msgid "OAuth Scope"
msgstr "OAuth opseg"
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr "OAuth podešavanja"
+
#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr "OAuth je omogućen, ali nije autorizovan. Molimo Vas da koristite dugme \"Autorizuj pristup putem API-ja\" za to."
@@ -17797,7 +17945,7 @@ msgstr "Isključivo menadžer radnog prostora može da uređuje javne radne pros
msgid "Only allowed to export customizations in developer mode"
msgstr "Izvoz prilagođavanja je dozvoljen samo u razvojnom režimu"
-#: frappe/model/document.py:1233
+#: frappe/model/document.py:1235
msgid "Only draft documents can be discarded"
msgstr "Isključivo nacrti dokumenata mogu biti odbačeni"
@@ -17828,7 +17976,7 @@ msgstr "Mogu se uređivati samo izveštaji kreirani pomoću uređivača izvešta
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Samo standardni DocType-ovi mogu biti prilagođeni putem polja prilagodi obrazac."
-#: frappe/model/delete_doc.py:240
+#: frappe/model/delete_doc.py:241
msgid "Only the Administrator can delete a standard DocType."
msgstr "Isključivo administrator može obrisati standardni DocType."
@@ -17836,7 +17984,7 @@ msgstr "Isključivo administrator može obrisati standardni DocType."
msgid "Only the assignee can complete this to-do."
msgstr "Isključivo dodeljeni korisnik može završiti ovaj zadatak."
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr "Dozvoljeno je isključivo {0} izveštaja poslatih putem imejla po korisniku."
@@ -17969,7 +18117,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2127
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od sledećih {0}"
@@ -18084,7 +18232,7 @@ msgstr "Istorija organizacije"
msgid "Org History Heading"
msgstr "Naslov istorije organizacije"
-#: frappe/public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "Orijentacija"
@@ -18166,9 +18314,11 @@ msgstr "Vlasnik"
msgid "PATCH"
msgstr "PATCH"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1744
+#: frappe/public/js/frappe/views/reports/query_report.js:1768
msgid "PDF"
msgstr "PDF"
@@ -18463,9 +18613,9 @@ msgstr "Matična vrsta dokumenta je neophodna za kreiranje grafikona na početno
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Matični označava naziv dokumenta u koji će se podaci dodati."
-#: frappe/public/js/frappe/ui/group_by/group_by.js:251
-msgid "Parent-to-child or child-to-parent grouping is not allowed."
-msgstr "Grupisanje matično-ka-zavisnom ili zavisno-ka-matičnom nije dozvoljeno."
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
+msgstr ""
#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
@@ -18569,7 +18719,7 @@ msgstr "Lozinka nije pronađena za {0} {1} {2}"
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}"
-#: frappe/www/update-password.html:166
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr "Lozinka postavljena"
@@ -18581,7 +18731,7 @@ msgstr "Veličina lozinke premašuje dozvoljenu granicu"
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličine lozinke premašuje dozvoljenu granicu."
-#: frappe/www/update-password.html:80
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr "Lozinke se ne podudaraju"
@@ -18890,7 +19040,7 @@ msgstr "Telefon br."
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Broj telefona {0} postavljen u polju {1} nije validan."
-#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/form/print_utils.js:53
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
@@ -19061,7 +19211,7 @@ msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem dru
#: frappe/printing/page/print/print.js:638
#: frappe/printing/page/print/print.js:668
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1431
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Molimo Vas da omogućite iskačuće prozore"
@@ -19078,23 +19228,23 @@ msgstr "Molimo Vas da omogućite {} pre nego što nastavite."
msgid "Please ensure that your profile has an email address"
msgstr "Molimo Vas da se uverite da Vaš profil sadrži imejl adresu"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Molimo Vas da uneste URL token za pristup"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Molimo Vas da unesete URL autorizaciju"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Molimo Vas da unesete osnovni URL"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Molimo Vas da unesete klijentski ID pre nego što je prijavljivanje putem društvenih mreža omogućeno"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Molimo Vas da uneste tajnu klijenta pre nego što je prijavljivanje putem društvenih mreža omogućeno"
@@ -19102,7 +19252,7 @@ msgstr "Molimo Vas da uneste tajnu klijenta pre nego što je prijavljivanje pute
msgid "Please enter OpenID Configuration URL"
msgstr "Molimo Vas da unesete URL za OpenID konfiguraciju"
-#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Molimo Vas da unesete URL za preusmeravanje"
@@ -19114,7 +19264,7 @@ msgstr "Molimo Vas da unesete važeću imejl adresu."
msgid "Please enter both your email and message so that we can get back to you. Thanks!"
msgstr "Molimo Vas da unesete i svoju imejl adresu i poruku kako bismo mogli da Vam se javimo! Hvala Vam!"
-#: frappe/www/update-password.html:234
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Molimo Vas da unesete lozinku"
@@ -19127,11 +19277,11 @@ msgstr "Molimo Vas da unesete lozinku za: {0}"
msgid "Please enter valid mobile nos"
msgstr "Molimo Vas da unesete važeće brojeve mobilnih telefona"
-#: frappe/www/update-password.html:117
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr "Molimo Vas da unesete svoju novu lozinku."
-#: frappe/www/update-password.html:110
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr "Molimo Vas da unesete svoju staru lozinku."
@@ -19147,7 +19297,7 @@ msgstr "Molimo Vas da se prijavite kako biste ostavili komentar."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Molimo Vas da se uverite da dokumenti referentne komunikacije nisu kružno povezani."
-#: frappe/model/document.py:986
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Molimo Vas da osvežite kako biste dobili najnoviji dokument."
@@ -19215,7 +19365,7 @@ msgstr "Molimo Vas da izaberete važeći filter da datum"
msgid "Please select applicable Doctypes"
msgstr "Molimo Vas da izaberete primenjive DocType-ove"
-#: frappe/model/db_query.py:1141
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Molimo Vas da izaberete barem 1 kolonu iz {0} za sortiranje/grupisanje"
@@ -19249,7 +19399,7 @@ msgstr "Molimo Vas da postavite mapiranje štampača za ovaj format štampe u po
msgid "Please set filters"
msgstr "Molimo Vas da postavite filtere"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Molimo Vas da postavite vrednosti filtera u tabeli filter izveštaja."
@@ -19322,10 +19472,19 @@ msgstr "Molimo Vas da ažurirate {} pre nego što nastavite."
msgid "Please use a valid LDAP search filter"
msgstr "Molimo Vas da koristite važeći LDAP filter za pretragu"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr "Molimo Vas da koristite sledeće linkove da preuzmete rezervnu kopiju fajla."
+
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Molimo Vas da posetite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key za više informacija."
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr "URI politike"
+
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19371,7 +19530,7 @@ msgstr "Stavka menija portala"
msgid "Portal Settings"
msgstr "Podešavanje portala"
-#: frappe/public/js/frappe/form/print_utils.js:31
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "Portret"
@@ -19625,7 +19784,7 @@ msgstr "Primarni ključ za doctype {0} ne može biti promenjen jer sadrži posto
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/query_report.js:1754
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
@@ -19686,6 +19845,11 @@ msgstr "Greška u formatu za štampu"
msgid "Print Format Field Template"
msgstr "Šablon polja formata za štampu"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr "Format štampe za"
+
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
@@ -19696,6 +19860,10 @@ msgstr "Pomoć za format štampe"
msgid "Print Format Type"
msgstr "Vrsta formata štampe"
+#: frappe/public/js/frappe/views/reports/query_report.js:1576
+msgid "Print Format not found"
+msgstr "Format štampe nije pronađen"
+
#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "Format štampe {0} je onemogućen"
@@ -19731,7 +19899,7 @@ msgstr "Sakrij štampu ukoliko nema vrednosti"
msgid "Print Language"
msgstr "Jezik štampe"
-#: frappe/public/js/frappe/form/print_utils.js:197
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "Štampa je poslata na štampač!"
@@ -19749,7 +19917,7 @@ msgstr "Server za štampu"
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
#: frappe/printing/page/print/print.js:160
-#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/print_utils.js:84
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Podešavanje štampe"
@@ -19859,6 +20027,10 @@ msgstr "Privatno"
msgid "Private Files (MB)"
msgstr "Privatni fajlovi (MB)"
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr "Rezervna kopija privatnih fajlova:"
+
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -19981,6 +20153,10 @@ msgstr "Javni"
msgid "Public Files (MB)"
msgstr "Javni fajlovi (MB)"
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr "Rezervna kopija javnih fajlova:"
+
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
@@ -20120,7 +20296,7 @@ msgstr "QR kod"
msgid "QR Code for Login Verification"
msgstr "QR kod za verifikaciju prijavljivanja"
-#: frappe/public/js/frappe/form/print_utils.js:206
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "QZ Tray neuspešno: "
@@ -20333,7 +20509,7 @@ msgstr "Ocena"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
-#: frappe/printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Neobrađene komande"
@@ -20833,7 +21009,7 @@ msgstr "Izvor pristupa"
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/reports/query_report.js:1743
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21162,6 +21338,8 @@ msgstr "Odgovori svima"
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/custom_role/custom_role.json
#: frappe/core/doctype/docperm/docperm.json
@@ -21177,8 +21355,11 @@ msgstr "Odgovori svima"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
#: frappe/public/js/frappe/request.js:615
-#: frappe/public/js/frappe/utils/utils.js:920
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Izveštaj"
@@ -21247,7 +21428,7 @@ msgstr "Menadžer izveštavanja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1904
+#: frappe/public/js/frappe/views/reports/query_report.js:1928
msgid "Report Name"
msgstr "Naziv izveštaja"
@@ -21303,7 +21484,7 @@ msgstr "Izveštaj nema numeričkih polja, molimo Vas da promenite naziv izvešta
msgid "Report initiated, click to view status"
msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status"
-#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr "Dostignuto je ograničenje izveštaja"
@@ -21319,7 +21500,7 @@ msgstr "Izveštaj je uspešno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izveštaj nije sačuvan (dogodile su se greške)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1942
+#: frappe/public/js/frappe/views/reports/query_report.js:1966
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izveštaj sa više od 10 kolona izgleda bolje u pejzažnom režimu."
@@ -21540,6 +21721,31 @@ msgstr "Vrati na podrazumevana podešavanja"
msgid "Reset your password"
msgstr "Resetuj svoju lozinku"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr "Resurs"
+
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr "Dokumentacija o resursu"
+
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr "Naziv resursa"
+
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr "URI politike resursa"
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr "URI uslova korišćenja resursa"
+
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
#. Request'
@@ -21916,7 +22122,7 @@ msgstr "Preusmeravanje putanje"
msgid "Route: Example \"/app\""
msgstr "Putanja: Primer \"/app\""
-#: frappe/model/base_document.py:852 frappe/model/document.py:777
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Red"
@@ -22201,7 +22407,7 @@ msgstr "Subota"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/query_report.js:1920
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22228,7 +22434,7 @@ msgstr "Sačuvaj kao"
msgid "Save Customizations"
msgstr "Sačuvaj prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1899
+#: frappe/public/js/frappe/views/reports/query_report.js:1923
msgid "Save Report"
msgstr "Sačuvaj izveštaj"
@@ -22404,6 +22610,11 @@ msgstr "Opseg"
msgid "Scopes"
msgstr "Opsezi"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr "Podržani opseg"
+
#. Label of the report_script (Code) field in DocType 'Report'
#. Label of the script (Code) field in DocType 'Server Script'
#. Label of the script (Code) field in DocType 'Client Script'
@@ -22684,7 +22895,7 @@ msgid "Select Column"
msgstr "Izaberi kolonu"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:45
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Izaberi kolone"
@@ -23225,7 +23436,7 @@ msgstr "Serija {0} je već iskorišćena u {1}"
msgid "Server Action"
msgstr "Serverska radnja"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverska greška"
@@ -23291,7 +23502,7 @@ msgstr "Podrazumevane vrednosti sesije"
msgid "Session Defaults Saved"
msgstr "Podrazumevane vrednosti sesije su sačuvane"
-#: frappe/app.py:352
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "Sesija je istekla"
@@ -23349,7 +23560,7 @@ msgstr "Postavi filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
msgid "Set Level"
msgstr "Postavi nivo"
@@ -23591,7 +23802,7 @@ msgstr "Postavke > Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavke > Korisničke dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:1789
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavke automatskog imejla"
@@ -23680,6 +23891,8 @@ msgstr "Prečice"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Prikaži"
@@ -23706,6 +23919,12 @@ msgstr "Prikaži apsolutne vrednosti"
msgid "Show All"
msgstr "Prikaži sve"
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr "Prikaži metapodatke autorizacionog servera"
+
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Prikaži kalendar"
@@ -23823,6 +24042,12 @@ msgstr "Prikaži pregled iskačućeg prozora"
msgid "Show Processlist"
msgstr "Prikaži listu procesa"
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr "Prikaži metapodatke zaštićenog resursa"
+
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr "Prikaži povezane greške"
@@ -23849,6 +24074,12 @@ msgstr "Prikaži naslove odeljaka"
msgid "Show Sidebar"
msgstr "Prikaži bočnu traku"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr "Prikaži ključ za prijavljivanje putem društvenih mreža kao autorizacioni server"
+
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
@@ -23879,6 +24110,12 @@ msgstr "Prikaži obilazak"
msgid "Show Traceback"
msgstr "Prikaži sled greške"
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr "Prikaži vrednosti iznad grafikona"
+
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Prikaži upozorenja"
@@ -23932,6 +24169,12 @@ msgstr "Prikaži ceo obrazac umesto brzog unosa u modalnom prozoru"
msgid "Show in Module Section"
msgstr "Prikaži u odeljku modula"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr "Prikaži u metapodacima resursa"
+
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
@@ -24017,7 +24260,7 @@ msgid "Sign Up is disabled"
msgstr "Registracija je onemogućena"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
-#: frappe/www/login.html:156 frappe/www/update-password.html:58
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "Registruj se"
@@ -24103,8 +24346,10 @@ msgstr "Preskoči"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
msgstr "Preskoči autorizaciju"
@@ -24268,6 +24513,16 @@ msgstr "SocketIO transportni režim"
msgid "Soft-Bounced"
msgstr "Privremeno neuspešno"
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr "ID softvera"
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr "Verzija softvera"
+
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
msgstr "Neke kolone mogu biti isečene prilikom štampanja u PDF formatu. Pokušajte da broj kolona bude manji od 10."
@@ -24335,7 +24590,7 @@ msgstr "Polje za sortiranje {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
#: frappe/public/js/frappe/ui/toolbar/about.js:8
-#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/public/js/frappe/utils/utils.js:1720
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
@@ -24425,7 +24680,7 @@ msgstr "Stack Trace"
msgid "Standard"
msgstr "Standardno"
-#: frappe/model/delete_doc.py:78
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr "Standardni DocType ne može biti obrisan."
@@ -24441,7 +24696,7 @@ msgstr "Standardno nije postavljeno"
msgid "Standard Permissions"
msgstr "Standardne dozvole"
-#: frappe/printing/doctype/print_format/print_format.py:75
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "Standardni format štampe ne može biti ažuriran"
@@ -24662,7 +24917,7 @@ msgstr "Vremenski interval statistike"
msgid "Status"
msgstr "Status"
-#: frappe/www/update-password.html:163
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Status ažuriran"
@@ -24993,7 +25248,7 @@ msgstr "Poruka o uspehu"
msgid "Success title"
msgstr "Naslov uspeha"
-#: frappe/www/update-password.html:81
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "Uspešno! Spremni ste za nastavak 👍"
@@ -25061,7 +25316,7 @@ msgstr "Predloženo korisničko ime: {0}"
msgid "Sum"
msgstr "Zbir"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:337
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Zbir za {0}"
@@ -25170,7 +25425,7 @@ msgstr "Sinhronizovanje"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizovanje {0} od {1}"
-#: frappe/utils/data.py:2528
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr "Greška u sintaksi"
@@ -25348,6 +25603,7 @@ msgstr "Evidencije sistema"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -25407,6 +25663,11 @@ msgctxt "Number system"
msgid "T"
msgstr "T"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
+msgstr "URI uslova korišćenja"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -25477,7 +25738,7 @@ msgstr "Skraćena tabela"
msgid "Table updated"
msgstr "Tabela ažurirana"
-#: frappe/model/document.py:1566
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25739,7 +26000,7 @@ msgstr "API ključ za internet pretraživač dobijen putem Google Cloud konzole,
"\"APIs & Services\" > \"Credentials\"\n"
""
-#: frappe/database/database.py:475
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr "Promene su vraćene na prethodno stanje."
@@ -25797,11 +26058,11 @@ msgstr "Sledeći dani za zadatak su ponovljeni: {0}"
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
msgstr "Sledeća skripta zaglavlja će dodati trenutni datum u element klase 'header-content' u 'HTML zaglavlje'"
-#: frappe/core/doctype/data_import/importer.py:1086
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr "Sledeće vrednosti nisu važeće: {0}. Dozvoljene vrednosti su: {1}"
-#: frappe/core/doctype/data_import/importer.py:1043
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr "Sledeće vrednosti ne postoje za: {0}: {1}"
@@ -25840,7 +26101,7 @@ msgstr "Sledeći obilazak će početi od mesta na kojem je korisnik stao."
msgid "The number of seconds until the request expires"
msgstr "Broj sekundi do isteka zahteva"
-#: frappe/www/update-password.html:88
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "Lozinka za Vaš nalog je istekla."
@@ -25865,7 +26126,7 @@ msgstr "Link za resetovanje lozinke je istekao"
msgid "The reset password link has either been used before or is invalid"
msgstr "Link za resetovanje lozinke je već korišćen ili je nevažeći"
-#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26005,6 +26266,12 @@ msgstr "Došlo je do grešaka prilikom postavljanja naziva, molimo Vas da kontak
msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr "Ove najave će se pojaviti unutar obaveštenja koje se može zatvoriti, ispod navigacione trake."
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
+msgstr ""
+
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -26054,7 +26321,7 @@ msgstr "Ove godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:758
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
@@ -26081,7 +26348,7 @@ msgstr "Ovaj doctype nema nepovezanih polja koja treba ukloniti"
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Ovaj doctype ima neizvršene migracije, pokrenite 'bench migrate' pre izmene kako biste izbegli gubitak izmena."
-#: frappe/model/delete_doc.py:112
+#: frappe/model/delete_doc.py:113
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
msgstr "Ovaj dokument se ne može trenutno obrisati jer ga drugi korisnik uređuje. Pokušajte ponovo kasnije."
@@ -26097,7 +26364,7 @@ msgstr "Ovaj dokument ima nesačuvane izmene koje možda neće biti prikazane u
msgid "This document is already amended, you cannot ammend it again"
msgstr "Ovaj dokument je već izmenjen i ne može ponovo biti izmenjen"
-#: frappe/model/document.py:473
+#: frappe/model/document.py:475
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Ovaj dokument je trenutno zaključan i čeka na izvršenje. Pokušajte ponovo kasnije."
@@ -26162,7 +26429,7 @@ msgstr "Ovaj provajder geolokacije još uvek nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo se prikazuje iznad prezentacije."
-#: frappe/public/js/frappe/views/reports/query_report.js:2128
+#: frappe/public/js/frappe/views/reports/query_report.js:2152
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je izveštaj koji se generiše u pozadini. Postavite odgovarajuće filtere i zatim generišite novi izveštaj."
@@ -26610,7 +26877,7 @@ msgstr "Da biste dodali dinamičke vrednosti iz dokumenta, koristite jinja oznak
"\n"
"
/.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr "Tillåter klienter att hämta metadata från /.well-known/oauth-authorization-server slutpunkt. Referens: RFC8414"
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr "Tillåter klienter att hämta metadata från slutpunkt /.well-known/oauth-protected-resource. Referens: RFC9728"
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr "Tillåter klienter att registrera sig själva utan manuell åtgärd. Registrering skapar OAuth Client post. Referens: RFC7591"
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr "Tillåter klienter att visa detta som en auktorisering server när de frågar slutpunkt /.well-known/oauth-protected-resource."
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr "Tillåter att aktiverad Social Inloggning Nyckel Bas URL visas som auktorisering server."
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr "Tillåter hoppa över auktorisering om användare har aktiva tokens."
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Redan Registrerad"
@@ -2156,7 +2212,7 @@ msgstr "Ändring"
msgid "Amendment Naming Override"
msgstr "Ändring Namngivning Serie Åsidosättande"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Ändring Ej Tillåten"
@@ -2245,16 +2301,6 @@ msgstr "Förutom System Ansvarig kan roller med Ange användarbehörighet rätt
msgid "App"
msgstr "App"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "App Klient ID"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "App Klient Hemlighet"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2268,21 +2314,24 @@ msgstr "App Logotyp "
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "App Namn"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr "App Namn (Klient Namn)"
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "App hittades inte för modul: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "App {0} är inte installerad"
@@ -2528,7 +2577,7 @@ msgstr "Enligt begäran har ditt konto och data på {0} kopplat till E-post {1}
msgid "Assign Condition"
msgstr "Tilldela Villkor"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Tilldela till"
@@ -2537,7 +2586,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tilldela till"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Tilldela till Användare Grupp"
@@ -2782,11 +2831,11 @@ msgstr "Bilaga Borttagen"
msgid "Attachments"
msgstr "Bilagor"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Försöker ansluta till QZ Aktivitet Fält..."
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Försöker starta QZ Aktivitet Fält..."
@@ -2838,6 +2887,11 @@ msgstr "Autentisering misslyckades när E-post meddelande togs emot från E-pos
msgid "Author"
msgstr "Skapad Av"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr "Auktorisering"
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3072,7 +3126,7 @@ msgstr "Avatar"
msgid "Average"
msgstr "Medel"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Genomsnitt av {0}"
@@ -3950,7 +4004,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4102,11 +4156,11 @@ msgstr "Kan inte annullera före godkännande.Se Övergång {0}"
msgid "Cannot cancel {0}."
msgstr "Kan inte annullera {0}."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Kan inte ändra dokument status från 0 (Utkast) till 2 (Annullerad)"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Kan inte ändra dokument status från 1 (Godkänd) till 0 (Utkast)"
@@ -4134,7 +4188,7 @@ msgstr "Kan inte skapa privat arbetsyta för andra användare"
msgid "Cannot delete Home and Attachments folders"
msgstr "Kan inte ta bort Hem och Bilaga mappar"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Kan inte ta bort eller annullera eftersom {0} {1} är länkat till {2} {3} {4}"
@@ -4189,7 +4243,7 @@ msgstr "Kan inte redigera standard diagram"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Kan inte redigera standard rapport.Kopiera och skapa ny"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Kan inte redigera annullerad dokument"
@@ -4226,7 +4280,7 @@ msgstr "Kan inte mappa flera skrivare till enskild utskrift format."
msgid "Cannot import table with more than 5000 rows."
msgstr "Kan inte importera tabell med fler än 5000 rader."
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Kan inte länka annullerad dokument: {0}"
@@ -4271,7 +4325,7 @@ msgstr "Kan inte uppdatera {0}"
msgid "Cannot use sub-query in order by"
msgstr "Kan inte använda underfråga i ordna efter"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "Kan inte använda {0} i ordna/gruppera efter"
@@ -4328,10 +4382,6 @@ msgstr "Kategori Beskrivning"
msgid "Category Name"
msgstr "Kategori Namn"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Cent"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4617,6 +4667,10 @@ msgstr "Rensa & Lägg till Mall"
msgid "Clear & Add template"
msgstr "Rensa & Lägg till Mall"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Rensa Alla"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4738,8 +4792,10 @@ msgid "Client Credentials"
msgstr "Klient Inloggningsppgifter"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "Klient ID"
@@ -4755,6 +4811,12 @@ msgstr "Klient ID"
msgid "Client Information"
msgstr "Klient Information"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr "Klient Metadata"
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4767,13 +4829,32 @@ msgstr "Klient Skript"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Klient Hemlighet"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr "Grundläggande Klient Hemlighet"
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr "Klient Hemlig Post"
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr "Klient URI"
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4858,7 +4939,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Fäll In"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Fäll In Alla"
@@ -5004,7 +5085,7 @@ msgstr "Kolumner / Fält"
msgid "Columns based on"
msgstr "Kolumner baserade på"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "Kombination av Medgivande Typ ( {0} ) och Svars Typ ( {1} ) är inte tillåtet"
@@ -5253,6 +5334,12 @@ msgstr "Villkor Beskrivning"
msgid "Conditions"
msgstr "Villkor"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr "Konfiguration"
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5291,7 +5378,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Konfigurera olika aspekter av hur dokument namn fungerar som att namnge serier, aktuell räknare."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Bekräfta"
@@ -5300,7 +5387,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Bekräfta"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Bekräfta Åtkomst"
@@ -5313,7 +5400,7 @@ msgstr "Bekräfta Borttagning av Konto"
msgid "Confirm New Password"
msgstr "Bekräfta Ny Lösenord"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Bekräfta Lösenord"
@@ -5354,8 +5441,8 @@ msgstr "Ansluten App"
msgid "Connected User"
msgstr "Ansluten Användare"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Ansluten till QZ Aktivitet Fält!"
@@ -5447,6 +5534,11 @@ msgstr "Kontakta Oss Inställningar"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Kontakt Alternativ, som 'Försäljning Förfrågning, Support Förfrågning' osv på ny rad eller separerade med komma tecken."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Kontakter"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "Innehåller {0} säkerhetskorrigering"
@@ -5465,7 +5557,7 @@ msgstr "Innehåller {0} säkerhetskorrigeringar"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5547,7 +5639,7 @@ msgstr "Bidrag Status"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Kontrollerar om nya användare kan registrera sig med denna Sociala Inloggning Nyckel. Om ej vald, respekteras webbplats inställningar."
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Kopierad till urklipp."
@@ -5588,7 +5680,7 @@ msgstr "Rätt version : "
msgid "Could not connect to outgoing email server"
msgstr "Kan inte ansluta till utgående E-post Server"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "Kunde inte hitta {0}"
@@ -5616,7 +5708,7 @@ msgstr "Kunde inte spara. Kontrollera angivna uppgifter"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Antal"
@@ -6321,7 +6413,7 @@ msgstr "Mörk Tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Översikt Panel"
@@ -7491,6 +7583,7 @@ msgstr "Status för följande tillstånd är ändrad:https://frappe.io), or * to accept all.\n"
+"https://frappe.io), eller * för att acceptera alla.\n"
+"/.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr "ตามคำขอของคุณ บัญชีและข้
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr "กล้อง"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "ผู้ติดต่อ"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "ควบคุมว่าสามารถให้ผู้ใช้ใหม่ลงทะเบียนโดยใช้คีย์การเข้าสู่ระบบโซเชียลนี้ได้หรือไม่ หากไม่ได้ตั้งค่า จะใช้การตั้งค่าเว็บไซต์"
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "คัดลอกไปยังคลิปบอร์ดแล้ว"
@@ -5401,7 +5491,7 @@ msgstr "เวอร์ชันที่ถูกต้อง:"
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr "ธีมมืด"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "แดชบอร์ด"
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr "ประเภทเอกสารและสิทธิ์"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr "เอกสารถูกปลดล็อก"
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr "อย่าเข้ารหัสแท็ก HTML เช่น <script> หรือเพียงตัวอักษรเช่น < หรือ > เนื่องจากอาจถูกใช้โดยเจตนาในฟิลด์นี้"
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "ไม่มีบัญชีใช่ไหม?"
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr "เปิดใช้งานการเชื่อมโยงอั
msgid "Enable Comments"
msgstr "เปิดใช้งานความคิดเห็น"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr "ข้อความข้อผิดพลาด"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "Error connecting to QZ Tray Application...https://frappe.io), or * to accept all.\n"
+"/.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Zaten kayıltı"
@@ -2159,7 +2213,7 @@ msgstr "Değiştiriliyor"
msgid "Amendment Naming Override"
msgstr "Değişiklik Adlandırma Geçersiz Kılma"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "Değişikliğe İzin Verilmiyor"
@@ -2248,16 +2302,6 @@ msgstr "Sistem Yöneticisi haricinde, Kullanıcı İzinlerini Ayarlama hakkına
msgid "App"
msgstr "Uygulama"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "Uygulama İstemci Kimliği"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "Uygulama İstemci Gizli Anahtarı"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2271,21 +2315,24 @@ msgstr "Uygulama Logosu"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Uygulama İsmi"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Modül için uygulama bulunamadı: {0}"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "{0} Uygulaması yüklü değil"
@@ -2531,7 +2578,7 @@ msgstr "Talebiniz doğrultusunda, hesabınız ve {1} e-postasıyla ilişkili {0}
msgid "Assign Condition"
msgstr "Koşulu Ata"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Ata"
@@ -2540,7 +2587,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Ata"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "Kullanıcı Grubuna Ata"
@@ -2785,11 +2832,11 @@ msgstr "Ek Kaldırıldı"
msgid "Attachments"
msgstr "Belge Ekleri"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "QZ Tray’e Bağlanmaya Çalışılıyor…"
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "QZ Tray başlatılmaya çalışılıyor..."
@@ -2841,6 +2888,11 @@ msgstr "E-posta Hesabından e-postalar alınırken kimlik doğrulama başarısı
msgid "Author"
msgstr "Yazar"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -3075,7 +3127,7 @@ msgstr "Profil Resmi"
msgid "Average"
msgstr "Ortalama"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "{0} Ortalaması"
@@ -3953,7 +4005,7 @@ msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4105,11 +4157,11 @@ msgstr "Göndermeden önce iptal edilemez. Geçişe bakın {0}"
msgid "Cannot cancel {0}."
msgstr "{0} iptal edilemez."
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Docstatus (Doctype Durumu) 0 değerinden (Taslak) 2 değerine (İptal Edildi) değiştirilemiyor"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Docstatus (Doctype Durumu) 1 değerinden (Gönderildi) 0 değerine (Taslak) değiştirilemiyor"
@@ -4137,7 +4189,7 @@ msgstr "Diğer kullanıcılar adına özel çalışma alanı oluşturulamıyor"
msgid "Cannot delete Home and Attachments folders"
msgstr "Ana Sayfa ve Ekler klasörleri silinemez"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Silme veya iptal etme işlemi yapılamaz. {0} {1} ile {2} {3} {4} ilişkilendirilmiş."
@@ -4192,7 +4244,7 @@ msgstr "Standart grafikler düzenlenemez"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Standart bir raporu düzenleyemezsiniz. Lütfen bir kopyasını veya yeni bir rapor oluşturun."
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "İptal edilen belge düzenlenemez"
@@ -4229,7 +4281,7 @@ msgstr "Tek bir yazdırma biçimine birden fazla yazıcı ile eşleşme yapılam
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "İptal edilen belgeye bağlantı verilemiyor: {0}"
@@ -4274,7 +4326,7 @@ msgstr "{0} güncellenemiyor"
msgid "Cannot use sub-query in order by"
msgstr "Alt sorguyu şu sırayla kullanamazsınız"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "{0} sıraya/gruplamaya göre kullanılamaz"
@@ -4331,10 +4383,6 @@ msgstr "Kategori Açıklaması"
msgid "Category Name"
msgstr "Kategori Adı"
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "Kuruş"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4620,6 +4668,10 @@ msgstr "Temizle ve Şablon Ekle"
msgid "Clear & Add template"
msgstr "Temizle ve Şablon Ekle"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "Temizle"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4741,8 +4793,10 @@ msgid "Client Credentials"
msgstr "İstemci Kimlik Bilgileri"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "Client ID"
@@ -4758,6 +4812,12 @@ msgstr "İstemci Kimliği"
msgid "Client Information"
msgstr "İstemci Bilgisi"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4770,13 +4830,32 @@ msgstr "İstemci Komut Dosyası"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr "Client Secret"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4861,7 +4940,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Daralt"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tümünü Daralt"
@@ -5007,7 +5086,7 @@ msgstr "Sütunlar / Alanlar"
msgid "Columns based on"
msgstr "Sütun Ayarlaması"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5256,6 +5335,12 @@ msgstr "Durum açıklaması"
msgid "Conditions"
msgstr "Koşullar"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5294,7 +5379,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr "Adlandırma serisi, geçerli sayaç gibi belge adlandırmanın nasıl çalıştığına ilişkin çeşitli yönleri yapılandırın."
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Onayla"
@@ -5303,7 +5388,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Onayla"
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr "Erişimi Onayla"
@@ -5316,7 +5401,7 @@ msgstr "Hesabın Silinmesini Onayla"
msgid "Confirm New Password"
msgstr "Yeni Şifreyi Onayla"
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr "Şifreyi Onayla"
@@ -5357,8 +5442,8 @@ msgstr "Bağlı Uyulamalar"
msgid "Connected User"
msgstr "Bağlı Kullanıcılar"
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5450,6 +5535,11 @@ msgstr "İletişim Ayarları"
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr "Her biri yeni bir satırda veya virgülle ayrılmış \"Satış Sorgusu, Destek Sorgusu\" gibi iletişim seçenekleri."
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr "Kişiler"
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr "{0} güvenlik düzeltmesi içerir"
@@ -5468,7 +5558,7 @@ msgstr "{0} güvenlik düzeltmesi içerir"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5550,7 +5640,7 @@ msgstr "Katkı Durumu"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Panoya kopyalandı."
@@ -5591,7 +5681,7 @@ msgstr "Doğru versiyon:"
msgid "Could not connect to outgoing email server"
msgstr "Giden e-posta sunucusuna bağlanamadı"
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "{0} bulunamadı."
@@ -5619,7 +5709,7 @@ msgstr "Kaydedilemedi, lütfen girdiğiniz verileri kontrol edin"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Sayı"
@@ -6324,7 +6414,7 @@ msgstr "Koyu Tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Gösterge Paneli"
@@ -7491,6 +7581,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7736,7 +7827,7 @@ msgstr "Adlandırma Kuralı Koşulu"
msgid "Document Naming Settings"
msgstr "Belge Adlandırma Ayarları"
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "Belge Kuyruğa Alındı"
@@ -7893,7 +7984,7 @@ msgid "Document Types and Permissions"
msgstr "Belge Türleri ve İzinler"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr "Belge Kilidi Açıldı"
@@ -8030,7 +8121,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr " HTML etiketlerini <script> gibi veya sadece < ve > gibi karakterleri kodlamayın, çünkü bunlar bu alanda kasıtlı olarak kullanılabilir"
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr "Hesabınız yok mu?"
@@ -8285,7 +8376,7 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8837,6 +8928,12 @@ msgstr "Belgelerde Otomatik Bağlamayı Etkinleştir"
msgid "Enable Comments"
msgstr "Yorumları Etkinleştir"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9227,7 +9324,7 @@ msgstr "Hata Günlükleri"
msgid "Error Message"
msgstr "Hata Mesajı"
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "Error connecting to QZ Tray Application...https://frappe.io), or * to accept all.\n"
+"/.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1973,7 +2027,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr ""
@@ -2062,16 +2116,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr ""
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr ""
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2085,21 +2129,24 @@ msgstr ""
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr ""
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
+
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr ""
@@ -2345,7 +2392,7 @@ msgstr ""
msgid "Assign Condition"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr ""
@@ -2354,7 +2401,7 @@ msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr ""
@@ -2599,11 +2646,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr ""
@@ -2655,6 +2702,11 @@ msgstr ""
msgid "Author"
msgstr ""
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2889,7 +2941,7 @@ msgstr ""
msgid "Average"
msgstr ""
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr ""
@@ -3766,7 +3818,7 @@ msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3918,11 +3970,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -3950,7 +4002,7 @@ msgstr ""
msgid "Cannot delete Home and Attachments folders"
msgstr ""
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
@@ -4005,7 +4057,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4042,7 +4094,7 @@ msgstr ""
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4087,7 +4139,7 @@ msgstr ""
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4144,10 +4196,6 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr ""
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -4432,6 +4480,10 @@ msgstr ""
msgid "Clear & Add template"
msgstr ""
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4553,8 +4605,10 @@ msgid "Client Credentials"
msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr ""
@@ -4570,6 +4624,12 @@ msgstr ""
msgid "Client Information"
msgstr ""
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
+
#. Label of a Link in the Build Workspace
#. Name of a DocType
#. Label of the client_script (Code) field in DocType 'DocType Layout'
@@ -4582,13 +4642,32 @@ msgstr ""
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
msgstr ""
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
@@ -4673,7 +4752,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4819,7 +4898,7 @@ msgstr ""
msgid "Columns based on"
msgstr ""
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr ""
@@ -5068,6 +5147,12 @@ msgstr ""
msgid "Conditions"
msgstr ""
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -5104,7 +5189,7 @@ msgid "Configure various aspects of how document naming works like naming series
msgstr ""
#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
-#: frappe/www/update-password.html:53
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr ""
@@ -5113,7 +5198,7 @@ msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr ""
-#: frappe/integrations/oauth2.py:120
+#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
msgstr ""
@@ -5126,7 +5211,7 @@ msgstr ""
msgid "Confirm New Password"
msgstr ""
-#: frappe/www/update-password.html:47
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
@@ -5167,8 +5252,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:97
-#: frappe/public/js/frappe/form/print_utils.js:121
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5260,6 +5345,11 @@ msgstr ""
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
msgstr ""
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
msgstr ""
@@ -5278,7 +5368,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/public/js/frappe/utils/utils.js:1745
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
#: frappe/website/doctype/web_page/web_page.json
@@ -5360,7 +5450,7 @@ msgstr ""
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1033
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr ""
@@ -5401,7 +5491,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1095
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr ""
@@ -5429,7 +5519,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:19
-#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr ""
@@ -6134,7 +6224,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
-#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr ""
@@ -7301,6 +7391,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/core/doctype/data_export/exporter.py:26
@@ -7546,7 +7637,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:476
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr ""
@@ -7703,7 +7794,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1944
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
@@ -7840,7 +7931,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o
msgstr ""
#: frappe/www/login.html:139 frappe/www/login.html:155
-#: frappe/www/update-password.html:57
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
@@ -8095,7 +8186,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/reports/query_report.js:1748
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8647,6 +8738,12 @@ msgstr ""
msgid "Enable Comments"
msgstr ""
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
@@ -9037,7 +9134,7 @@ msgstr ""
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:128
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "Error connecting to QZ Tray Application...https://frappe.io), or * to accept all.\n"
+"<h3>订单逾期</h3>\n\n"
-"<p>交易 {{ doc.name }} 已超过到期日。请采取必要行动。</p>\n\n"
-"<!-- 显示最后评论 -->\n"
+"<p>交易 {{ doc.name }} 已逾期. 请采取必要行动.</p>\n\n"
+"<!-- 显示最新备注信息 -->\n"
"{% if comments %}\n"
-"最后评论: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
+"最新备注: {{ comments[-1].comment }} {{ comments[-1].by }}\n"
"{% endif %}\n\n"
"<h4>详情</h4>\n\n"
"<ul>\n"
-"<li>客户: {{ doc.customer }}\n"
-"<li>金额: {{ doc.grand_total }}\n"
+"<li>客户: {{ doc.customer }}\n"
+"<li>金额: {{ doc.grand_total }}\n"
"</ul>\n"
""
@@ -597,7 +597,7 @@ msgstr "Condition Examples:
\n" "doc.status==\"Open\"" -msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" "
条件示例:
\n" +msgstr "条件范例:
\n" "doc.status==\"Open\"" @@ -740,6 +740,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "文档类型名称应以字母开头,只能包含字母、数字、空格、下划线和连字符" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "推荐文章必须包含封面图片" @@ -755,11 +760,11 @@ msgstr "同名文件{}已存在" #. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "A list of resources which the Client App will have access to after the user allows it.
doc.due_date==nowdate()
doc.total > 40000\n" "
/.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
@@ -2078,7 +2132,7 @@ msgstr "已在以下用户待办列表中:{0}"
#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
-msgstr "同时添加依赖货币字段{0}"
+msgstr "还要添加从属货币字段{0}"
#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
@@ -2087,7 +2141,7 @@ msgstr "同时添加状态依赖字段{0}"
#. Label of the login_id (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Alternative Email ID"
-msgstr "备用电子邮件地址"
+msgstr "别的邮箱账号"
#. Label of the always_bcc (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -2097,19 +2151,19 @@ msgstr "始终密送地址"
#. Label of the add_draft_heading (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Always add \"Draft\" Heading for printing draft documents"
-msgstr "打印草稿文档时始终添加“草稿”标题"
+msgstr "打印草稿状态单据时添加“草稿”标题"
#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this email address as sender address"
-msgstr "始终使用此电子邮件地址作为发件人地址"
+msgstr "使用此邮箱作为发件人邮箱"
#. Label of the always_use_account_name_as_sender_name (Check) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this name as sender name"
-msgstr "始终使用此名称作为发件人名称"
+msgstr "使用此用户名作为发件人"
#. Label of the amend (Check) field in DocType 'Custom DocPerm'
#. Label of the amend (Check) field in DocType 'DocPerm'
@@ -2127,18 +2181,18 @@ msgstr "修订"
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amend Counter"
-msgstr "修订计数器"
+msgstr "修订次数后缀"
#. Name of a DocType
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
msgid "Amended Document Naming Settings"
-msgstr "修订后的文档命名设置"
+msgstr "修订单据命名设置"
#. Label of the amended_documents_section (Section Break) field in DocType
#. 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amended Documents"
-msgstr "修订后的文档"
+msgstr "修订后单据"
#. Label of the amended_from (Link) field in DocType 'Transaction Log'
#. Label of the amended_from (Link) field in DocType 'Personal Data Download
@@ -2146,7 +2200,7 @@ msgstr "修订后的文档"
#: frappe/core/doctype/transaction_log/transaction_log.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Amended From"
-msgstr "修订自"
+msgstr "修订自(上一版单据编号)"
#: frappe/public/js/frappe/form/save.js:12
msgctxt "Freeze message while amending a document"
@@ -2157,9 +2211,9 @@ msgstr "修订中"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amendment Naming Override"
-msgstr "修订命名覆盖"
+msgstr "修改后单据编号方式重定义"
-#: frappe/model/document.py:549
+#: frappe/model/document.py:551
msgid "Amendment Not Allowed"
msgstr "不允许修订"
@@ -2174,7 +2228,7 @@ msgstr "设置会话默认值时发生错误"
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
-msgstr "扩展名为.ico的图标文件。应为16x16像素。使用网站图标生成器生成。[favicon-generator.org]"
+msgstr "一个图标文件扩展名为.ico。应为16×16像素。使用图标生成器生成。 [favicon-generator.org]"
#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
@@ -2184,11 +2238,11 @@ msgstr "授权{}时发生意外错误。"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "分析"
+msgstr "统计分析"
#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
-msgstr "上级节点"
+msgstr "祖先"
#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar
#. Settings'
@@ -2205,7 +2259,7 @@ msgstr "公告"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Annual"
-msgstr "年度"
+msgstr "全年"
#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data
#. Deletion Request'
@@ -2220,20 +2274,20 @@ msgstr "匿名响应"
#: frappe/public/js/frappe/request.js:189
msgid "Another transaction is blocking this one. Please try again in a few seconds."
-msgstr "另一个事务正在阻塞当前操作,请稍后重试。"
+msgstr "另一个交易正在进行中。请稍后再试。"
#: frappe/model/rename_doc.py:379
msgid "Another {0} with name {1} exists, select another name"
-msgstr "已存在名为{1}的{0},请选择其他名称"
+msgstr "具有相同名称{1}的{0}已存在,请更名。"
#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
-msgstr "可使用任何基于字符串的打印机语言。编写原始命令需要了解打印机厂商提供的原生语言。请参考打印机厂商提供的开发手册了解如何编写原生命令。这些命令在服务器端使用Jinja模板语言渲染。"
+msgstr "可以使用任何基于字符串的打印机语言。编写原始命令需要了解打印机制造商提供的打印机本机语言。请参阅打印机制造商提供的开发人员手册,了解如何编写本机命令。这些命令使用Jinja模板语言在服务器端呈现。"
#: frappe/core/page/permission_manager/permission_manager_help.html:36
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
-msgstr "除系统管理员外,具有设置用户权限角色的用户可为该文档类型设置其他用户的权限。"
+msgstr "除系统管理员外,有“设置权限”的角色可以为其他用户设置某单据类型的权限。"
#. Label of the app_tab (Tab Break) field in DocType 'System Settings'
#. Label of the app_section (Section Break) field in DocType 'User'
@@ -2248,16 +2302,6 @@ msgstr "除系统管理员外,具有设置用户权限角色的用户可为该
msgid "App"
msgstr "应用"
-#. Label of the client_id (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client ID"
-msgstr "应用客户端ID"
-
-#. Label of the client_secret (Data) field in DocType 'OAuth Client'
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
-msgid "App Client Secret"
-msgstr "应用客户端密钥"
-
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
@@ -2267,27 +2311,30 @@ msgstr "应用ID"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Logo"
-msgstr "应用徽标"
+msgstr "应用图标"
#. Label of the app_name (Select) field in DocType 'Module Def'
#. Label of the app_name (Data) field in DocType 'Changelog Feed'
-#. Label of the app_name (Data) field in DocType 'OAuth Client'
#. Label of the app_name (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/installed_applications/installed_applications.js:27
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
-#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
-msgstr "应用名称"
+msgstr "应用程序名称"
+
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "未找到模块{0}对应的应用"
-#: frappe/__init__.py:1466
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
-msgstr "应用{0}未安装"
+msgstr "未安装应用程序{0}"
#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
#. Account'
@@ -2296,18 +2343,18 @@ msgstr "应用{0}未安装"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "将邮件附加到已发送文件夹"
+msgstr "添加邮件到已发送"
#. Label of the append_to (Link) field in DocType 'Email Account'
#. Label of the append_to (Link) field in DocType 'IMAP Folder'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Append To"
-msgstr "附加到"
+msgstr "追加到"
#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
-msgstr "附加到可以是以下之一:{0}"
+msgstr "追加到可以是一个{0}"
#. Description of the 'Append To' (Link) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -2316,7 +2363,7 @@ msgstr "作为针对此 DocType 的通信附件(必须包含字段:“发件
#: frappe/core/doctype/user_permission/user_permission_list.js:105
msgid "Applicable Document Types"
-msgstr "适用文档类型"
+msgstr "适用单据类型"
#. Label of the applicable_for (Link) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
@@ -2357,29 +2404,29 @@ msgstr "应用分配规则"
#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
-msgstr "应用筛选器"
+msgstr "应用筛选"
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Apply Strict User Permissions"
-msgstr "应用严格用户权限"
+msgstr "启用加严用户权限限制"
#. Label of the view (Select) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Apply To"
-msgstr "应用到"
+msgstr "适用于"
#. Label of the apply_to_all_doctypes (Check) field in DocType 'User
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "应用到所有文档类型"
+msgstr "适用所有单据类型"
#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Apply User Permission On"
-msgstr "应用用户权限于"
+msgstr "用户权限限制字段(链接单据类型)"
#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -2392,15 +2439,15 @@ msgstr "应用文档权限"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Apply this rule if the User is the Owner"
-msgstr "如果用户是所有者则应用此规则"
+msgstr "用户是制单人则应用此规则"
#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
-msgstr "应用到所有文档类型"
+msgstr "适用所有单据类型"
#: frappe/model/workflow.py:266
msgid "Applying: {0}"
-msgstr "正在应用:{0}"
+msgstr "申请:{0}"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
@@ -2420,12 +2467,12 @@ msgstr "阿拉伯语"
#: frappe/public/js/frappe/views/kanban/kanban_column.html:14
msgid "Archive"
-msgstr "归档"
+msgstr "档案"
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Archived"
-msgstr "已归档"
+msgstr "已存档"
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494
msgid "Archived Columns"
@@ -2437,12 +2484,12 @@ msgstr "确定要清除分配吗?"
#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
-msgstr "确定要删除所有行吗?"
+msgstr "确定删除所有行?"
#: frappe/public/js/frappe/form/controls/attach.js:38
#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
-msgstr "确定要删除附件吗?"
+msgstr "您确定要删除附件?"
#: frappe/public/js/form_builder/components/Section.vue:197
msgctxt "Confirmation dialog message"
@@ -2477,19 +2524,19 @@ msgstr "确定要继续吗?"
#: frappe/core/doctype/rq_job/rq_job_list.js:25
msgid "Are you sure you want to re-enable scheduler?"
-msgstr "确定要重新启用调度程序吗?"
+msgstr "确定启动后台任务?"
#: frappe/core/doctype/communication/communication.js:163
msgid "Are you sure you want to relink this communication to {0}?"
-msgstr "确定要重新关联此沟通记录到{0}吗?"
+msgstr "您确定要重新链接该通信{0}?"
#: frappe/core/doctype/rq_job/rq_job_list.js:10
msgid "Are you sure you want to remove all failed jobs?"
-msgstr "确定要移除所有失败作业吗?"
+msgstr "确定删除所有运行出错的任务?"
#: frappe/public/js/frappe/list/list_filter.js:116
msgid "Are you sure you want to remove the {0} filter?"
-msgstr "确定要移除{0}筛选器吗?"
+msgstr "你确定要删除过滤条件 {0}?"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
msgid "Are you sure you want to reset all customizations?"
@@ -2502,7 +2549,7 @@ msgstr "确定要保存此文档吗?"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
-msgstr "确定吗?"
+msgstr "你确定吗?"
#. Label of the arguments (Code) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -2512,11 +2559,11 @@ msgstr "参数"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Arial"
-msgstr "Arial字体"
+msgstr "宋体"
#: frappe/core/page/permission_manager/permission_manager_help.html:11
msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
-msgstr "最佳实践是不要将相同的权限规则分配给不同角色,而应为同一用户设置多个角色。"
+msgstr "一种最佳的做法是,不要给不同的角色分派同样的权限规则,而是向同一用户分派多个角色。"
#: frappe/desk/form/assign_to.py:107
msgid "As document sharing is disabled, please give them the required permissions before assigning."
@@ -2529,18 +2576,18 @@ msgstr "根据您的要求,已永久删除您在{0}上与电子邮件{1}关联
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
-msgstr "分配条件"
+msgstr "分派条件"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
-msgstr "分配给"
+msgstr "执行人"
#: frappe/public/js/frappe/list/list_view.js:1950
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "分配给"
-#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
msgid "Assign To User Group"
msgstr "分配给用户组"
@@ -2548,7 +2595,7 @@ msgstr "分配给用户组"
#. 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign To Users"
-msgstr "分配给用户"
+msgstr "指派给用户"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:260
msgid "Assign a user"
@@ -2556,15 +2603,15 @@ msgstr "分配用户"
#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52
msgid "Assign one by one, in sequence"
-msgstr "逐个按顺序分配"
+msgstr "按顺序逐个用户分派"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
msgid "Assign to me"
-msgstr "分配给我"
+msgstr "自己认领"
#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
msgid "Assign to the one who has the least assignments"
-msgstr "分配给任务最少的人"
+msgstr "指派给待办最少的用户"
#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
msgid "Assign to the user set in this field"
@@ -2573,17 +2620,17 @@ msgstr "分配给此字段设置的用户"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Assigned"
-msgstr "已分配"
+msgstr "分派"
#. Label of the assigned_by (Link) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
msgid "Assigned By"
-msgstr "分配人"
+msgstr "发起人"
#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
msgid "Assigned By Full Name"
-msgstr "分配人全名"
+msgstr "发起人姓名"
#: frappe/model/meta.py:62
#: frappe/public/js/frappe/form/templates/form_sidebar.html:49
@@ -2592,31 +2639,31 @@ msgstr "分配人全名"
#: frappe/public/js/frappe/model/model.js:136
#: frappe/public/js/frappe/views/interaction.js:82
msgid "Assigned To"
-msgstr "分配给"
+msgstr "创建待办"
#: frappe/desk/report/todo/todo.py:40
msgid "Assigned To/Owner"
-msgstr "分配给/所有者"
+msgstr "执行人/发起人"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:269
msgid "Assigning..."
-msgstr "正在分配..."
+msgstr "分派中..."
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Assignment"
-msgstr "分配"
+msgstr "分派"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "分配完成"
+msgstr "分派已完成"
#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Days"
-msgstr "分配天数"
+msgstr "分派日"
#. Name of a DocType
#. Label of a Link in the Tools Workspace
@@ -2626,7 +2673,7 @@ msgstr "分配天数"
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo.json
msgid "Assignment Rule"
-msgstr "分配规则"
+msgstr "分派规则"
#. Name of a DocType
#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
@@ -2636,7 +2683,7 @@ msgstr "分配规则日"
#. Name of a DocType
#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
msgid "Assignment Rule User"
-msgstr "分配规则用户"
+msgstr "分派规则用户"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
msgid "Assignment Rule is not allowed on document type {0}"
@@ -2646,7 +2693,7 @@ msgstr "文档类型{0}不允许分配规则"
#. 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Rules"
-msgstr "分配规则"
+msgstr "分派规则"
#: frappe/desk/doctype/notification_log/notification_log.py:153
msgid "Assignment Update on {0}"
@@ -2654,7 +2701,7 @@ msgstr "{0}上的分配更新"
#: frappe/desk/form/assign_to.py:78
msgid "Assignment for {0} {1}"
-msgstr "{0} {1}的分配"
+msgstr "{0} {1}的分派"
#: frappe/desk/doctype/todo/todo.py:62
msgid "Assignment of {0} removed by {1}"
@@ -2665,7 +2712,7 @@ msgstr "{1}移除了{0}的分配"
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
msgid "Assignments"
-msgstr "分配"
+msgstr "任务分派"
#: frappe/public/js/frappe/form/grid_row.js:680
msgid "At least one column is required to show in the grid."
@@ -2690,11 +2737,11 @@ msgstr "父文档类型必须至少有一个字段"
#: frappe/public/js/frappe/form/controls/attach.js:5
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Attach"
-msgstr "附加"
+msgstr "添加文件"
#: frappe/public/js/frappe/views/communication.js:152
msgid "Attach Document Print"
-msgstr "附加文档打印"
+msgstr "添加打印输出作为附件"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -2707,25 +2754,25 @@ msgstr "附加文档打印"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Attach Image"
-msgstr "附加图像"
+msgstr "添加图片"
#. Label of the attach_package (Attach) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Attach Package"
-msgstr "附加软件包"
+msgstr "添加包"
#. Label of the attach_print (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Attach Print"
-msgstr "附加打印"
+msgstr "添加打印输出(PDF)作为附件"
#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
msgid "Attach a web link"
-msgstr "附加网页链接"
+msgstr "添加一个网址"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:8
msgid "Attach files / urls and add in table."
-msgstr "附加文件/URL并添加至表格。"
+msgstr "添加文件/网址并添加到表格中。"
#. Label of the attached_file (Code) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -2735,17 +2782,17 @@ msgstr "附加文件"
#. Label of the attached_to_doctype (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "附加到文档类型"
+msgstr "关联单据类型"
#. Label of the attached_to_field (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "附加到字段"
+msgstr "关联的字段"
#. Label of the attached_to_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr "附加到名称"
+msgstr "关联单据名"
#: frappe/core/doctype/file/file.py:142
msgid "Attached To Name must be a string or an integer"
@@ -2761,7 +2808,7 @@ msgstr "附件"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "附件限制(MB)"
+msgstr "附件大小限制(MB)"
#: frappe/core/doctype/file/file.py:324
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
@@ -2776,7 +2823,7 @@ msgstr "附件链接"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "附件已移除"
+msgstr "附件已删除"
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -2785,13 +2832,13 @@ msgstr "附件已移除"
msgid "Attachments"
msgstr "附件"
-#: frappe/public/js/frappe/form/print_utils.js:91
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
-msgstr "正在尝试连接QZ Tray..."
+msgstr "尝试连接QZ托盘......"
-#: frappe/public/js/frappe/form/print_utils.js:107
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
-msgstr "正在尝试启动QZ Tray..."
+msgstr "试图推出QZ Tray ......"
#: frappe/www/attribution.html:9
msgid "Attribution"
@@ -2805,12 +2852,12 @@ msgstr "审计系统钩子"
#. Name of a DocType
#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "Audit Trail"
-msgstr "审计跟踪"
+msgstr "审计轨迹"
#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Auth URL Data"
-msgstr "认证URL数据"
+msgstr "身份验证URL数据"
#. Label of the backend_app_flow (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -2841,6 +2888,11 @@ msgstr "从电子邮件账户{0}接收邮件时认证失败。"
msgid "Author"
msgstr "作者"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+
#. Label of the authorization_code (Password) field in DocType 'Google
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
@@ -2885,7 +2937,7 @@ msgstr "授权Google日历访问"
#. 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "授权Google联系人访问"
+msgstr "授权Google通讯录访问权限"
#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -2895,7 +2947,7 @@ msgstr "授权URL"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "已授权"
+msgstr "合法"
#: frappe/www/attribution.html:20
msgid "Authors"
@@ -2916,14 +2968,14 @@ msgstr "自动"
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Auto Email Report"
-msgstr "自动邮件报告"
+msgstr "自动发邮件-报表"
#. Label of the autoname (Data) field in DocType 'DocType'
#. Label of the autoname (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "自动命名"
+msgstr "自动编号"
#. Name of a DocType
#. Label of a Link in the Tools Workspace
@@ -2967,36 +3019,36 @@ msgstr "自动回复"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "自动回复消息"
+msgstr "自动回复留言"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
-msgstr "自动分配失败:{0}"
+msgstr "自动分派失败:{0}"
#. Label of the follow_assigned_documents (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are assigned to you"
-msgstr "自动关注分配给您的文档"
+msgstr "自动关注分派给你的单据"
#. Label of the follow_shared_documents (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are shared with you"
-msgstr "自动关注与您共享的文档"
+msgstr "自动关注分享给你的单据"
#. Label of the follow_liked_documents (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you Like"
-msgstr "自动关注您点赞的文档"
+msgstr "自动关注你喜欢的单据"
#. Label of the follow_commented_documents (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you comment on"
-msgstr "自动关注您评论的文档"
+msgstr "自动关注你评论的单据"
#. Label of the follow_created_documents (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you create"
-msgstr "自动关注您创建的文档"
+msgstr "自动关注你创建的单据"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227
msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
@@ -3014,12 +3066,12 @@ msgstr "自动完成"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Autoincrement"
-msgstr "自动递增"
+msgstr "自增"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Automate processes and extend standard functionality using scripts and background jobs"
-msgstr "使用脚本和后台作业自动化流程并扩展标准功能"
+msgstr "使用脚本与后台任务自动化流程以及扩展标准功能"
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
@@ -3035,16 +3087,16 @@ msgstr "自动"
#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
-msgstr "自动链接仅能在一个电子邮件账户上激活。"
+msgstr "只能为一个电子邮箱帐号激活自动链接。"
#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
-msgstr "仅当启用接收功能时才能激活自动链接。"
+msgstr "仅当勾选“收邮件”时,才能激活自动链接。"
#. Description of a DocType
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Automatically Assign Documents to Users"
-msgstr "自动分配文档给用户"
+msgstr "自动为用户分派单据"
#: frappe/public/js/frappe/list/list_view.js:128
msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
@@ -3053,7 +3105,7 @@ msgstr "已自动应用最近数据筛选器。您可以在列表视图设置中
#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Automatically delete account within (hours)"
-msgstr "在(小时)内自动删除账户"
+msgstr "自动删除账号时限(小时)"
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
@@ -3073,27 +3125,27 @@ msgstr "头像"
#: frappe/public/js/frappe/form/controls/password.js:88
#: frappe/public/js/frappe/ui/group_by/group_by.js:21
msgid "Average"
-msgstr "平均"
+msgstr "平均值"
-#: frappe/public/js/frappe/ui/group_by/group_by.js:342
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
-msgstr "{0}的平均值"
+msgstr "平均值{0}"
#: frappe/utils/password_strength.py:130
msgid "Avoid dates and years that are associated with you."
-msgstr "避免使用与您相关的日期和年份。"
+msgstr "避免日期和与你相关的年。"
#: frappe/utils/password_strength.py:124
msgid "Avoid recent years."
-msgstr "避免使用近年份。"
+msgstr "避免最近几年。"
#: frappe/utils/password_strength.py:117
msgid "Avoid sequences like abc or 6543 as they are easy to guess"
-msgstr "避免使用如abc或6543等容易被猜到的序列"
+msgstr "避免像ABC或6543的序列,因为它们容易被猜中"
#: frappe/utils/password_strength.py:124
msgid "Avoid years that are associated with you."
-msgstr "避免使用与您相关的年份。"
+msgstr "避免了与你相关的年。"
#. Label of the awaiting_password (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
@@ -3103,7 +3155,7 @@ msgstr "等待密码"
#. Label of the awaiting_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Awaiting password"
-msgstr "等待密码"
+msgstr "稍后提供密码"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
msgid "Awesome Work"
@@ -3178,12 +3230,12 @@ msgstr "B9"
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "BCC"
-msgstr "密送"
+msgstr "暗送"
#: frappe/public/js/frappe/views/communication.js:85
msgctxt "Email Recipients"
msgid "BCC"
-msgstr "密送"
+msgstr "暗送"
#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
@@ -3192,7 +3244,7 @@ msgstr "返回"
#: frappe/templates/pages/integrations/gcalendar-success.html:13
msgid "Back to Desk"
-msgstr "返回工作台"
+msgstr "返回主页(桌面)"
#: frappe/www/404.html:26
msgid "Back to Home"
@@ -3200,7 +3252,7 @@ msgstr "返回首页"
#: frappe/www/login.html:201 frappe/www/login.html:232
msgid "Back to Login"
-msgstr "返回登录"
+msgstr "返回登录界面"
#. Label of the background_color (Color) field in DocType 'Number Card'
#. Label of the background_color (Color) field in DocType 'Social Link
@@ -3216,7 +3268,7 @@ msgstr "背景颜色"
#. Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Background Image"
-msgstr "背景图像"
+msgstr "背景图片"
#. Label of a Link in the Build Workspace
#. Label of the background_jobs_section (Section Break) field in DocType
@@ -3225,7 +3277,7 @@ msgstr "背景图像"
#: frappe/desk/doctype/system_health_report/system_health_report.json
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
-msgstr "后台作业"
+msgstr "后台任务"
#. Label of the background_jobs_check (Data) field in DocType 'System Health
#. Report'
@@ -3236,7 +3288,7 @@ msgstr "后台作业检查"
#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Background Jobs Queue"
-msgstr "后台作业队列"
+msgstr "后台任务队列"
#: frappe/public/js/frappe/list/bulk_operations.js:87
msgid "Background Print (required for >25 documents)"
@@ -3249,15 +3301,15 @@ msgstr "后台打印(超过25个文档时需要)"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "后台工作进程"
+msgstr "后台进程"
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
-msgstr "备份加密密钥"
+msgstr "备份秘钥"
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
-msgstr "备份作业已排队,您将收到包含下载链接的电子邮件"
+msgstr "备份作业已经排队。您将收到一封包含下载链接的电子邮件"
#. Label of the backups_tab (Tab Break) field in DocType 'System Settings'
#. Label of the backups_section (Section Break) field in DocType 'System Health
@@ -3279,7 +3331,7 @@ msgstr "错误的Cron表达式"
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding"
-msgstr "银行家舍入法"
+msgstr "银行圆整"
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -3306,12 +3358,12 @@ msgstr "横幅图像"
#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner is above the Top Menu Bar."
-msgstr "横幅位于顶部菜单栏上方。"
+msgstr "横幅在顶部菜单上方显示。"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Bar"
-msgstr "条形图"
+msgstr "柱状图"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -3320,19 +3372,19 @@ msgstr "条形图"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Barcode"
-msgstr "条形码"
+msgstr "条码"
#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Base Distinguished Name (DN)"
-msgstr "基础可识别名称(DN)"
+msgstr "基本专有名称(DN)"
#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
#. Label of the base_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Base URL"
-msgstr "基础URL"
+msgstr "基本网址"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
@@ -3354,7 +3406,7 @@ msgstr "基于用户权限"
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "基础"
+msgstr "基本工资"
#. Label of the section_break_3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -3384,7 +3436,7 @@ msgstr "放弃前"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Insert"
-msgstr "插入前"
+msgstr "创建前"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3394,7 +3446,7 @@ msgstr "打印前"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Rename"
-msgstr "重命名前"
+msgstr "修改单据编号(名称)前"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3404,7 +3456,7 @@ msgstr "保存前"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save (Submitted Document)"
-msgstr "保存前(已提交文档)"
+msgstr "保存前(已提交)"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3414,38 +3466,38 @@ msgstr "提交前"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Validate"
-msgstr "验证前"
+msgstr "校验前"
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Beginner"
-msgstr "初级"
+msgstr "初学者"
#: frappe/public/js/frappe/form/link_selector.js:29
msgid "Beginning with"
-msgstr "开始于"
+msgstr "以此开头"
#. Label of the beta (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Beta"
-msgstr "测试版"
+msgstr "Beta版"
#: frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
-msgstr "建议添加更多字母或另一个单词"
+msgstr "最好加几个字母或一个字"
#: frappe/public/js/frappe/ui/filters/filter.js:27
msgid "Between"
-msgstr "介于"
+msgstr "自"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "计费"
+msgstr "发票"
#: frappe/public/js/frappe/form/templates/contact_list.html:27
msgid "Billing Contact"
-msgstr "账单联系人"
+msgstr "发票联系人"
#. Label of the binary_logging (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -3459,7 +3511,7 @@ msgstr "二进制日志记录"
#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
#: frappe/website/doctype/blogger/blogger.json
msgid "Bio"
-msgstr "简介"
+msgstr "个人简介"
#. Label of the birth_date (Date) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -3473,19 +3525,19 @@ msgstr "空白模板"
#. Name of a DocType
#: frappe/core/doctype/block_module/block_module.json
msgid "Block Module"
-msgstr "屏蔽模块"
+msgstr "锁定模块"
#. Label of the block_modules (Table) field in DocType 'Module Profile'
#. Label of the block_modules (Table) field in DocType 'User'
#: frappe/core/doctype/module_profile/module_profile.json
#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "屏蔽模块"
+msgstr "锁定模块"
#. Label of the blocked (Check) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Blocked"
-msgstr "已屏蔽"
+msgstr "锁定"
#. Label of a Card Break in the Website Workspace
#: frappe/website/doctype/blog_post/blog_post.py:245
@@ -3508,12 +3560,12 @@ msgstr "博客分类"
#. Label of the blog_intro (Small Text) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Blog Intro"
-msgstr "博客简介"
+msgstr "博客介绍"
#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Introduction"
-msgstr "博客导言"
+msgstr "博客介绍"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -3543,7 +3595,7 @@ msgstr "博客标题"
#: frappe/website/doctype/blogger/blogger.json
#: frappe/website/workspace/website/website.json
msgid "Blogger"
-msgstr "博主"
+msgstr "博客作者"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -3559,21 +3611,21 @@ msgstr "蓝色"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Bold"
-msgstr "粗体"
+msgstr "粗体字显示"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Bot"
-msgstr "机器人"
+msgstr "聊天机器人"
#: frappe/printing/page/print_format_builder/print_format_builder.js:126
msgid "Both DocType and Name required"
-msgstr "需要文档类型和名称"
+msgstr "单据类型和名称是必须项"
#: frappe/templates/includes/login/login.js:24
#: frappe/templates/includes/login/login.js:96
msgid "Both login and password required"
-msgstr "需要登录名和密码"
+msgstr "登录名和密码必填"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -3587,13 +3639,13 @@ msgstr "底部"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
msgid "Bottom Center"
-msgstr "底部居中"
+msgstr "底部中间"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247
msgid "Bottom Left"
-msgstr "左下"
+msgstr "底部左侧"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -3601,7 +3653,7 @@ msgstr "左下"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
msgid "Bottom Right"
-msgstr "右下"
+msgstr "底部右侧"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -3621,12 +3673,12 @@ msgstr "品牌HTML"
#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "品牌图片"
+msgstr "品牌形象"
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
-msgstr "品牌标志"
+msgstr "品牌图标"
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3662,13 +3714,13 @@ msgstr "浏览器版本"
#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
-msgstr "不支持的浏览器"
+msgstr "浏览器不支持"
#. Label of the brute_force_security (Section Break) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Brute Force Security"
-msgstr "暴力破解安全设置"
+msgstr "密码安全强化措施"
#. Label of the bufferpool_size (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -3683,7 +3735,7 @@ msgstr "构建"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
-msgstr "创建自定义报告、打印格式和仪表板。构建个性化工作空间以便导航"
+msgstr "创建自定义报表,打印格式,图表。创建个性化工作区便捷访问各个功能"
#: frappe/workflow/doctype/workflow/workflow_list.js:18
msgid "Build {0}"
@@ -3704,7 +3756,7 @@ msgstr "批量删除"
#: frappe/public/js/frappe/list/bulk_operations.js:321
msgid "Bulk Edit"
-msgstr "批量编辑"
+msgstr "批量修改"
#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
@@ -3720,7 +3772,7 @@ msgstr "批量操作成功"
#: frappe/public/js/frappe/list/bulk_operations.js:131
msgid "Bulk PDF Export"
-msgstr "批量PDF导出"
+msgstr "批量导出PDF"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -3774,7 +3826,7 @@ msgstr "按钮阴影"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
-msgstr "按“命名系列”字段"
+msgstr "单据编号模板"
#: frappe/website/doctype/web_page/web_page.js:111
#: frappe/website/doctype/web_page/web_page.js:118
@@ -3786,14 +3838,14 @@ msgstr "默认使用标题作为元标题,在此处添加值将覆盖默认设
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By fieldname"
-msgstr "按字段名"
+msgstr "字段"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By script"
-msgstr "通过脚本"
+msgstr "脚本代码"
#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
#. DocType 'User'
@@ -3805,13 +3857,13 @@ msgstr "若启用双因素认证则绕过受限IP地址检查"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "对从受限IP地址登录的用户绕过双因素认证"
+msgstr "为受限IP地址登录的用户绕过双重验证"
#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "若启用双因素认证则绕过受限IP地址检查"
+msgstr "绕过受限制的IP地址检查如果双因素验证启用"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -3919,17 +3971,17 @@ msgstr "日历视图"
#: frappe/contacts/doctype/contact/contact.js:55
#: frappe/desk/doctype/event/event.json
msgid "Call"
-msgstr "调用"
+msgstr "电话"
#. Label of the call_to_action (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action"
-msgstr "行动号召"
+msgstr "行动召唤"
#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action URL"
-msgstr "行动号召URL"
+msgstr "行动召唤网址"
#. Label of the cta_section (Section Break) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
@@ -3953,11 +4005,11 @@ msgid "Camera"
msgstr "摄像头"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/public/js/frappe/utils/utils.js:1729
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
-msgstr "活动"
+msgstr "促销活动"
#. Label of the campaign_description (Small Text) field in DocType 'UTM
#. Campaign'
@@ -3968,12 +4020,12 @@ msgstr "活动描述(可选)"
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
#: frappe/public/js/frappe/form/templates/set_sharing.html:50
msgid "Can Read"
-msgstr "可读"
+msgstr "可以读"
#: frappe/public/js/frappe/form/templates/set_sharing.html:7
#: frappe/public/js/frappe/form/templates/set_sharing.html:53
msgid "Can Share"
-msgstr "可共享"
+msgstr "可以分享"
#: frappe/public/js/frappe/form/templates/set_sharing.html:6
#: frappe/public/js/frappe/form/templates/set_sharing.html:52
@@ -3983,7 +4035,7 @@ msgstr "可提交"
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
#: frappe/public/js/frappe/form/templates/set_sharing.html:51
msgid "Can Write"
-msgstr "可写"
+msgstr "可以写"
#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "Can not rename as column {0} is already present on DocType."
@@ -3991,13 +4043,13 @@ msgstr "无法重命名,因为列{0}已存在于文档类型中。"
#: frappe/core/doctype/doctype/doctype.py:1163
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
-msgstr "仅当文档类型无数据时才能更改自动递增命名规则"
+msgstr "仅在单据类型无数据时修改自增编号"
#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
#. Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Can only list down the document types which has been linked to the User document type."
-msgstr "只能列出已链接到用户文档类型的文档类型。"
+msgstr "仅限访问关联了用户(链接字段)的单据类型"
#: frappe/desk/form/document_follow.py:48
msgid "Can't follow since changes are not tracked."
@@ -4036,7 +4088,7 @@ msgstr "全部取消"
#: frappe/public/js/frappe/form/form.js:966
msgid "Cancel All Documents"
-msgstr "取消所有文档"
+msgstr "取消所有单据"
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
@@ -4058,7 +4110,7 @@ msgstr "已取消"
#: frappe/core/doctype/deleted_document/deleted_document.py:52
msgid "Cancelled Document restored as Draft"
-msgstr "已取消文档恢复为草稿"
+msgstr "已取消的单据已恢复为草稿"
#: frappe/public/js/frappe/form/save.js:13
msgctxt "Freeze message while cancelling a document"
@@ -4067,11 +4119,11 @@ msgstr "正在取消"
#: frappe/desk/form/linked_with.py:381
msgid "Cancelling documents"
-msgstr "正在取消文档"
+msgstr "取消单据"
#: frappe/desk/doctype/bulk_update/bulk_update.py:91
msgid "Cancelling {0}"
-msgstr "正在取消{0}"
+msgstr "取消{0}"
#: frappe/core/doctype/prepared_report/prepared_report.py:265
msgid "Cannot Download Report due to insufficient permissions"
@@ -4083,11 +4135,11 @@ msgstr "无法获取值"
#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "Cannot Remove"
-msgstr "无法移除"
+msgstr "无法删除"
#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
-msgstr "提交后无法更新"
+msgstr "不允许提交后修改"
#: frappe/core/doctype/file/file.py:621
msgid "Cannot access file path {0}"
@@ -4099,17 +4151,17 @@ msgstr "从{0}状态转换到{1}状态时,提交前无法取消"
#: frappe/workflow/doctype/workflow/workflow.py:109
msgid "Cannot cancel before submitting. See Transition {0}"
-msgstr "提交前无法取消。请查看转换{0}"
+msgstr "提交前不能取消,详情参考状态转换{0}"
#: frappe/public/js/frappe/list/bulk_operations.js:294
msgid "Cannot cancel {0}."
msgstr "无法取消{0}。"
-#: frappe/model/document.py:1011
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "无法将文档状态从0(草稿)更改为2(已取消)"
-#: frappe/model/document.py:1025
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "无法将文档状态从1(已提交)更改为0(草稿)"
@@ -4119,15 +4171,15 @@ msgstr "无法更改已取消文档的状态({0}状态)"
#: frappe/workflow/doctype/workflow/workflow.py:98
msgid "Cannot change state of Cancelled Document. Transition row {0}"
-msgstr "无法更改已取消文档的状态。转换行{0}"
+msgstr "不能改变已取消单据的状态。状态转换第{0}行"
#: frappe/core/doctype/doctype/doctype.py:1153
msgid "Cannot change to/from autoincrement autoname in Customize Form"
-msgstr "在自定义表单中无法更改自动递增命名规则"
+msgstr "定制表单不支持修改自增编号"
#: frappe/core/doctype/communication/communication.py:169
msgid "Cannot create a {0} against a child document: {1}"
-msgstr "无法针对子文档{1}创建{0}"
+msgstr "无法创建{0}子单据:{1}"
#: frappe/desk/doctype/workspace/workspace.py:272
msgid "Cannot create private workspace of other users"
@@ -4135,11 +4187,11 @@ msgstr "无法创建其他用户的私有工作空间"
#: frappe/core/doctype/file/file.py:153
msgid "Cannot delete Home and Attachments folders"
-msgstr "无法删除主页和附件文件夹"
+msgstr "无法删除主文件和附件文件夹"
-#: frappe/model/delete_doc.py:378
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
-msgstr "无法删除或取消,因为{0} {1}与{2} {3} {4}存在关联"
+msgstr "由于{0} {1}与{2} {3} {4}关联,无法删除或取消"
#: frappe/custom/doctype/customize_form/customize_form.js:369
msgid "Cannot delete standard action. You can hide it if you want"
@@ -4158,7 +4210,7 @@ msgstr "无法删除标准字段{0}。您可以隐藏它。"
#: frappe/public/js/form_builder/components/Section.vue:190
#: frappe/public/js/form_builder/components/Tabs.vue:56
msgid "Cannot delete standard field. You can hide it if you want"
-msgstr "无法删除标准字段。您可以隐藏它"
+msgstr "标准字段只能隐藏,不能删除"
#: frappe/custom/doctype/customize_form/customize_form.js:347
msgid "Cannot delete standard link. You can hide it if you want"
@@ -4174,7 +4226,7 @@ msgstr "无法删除{0}"
#: frappe/utils/nestedset.py:299
msgid "Cannot delete {0} as it has child nodes"
-msgstr "无法删除{0},因为存在子节点"
+msgstr "无法删除{0} ,因为它有子节点"
#: frappe/desk/doctype/dashboard/dashboard.py:48
msgid "Cannot edit Standard Dashboards"
@@ -4182,7 +4234,7 @@ msgstr "无法编辑标准仪表板"
#: frappe/email/doctype/notification/notification.py:192
msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it"
-msgstr "无法编辑标准通知。如需编辑请禁用并复制"
+msgstr "无法编辑标准通知。要进行编辑,请勾选禁用然后复制它"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388
msgid "Cannot edit Standard charts"
@@ -4190,11 +4242,11 @@ msgstr "无法编辑标准图表"
#: frappe/core/doctype/report/report.py:72
msgid "Cannot edit a standard report. Please duplicate and create a new report"
-msgstr "无法编辑标准报告。请复制并创建新报告"
+msgstr "不能编辑标准的报表。请复制并创建一个新的报表"
-#: frappe/model/document.py:1031
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
-msgstr "无法编辑已取消文档"
+msgstr "无法编辑已取消单据"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378
msgid "Cannot edit filters for standard charts"
@@ -4207,7 +4259,7 @@ msgstr "无法编辑标准数字卡筛选器"
#: frappe/client.py:166
msgid "Cannot edit standard fields"
-msgstr "无法编辑标准字段"
+msgstr "不能编辑标准字段"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127
msgid "Cannot enable {0} for a non-submittable doctype"
@@ -4229,25 +4281,25 @@ msgstr "不能将多个打印机映射到单个打印格式。"
msgid "Cannot import table with more than 5000 rows."
msgstr "无法导入超过5000行的表格。"
-#: frappe/model/document.py:1099
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
-msgstr "无法链接已取消文档:{0}"
+msgstr "不能链接到已取消单据{0}"
#: frappe/model/mapper.py:175
msgid "Cannot map because following condition fails:"
-msgstr "无法映射,因为以下条件失败:"
+msgstr "无法对应,因为以下条件失败:"
#: frappe/core/doctype/data_import/importer.py:971
msgid "Cannot match column {0} with any field"
-msgstr "无法将列{0}与任何字段匹配"
+msgstr "上传文件中的字段{0}无法匹配目标单据字段"
#: frappe/public/js/frappe/form/grid_row.js:175
msgid "Cannot move row"
-msgstr "无法移动行"
+msgstr "不能移动行"
#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
-msgstr "无法移除ID字段"
+msgstr "无法删除ID字段"
#: frappe/core/page/permission_manager/permission_manager.py:132
msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
@@ -4272,9 +4324,9 @@ msgstr "无法更新{0}"
#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
-msgstr "不能在order by中使用子查询"
+msgstr "在order by语句中不能使用子查询"
-#: frappe/model/db_query.py:1145
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr "不能在order/group by中使用{0}"
@@ -4284,7 +4336,7 @@ msgstr "无法{0} {1}。"
#: frappe/utils/password_strength.py:181
msgid "Capitalization doesn't help very much."
-msgstr "大小写区别作用不大。"
+msgstr "资本化不适用。"
#: frappe/public/js/frappe/ui/capture.js:294
msgid "Capture"
@@ -4302,7 +4354,7 @@ msgstr "卡片分隔"
#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
-msgstr "卡片标签"
+msgstr "数字卡标题"
#: frappe/public/js/frappe/widgets/widget_dialog.js:262
msgid "Card Links"
@@ -4324,27 +4376,23 @@ msgstr "类别"
#. Label of the category_description (Text) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr "类别描述"
+msgstr "类别说明"
#. Label of the category_name (Data) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "类别名称"
-
-#: frappe/utils/data.py:1530
-msgid "Cent"
-msgstr "分"
+msgstr "分类名称"
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "居中"
+msgstr "中心"
#: frappe/core/page/permission_manager/permission_manager_help.html:16
msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr "某些文档(如发票)在最终确定后不应更改。此类文档的最终状态称为'已提交'。您可以限制哪些角色可提交。"
+msgstr "某些单据,例如发票一旦进入最终状态(即“已提交”)就不能再更改。你可以限制可以提交的角色。"
#: frappe/core/report/transaction_log_report/transaction_log_report.py:82
msgid "Chain Integrity"
@@ -4353,7 +4401,7 @@ msgstr "链完整性"
#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Chaining Hash"
-msgstr "链式哈希"
+msgstr "链接哈希"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
@@ -4372,7 +4420,7 @@ msgstr "更换图片"
#. Label of the label (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Change Label (via Custom Translation)"
-msgstr "更改标签(通过自定义翻译)"
+msgstr "更改标签(自定义转换)"
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
@@ -4414,7 +4462,7 @@ msgstr "变更日志订阅"
#. Label of the changed_values (HTML) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Changes"
-msgstr "变更"
+msgstr "找零"
#: frappe/email/doctype/email_domain/email_domain.js:5
msgid "Changing any setting will reflect on all the email accounts associated with this domain."
@@ -4422,7 +4470,7 @@ msgstr "任何设置更改将影响与此域关联的所有电子邮件账户。
#: frappe/core/doctype/system_settings/system_settings.js:67
msgid "Changing rounding method on site with data can result in unexpected behaviour."
-msgstr "在已有数据的站点更改舍入方法可能导致意外行为。"
+msgstr "站点已有业务数据的情况下变更圆整方式可能会产生非预期结果"
#. Label of the channel (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -4494,7 +4542,7 @@ msgstr "聊天"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "检查"
+msgstr "勾选框"
#: frappe/integrations/doctype/webhook/webhook.py:95
msgid "Check Request URL"
@@ -4502,7 +4550,7 @@ msgstr "检查请求URL"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
-msgstr "勾选要选择的列,拖拽调整顺序。"
+msgstr "勾选列选择,拖动列排序。"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454
msgid "Check the Error Log for more information: {0}"
@@ -4516,7 +4564,7 @@ msgstr "勾选此项可禁止用户注册账户。除非明确授权,否则用
#. 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this."
-msgstr "勾选此项将强制用户在保存前选择序列。若勾选则无默认值。"
+msgstr "如需用户手动选择单据编号模板,请勾选。勾选后系统不会设置默认单据编号模板。"
#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -4525,7 +4573,7 @@ msgstr ""
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
-msgstr "正在检查,请稍候"
+msgstr "检查一下"
#: frappe/website/doctype/website_settings/website_settings.js:140
msgid "Checking this will enable tracking page views for blogs, web pages, etc."
@@ -4535,7 +4583,7 @@ msgstr "勾选此项将启用博客、网页等的页面浏览跟踪"
#. DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "勾选此项将隐藏'链接'部分的自定义文档类型和报告卡片"
+msgstr "勾选后快速访问卡中不会出现自定义单据类型和报表"
#: frappe/website/doctype/web_page/web_page.js:78
msgid "Checking this will publish the page on your website and it'll be visible to everyone."
@@ -4548,7 +4596,7 @@ msgstr "勾选此项将显示文本区,可编写在此页面运行的JavaScrip
#. Label of the checksum_version (Data) field in DocType 'Transaction Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Checksum Version"
-msgstr "校验和版本"
+msgstr "校验版本"
#: frappe/www/list.py:85
msgid "Child DocTypes are not allowed"
@@ -4567,7 +4615,7 @@ msgstr "字段{1}的子表{0}"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype_list.js:52
msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "子表在其他文档类型中显示为网格"
+msgstr "嵌入其它单据类型中作为表格,一对多关系中的多这一方"
#: frappe/database/query.py:660
msgid "Child query fields for '{0}' must be a list or tuple."
@@ -4575,11 +4623,11 @@ msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
-msgstr "选择现有卡片或创建新卡片"
+msgstr "选择已有卡或创建一个新卡"
#: frappe/public/js/frappe/views/workspace/workspace.js:571
msgid "Choose a block or continue typing"
-msgstr "选择块或继续输入"
+msgstr "选择一个模板或输入文字"
#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
#: frappe/public/js/frappe/form/controls/color.js:5
@@ -4595,7 +4643,7 @@ msgstr "选择图标"
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "选择所有用户使用的认证方式"
+msgstr "选择所有用户使用的身份验证方法"
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4605,7 +4653,7 @@ msgstr "城市"
#. Label of the city (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "City/Town"
-msgstr "城市/城镇"
+msgstr "市/镇"
#: frappe/core/doctype/recorder/recorder_list.js:12
#: frappe/public/js/frappe/form/controls/attach.js:16
@@ -4614,12 +4662,16 @@ msgstr "清除"
#: frappe/public/js/frappe/views/communication.js:432
msgid "Clear & Add Template"
-msgstr "清除并添加模板"
+msgstr "清空并添加模板"
#: frappe/public/js/frappe/views/communication.js:111
msgid "Clear & Add template"
msgstr "清除并添加模板"
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr "清空全部"
+
#: frappe/public/js/frappe/list/list_view.js:1965
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
@@ -4627,7 +4679,7 @@ msgstr "清除分配"
#: frappe/public/js/frappe/ui/keyboard.js:287
msgid "Clear Cache and Reload"
-msgstr "清除缓存并重新加载"
+msgstr "清除缓存和重新加载"
#: frappe/core/doctype/error_log/error_log_list.js:12
msgid "Clear Error Logs"
@@ -4635,7 +4687,7 @@ msgstr "清除错误日志"
#: frappe/public/js/frappe/ui/filters/filter_list.js:299
msgid "Clear Filters"
-msgstr "清除筛选器"
+msgstr "清除过滤条件"
#. Label of the days (Int) field in DocType 'Logs To Clear'
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
@@ -4644,19 +4696,19 @@ msgstr "日志保留天数"
#: frappe/core/doctype/user_permission/user_permission_list.js:144
msgid "Clear User Permissions"
-msgstr "清除用户权限"
+msgstr "清除用户权限限制"
#: frappe/public/js/frappe/views/communication.js:433
msgid "Clear the email message and add the template"
-msgstr "清除邮件内容并添加模板"
+msgstr "模板内容覆盖邮件正文(消息)"
#: frappe/website/doctype/web_page/web_page.py:215
msgid "Clearing end date, as it cannot be in the past for published pages."
-msgstr "清除结束日期,因为已发布页面不能设置过去日期。"
+msgstr "清除结束日期,因为发布的页面不能在过去。"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194
msgid "Click On Customize to add your first widget"
-msgstr "点击'自定义'添加第一个组件"
+msgstr "点击定制按钮开始定制"
#: frappe/website/doctype/web_form/templates/web_form.html:147
msgid "Click here"
@@ -4676,28 +4728,28 @@ msgstr "点击下方链接批准请求"
#: frappe/templates/emails/new_user.html:7
msgid "Click on the link below to complete your registration and set a new password"
-msgstr "点击下方链接完成注册并设置新密码"
+msgstr "点击下面的链接完成注册,并设置新密码"
#: frappe/templates/emails/download_data.html:3
msgid "Click on the link below to download your data"
-msgstr "点击下方链接下载您的数据"
+msgstr "点击下面的链接下载您的数据"
#: frappe/templates/emails/delete_data_confirmation.html:4
msgid "Click on the link below to verify your request"
-msgstr "点击下方链接验证您的请求"
+msgstr "点击下面的链接验证您的请求"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
-msgstr "点击{0}生成刷新令牌。"
+msgstr "单击{0}以生成刷新令牌。"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
#: frappe/desk/doctype/number_card/number_card.js:215
#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
-msgstr "点击表格编辑"
+msgstr "点击表格进行编辑"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
#: frappe/desk/doctype/number_card/number_card.js:402
@@ -4708,7 +4760,7 @@ msgstr "点击设置动态筛选器"
#: frappe/desk/doctype/number_card/number_card.js:270
#: frappe/website/doctype/web_form/web_form.js:262
msgid "Click to Set Filters"
-msgstr "点击设置筛选器"
+msgstr "单击设置过滤条件"
#: frappe/public/js/frappe/list/list_view.js:711
msgid "Click to sort by {0}"
@@ -4717,19 +4769,19 @@ msgstr "点击按{0}排序"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Clicked"
-msgstr "已点击"
+msgstr "点击"
#. Label of the client (Link) field in DocType 'OAuth Authorization Code'
#. Label of the client (Link) field in DocType 'OAuth Bearer Token'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Client"
-msgstr "客户端"
+msgstr "客户"
#. Label of the client_code_section (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "客户端代码"
+msgstr "客户端javasript脚本"
#. Label of the sb_client_credentials_section (Section Break) field in DocType
#. 'Connected App'
@@ -4741,8 +4793,10 @@ msgid "Client Credentials"
msgstr "客户端凭证"
#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
#. Label of the client_id (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
msgstr "客户端ID"
@@ -4756,7 +4810,13 @@ msgstr "客户端ID"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "客户端信息"
+msgstr "客户信息"
+
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -4770,17 +4830,36 @@ msgstr "客户端脚本"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
#. Label of the client_secret (Password) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "客户端密钥"
+msgstr "客户端秘钥"
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
+
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
+
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
-msgstr "客户端URL"
+msgstr "客户端网址"
#. Label of the client_script (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -4854,14 +4933,14 @@ msgstr "代码挑战方法"
#: frappe/public/js/frappe/ui/sidebar.html:11
#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Collapse"
-msgstr "折叠"
+msgstr "收起"
#: frappe/public/js/frappe/form/controls/code.js:184
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "折叠"
-#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/reports/query_report.js:2076
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "全部折叠"
@@ -4881,12 +4960,12 @@ msgstr "可折叠"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible Depends On"
-msgstr "折叠依赖条件"
+msgstr "可折叠先决条件"
#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Collapsible Depends On (JS)"
-msgstr "折叠依赖条件(JS)"
+msgstr "可折叠先决条件(JS)"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the color (Data) field in DocType 'DocType'
@@ -4943,7 +5022,7 @@ msgstr "列2"
#: frappe/desk/doctype/kanban_board/kanban_board.py:84
msgid "Column {0} already exist."
-msgstr "列{0}已存在。"
+msgstr "列{0}已经存在。"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -4956,7 +5035,7 @@ msgstr "列{0}已存在。"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Column Break"
-msgstr "列分隔"
+msgstr "栏"
#: frappe/core/doctype/data_export/exporter.py:140
msgid "Column Labels:"
@@ -5005,11 +5084,11 @@ msgstr "列/字段"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
-msgstr "基于的列"
+msgstr "基于列"
-#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
-msgstr "不允许的授权类型({0})与响应类型({1})组合"
+msgstr "授予类型( {0} )和响应类型( {1} )的组合不允许"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -5029,12 +5108,12 @@ msgstr "评论"
#. Label of the comment_by (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr "评论人"
+msgstr "评论依据"
#. Label of the comment_email (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr "评论邮箱"
+msgstr "评论电邮"
#. Label of the comment_type (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -5043,7 +5122,7 @@ msgstr "评论类型"
#: frappe/desk/form/utils.py:58
msgid "Comment can only be edited by the owner"
-msgstr "评论只能由所有者编辑"
+msgstr "评论只能由制单人进行编辑"
#. Label of the comment_limit (Int) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
@@ -5069,7 +5148,7 @@ msgstr "评论"
#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Comments and Communications will be associated with this linked document"
-msgstr "评论和沟通将关联到此链接文档"
+msgstr "评论与沟通将与此链接的单据关联"
#: frappe/templates/includes/comments/comments.py:38
msgid "Comments cannot have links or email addresses"
@@ -5078,7 +5157,7 @@ msgstr "评论不能包含链接或电子邮件地址"
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Commercial Rounding"
-msgstr "商业舍入"
+msgstr "商业圆整"
#. Label of the commit (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -5092,7 +5171,7 @@ msgstr "已提交"
#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
-msgstr "常见姓名容易被猜中。"
+msgstr "常见名字和姓氏很容易被猜到。"
#. Name of a DocType
#. Option for the 'Communication Type' (Select) field in DocType
@@ -5104,7 +5183,7 @@ msgstr "常见姓名容易被猜中。"
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119
msgid "Communication"
-msgstr "通讯"
+msgstr "沟通"
#. Name of a DocType
#: frappe/core/doctype/communication_link/communication_link.json
@@ -5114,12 +5193,12 @@ msgstr "通讯链接"
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Communication Logs"
-msgstr "通讯日志"
+msgstr "沟通日志"
#. Label of the communication_type (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Communication Type"
-msgstr "通讯类型"
+msgstr "通信类型"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
msgid "Communication secret not set"
@@ -5140,13 +5219,13 @@ msgstr "公司简介"
#. Label of the company_name (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Company Name"
-msgstr "公司名称"
+msgstr "公司名"
#: frappe/core/doctype/server_script/server_script.js:14
#: frappe/custom/doctype/client_script/client_script.js:54
#: frappe/public/js/frappe/utils/diffview.js:28
msgid "Compare Versions"
-msgstr "版本对比"
+msgstr "版本比较"
#: frappe/core/doctype/server_script/server_script.py:157
msgid "Compilation warning"
@@ -5164,7 +5243,7 @@ msgstr "完成"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:203
msgid "Complete By"
-msgstr "完成人"
+msgstr "完成日期"
#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
@@ -5194,21 +5273,21 @@ msgstr "已完成"
#. Label of the completed_by_role (Link) field in DocType 'Workflow Action'
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By Role"
-msgstr "按角色完成"
+msgstr "审批人角色"
#. Label of the completed_by (Link) field in DocType 'Workflow Action'
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By User"
-msgstr "按用户完成"
+msgstr "审批人用户"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/website/doctype/web_template/web_template.json
msgid "Component"
-msgstr "组件"
+msgstr "薪资构成"
#: frappe/public/js/frappe/views/inbox/inbox_view.js:184
msgid "Compose Email"
-msgstr "撰写邮件"
+msgstr "写邮件"
#. Option for the 'Row Format' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -5254,7 +5333,13 @@ msgstr "条件描述"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Conditions"
-msgstr "条件列表"
+msgstr "条件"
+
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr "配置"
#. Label of the configuration_section (Section Break) field in DocType 'Social
#. Login Key'
@@ -5268,7 +5353,7 @@ msgstr "配置图表"
#: frappe/public/js/frappe/form/grid_row.js:390
msgid "Configure Columns"
-msgstr "配置列"
+msgstr "列设置"
#: frappe/core/doctype/recorder/recorder_list.js:200
msgid "Configure Recorder"
@@ -5284,9 +5369,9 @@ msgstr "为{0}配置列"
msgid "Configure how amended documents will be named.filters访问。https://frappe.io), or * to accept all.\n"
+"Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "专业建议:添加Reference: {{ reference_doctype }} {{ reference_name }}发送文档引用"
+msgstr "ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}发送单据引用"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
@@ -19875,11 +20046,11 @@ msgstr "仍然继续"
#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
-msgstr "处理中"
+msgstr "处理"
#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
-msgstr "处理中..."
+msgstr "处理..."
#: frappe/desk/page/setup_wizard/install_fixtures.py:51
msgid "Prof"
@@ -19888,11 +20059,11 @@ msgstr "教授"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr "个人资料"
+msgstr "个人信息"
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr "进度"
+msgstr "进展"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
@@ -19913,17 +20084,17 @@ msgstr "属性"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr "属性依赖项"
+msgstr "动态必填与只读属性"
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
-msgstr "属性设置器"
+msgstr "属性设置"
#. Description of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter overrides a standard DocType or Field property"
-msgstr "属性设置器覆盖标准文档类型或字段属性"
+msgstr "物业二传手覆盖标准的DocType或实地房产"
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -19936,7 +20107,7 @@ msgstr "属性类型"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Protect Attached Files"
-msgstr "受保护附件"
+msgstr "保护上传的附件(文件)"
#: frappe/core/doctype/file/file.py:501
msgid "Protected File"
@@ -19946,14 +20117,14 @@ msgstr "受保护文件"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example: {{ doc.name }} Delivered{{ doc.name }} Delivered{{ doc.name }} 已发货print(text)"
-msgstr "输出内容请使用print(text)"
+msgstr "可调用print输出结果"
#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
@@ -26684,7 +26950,7 @@ msgstr "要使用 Slack Channel,请添加 \n"
"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\""
-msgstr "跟踪您的电子邮件是否已被收件人打开。\n"
+msgstr "追踪收件人是否打开邮件.\n"
"/.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
-msgstr ""
+msgstr "Omogućava klijentima da preuzmu metapodatke sa /.well-known/oauth-authorization-server endpoint-a. ReferencaRFC8414"
#. Description of the 'Show Protected Resource Metadata' (Check) field in
#. DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
-msgstr ""
+msgstr "Omogućava klijentima da preuzmi metapodatke sa /.well-known/oauth-protected-resource endpoint-a. Referenca: RFC9728"
#. Description of the 'Enable Dynamic Client Registration' (Check) field in
#. DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
-msgstr ""
+msgstr "Omogućava klijentima da se registruju samostalno, bez ručne intervencije. Registracija kreira OAuth klijent unos. Referenca: RFC7591"
#. Description of the 'Show in Resource Metadata' (Check) field in DocType
#. 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
-msgstr ""
+msgstr "Omogućava klijentima da ovo vide kao autorizacioni server prilikom upita ka /.well-known/oauth-protected-resource endpoint-u."
#. Description of the 'Show Social Login Key as Authorization Server' (Check)
#. field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
-msgstr ""
+msgstr "Omogućava da se omogućeni osnovni URL ključa za prijavljivanje putem društvenih mreža prikaže kao autorizacioni server."
#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows skipping authorization if a user has active tokens."
-msgstr ""
+msgstr "Omogućava preskakanje autorizacije ukoliko korisnik već ima aktivne tokene."
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
@@ -9192,7 +9194,7 @@ msgstr "Završeno u"
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
-msgstr "Krajnje tačke"
+msgstr "Endpoints"
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -16616,18 +16618,20 @@ msgstr "Novi radni prostor"
msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
"https://frappe.io), ili * za prihvatanje svih.\n"
+"/.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
-msgstr ""
+msgstr "Омогућава клијентима да преузму метаподатке са /.well-known/oauth-authorization-server endpoint-a. Референца: RFC8414"
#. Description of the 'Show Protected Resource Metadata' (Check) field in
#. DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
-msgstr ""
+msgstr "Омогућава клијентима да преузму метаподатке са /.well-known/oauth-protected-resource endpoint-a. Референца: RFC9728"
#. Description of the 'Enable Dynamic Client Registration' (Check) field in
#. DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
-msgstr ""
+msgstr "Омогућава клијентима да се региструју самостално, без ручне интервенције. Регистрација креира OAuth клијент унос. Референца: RFC7591"
#. Description of the 'Show in Resource Metadata' (Check) field in DocType
#. 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
-msgstr ""
+msgstr "Омогућава клијентима да ово виде као ауторизациони сервер приликом упита ка /.well-known/oauth-protected-resource endpoint-u."
#. Description of the 'Show Social Login Key as Authorization Server' (Check)
#. field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
-msgstr ""
+msgstr "Омогућава да се омогућени URL кључа за пријављивање путем друштвених мрежа прикаже као ауторизациони сервер."
#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
#. Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Allows skipping authorization if a user has active tokens."
-msgstr ""
+msgstr "Омогућава прескакање ауторизације уколико корисник већ има активне токене."
#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
@@ -9192,7 +9193,7 @@ msgstr "Завршено у"
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
-msgstr "Крајње тачке"
+msgstr "Endpoints"
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -16616,18 +16617,20 @@ msgstr "Нови радни простор"
msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
"https://frappe.io), или * за прихватање свих.\n"
+"Reference: {{ reference_doctype }} {{ reference
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "المتابعة على أية حال"
@@ -20160,7 +20157,7 @@ msgstr "الاستعلام عن"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20357,7 +20354,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "رد: {0}"
@@ -20433,7 +20430,7 @@ msgstr "قراءة من قبل المتلقي"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20453,7 +20450,7 @@ msgstr ""
msgid "Reason"
msgstr "سبب"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "إعادة بناء"
@@ -20599,12 +20596,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "مخبأ خادم رديس يست قيد التشغيل. الرجاء الاتصال بمسؤول / الدعم الفني"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20818,11 +20815,11 @@ msgid "Referrer"
msgstr "المرجع"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20861,7 +20858,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "يحديث ..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "سجل لكن المعوقين"
@@ -20910,7 +20907,7 @@ msgstr "إعادة ربط"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "تحديث"
@@ -20941,7 +20938,7 @@ msgstr "تذكر آخر مختارة القيمة"
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21023,7 +21020,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21051,7 +21048,7 @@ msgstr ""
msgid "Reopen"
msgstr "إعادة فتح"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "كرر"
@@ -21241,7 +21238,7 @@ msgstr "مدير التقارير"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "تقرير الاسم"
@@ -21293,7 +21290,7 @@ msgstr "لا يحتوي التقرير على بيانات ، يرجى تعدي
msgid "Report has no numeric fields, please change the Report Name"
msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى تغيير اسم التقرير"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21305,7 +21302,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "تم تحديث التقرير بنجاح"
@@ -21313,7 +21310,7 @@ msgstr "تم تحديث التقرير بنجاح"
msgid "Report was not saved (there were errors)"
msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي."
@@ -21349,7 +21346,7 @@ msgstr "تقارير"
msgid "Reports & Masters"
msgstr "التقارير والماجستير"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "التقارير موجودة بالفعل في قائمة الانتظار"
@@ -21788,7 +21785,7 @@ msgstr "اذونات الصلاحيات"
msgid "Role Permissions Manager"
msgstr "مدير ضوابط الصلاحيات"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "مدير ضوابط الصلاحيات"
@@ -21822,7 +21819,7 @@ msgstr ""
msgid "Role and Level"
msgstr "مستوى الصلاحية"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22215,12 +22212,12 @@ msgstr "السبت"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22247,7 +22244,7 @@ msgstr "حفظ باسم"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "احفظ التقرير"
@@ -22266,7 +22263,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22314,7 +22311,7 @@ msgstr "مسح رمز الاستجابة السريعة وأدخل رمز الن
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22623,7 +22620,7 @@ msgstr "إعدادات الأمان"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "عرض جميع التقارير السابقة"
@@ -22691,8 +22688,8 @@ msgstr "حدد"
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22758,7 +22755,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "اختر المجال"
@@ -22829,7 +22826,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "حدد تنسيق طباعة"
@@ -22921,13 +22918,13 @@ msgstr "اختر أتلست سجل 1 للطباعة"
msgid "Select atleast 2 actions"
msgstr "حدد على الأقل 2 الإجراءات"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "حدد عنصر القائمة"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "حدد عناصر قائمة متعددة"
@@ -23043,7 +23040,7 @@ msgstr "أرسل الآن"
msgid "Send Print as PDF"
msgstr "إرسال الطباعة بصيغة PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "إرسال مقروءة إيصال"
@@ -23106,7 +23103,7 @@ msgstr "إرسال الاستفسارات إلى عنوان البريد الإ
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "أرسل لي نسخة"
@@ -23268,7 +23265,7 @@ msgstr "خادم IP"
msgid "Server Script"
msgstr "خادم النصي"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23307,11 +23304,11 @@ msgstr "إعدادات الجلسة الافتراضية"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "الجلسة الافتراضية"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "تم حفظ الإعدادات الافتراضية للجلسة"
@@ -23347,7 +23344,7 @@ msgstr "مجموعة"
msgid "Set Banner from Image"
msgstr "تعيين ترويسة من الصورة"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "مجموعة الرسم البياني"
@@ -23373,7 +23370,7 @@ msgstr "ضبط المرشحات"
msgid "Set Filters for {0}"
msgstr "تعيين عوامل التصفية لـ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23545,7 +23542,7 @@ msgstr "إعداد النظام الخاص بك"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23591,7 +23588,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "الإعداد التلقائي البريد الإلكتروني"
@@ -23794,7 +23791,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr "فواصل عرض الخط بعد الأقسام"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23870,7 +23867,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "أضهر العلامات"
@@ -24044,7 +24041,7 @@ msgstr "الشريط الجانبي وتعليقات"
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "تم تعطيل الاشتراك"
@@ -24846,7 +24843,7 @@ msgstr "مجال فرعي"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "موضوع"
@@ -24885,7 +24882,7 @@ msgstr ""
msgid "Submit"
msgstr "تسجيل"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "تسجيل"
@@ -24943,7 +24940,7 @@ msgstr "أرسل هذا المستند لإكمال هذه الخطوة."
msgid "Submit this document to confirm"
msgstr "إرسال هذه الوثيقة إلى تأكيد"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "إرسال {0} وثائق؟"
@@ -25092,7 +25089,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "اسم المستخدم اقترح: {0}"
@@ -25635,7 +25632,7 @@ msgstr "تحذيرات القالب"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "موقوف مؤقتا"
@@ -25899,11 +25896,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25980,7 +25977,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26009,7 +26006,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr "هناك بعض المشاكل مع رابط الملف: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26033,7 +26030,7 @@ msgstr "كانت هناك أخطاء"
msgid "There were errors while creating the document. Please try again."
msgstr "كانت هناك أخطاء أثناء إنشاء المستند. حاول مرة اخرى."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى."
@@ -26206,7 +26203,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "هذا يذهب فوق عرض الشرائح."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة."
@@ -26262,7 +26259,7 @@ msgstr "قد تتم طباعة هذا على صفحات متعددة"
msgid "This month"
msgstr "هذا الشهر"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26270,7 +26267,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "تم إنشاء هذا التقرير في {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "تم إنشاء هذا التقرير {0}."
@@ -26336,7 +26333,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "مخنوق"
@@ -26684,7 +26681,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "للحصول على التقرير المحدّث ، انقر على {0}."
@@ -26759,7 +26756,7 @@ msgstr "تبديل عرض الشبكة"
msgid "Toggle Sidebar"
msgstr "تبديل الشريط الجانبي"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "تبديل الشريط الجانبي"
@@ -26821,7 +26818,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة"
@@ -26883,9 +26880,9 @@ msgstr ""
msgid "Topic"
msgstr "موضوع"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "الاجمالي غير شامل الضريبة"
@@ -27053,7 +27050,7 @@ msgstr "التحولات"
msgid "Translatable"
msgstr "للترجمة"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27086,6 +27083,11 @@ msgstr "ترجمة"
msgid "Translations"
msgstr "ترجمة"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27423,11 +27425,11 @@ msgstr ""
msgid "Unchanged"
msgstr "دون تغيير"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27436,7 +27438,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "الغاء المتابعة"
@@ -27507,7 +27509,7 @@ msgstr "غير مقروء"
msgid "Unread Notification Sent"
msgstr "إرسال الإشعارات غير المقروءة"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27521,7 +27523,7 @@ msgstr ""
msgid "Unshared"
msgstr "غير مشارك"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "إلغاء الاشتراك"
@@ -27541,7 +27543,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "إلغاء اشتراكك"
@@ -27950,7 +27952,7 @@ msgstr "المستخدم لا يستطيع أن ينشئ"
msgid "User Cannot Search"
msgstr "المستخدم لا يستطيع أن يبحث"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28056,12 +28058,12 @@ msgstr "إذن المستخدم"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "ضوابط المستخدم"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "ضوابط المستخدم"
@@ -28162,15 +28164,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "المستخدم {0} لا يمكن حذف"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "المستخدم {0} لا يمكن تعطيل"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "المستخدم {0} لا يمكن إعادة تسمية"
@@ -28191,7 +28193,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr "طلب المستخدم {0} حذف البيانات"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28220,7 +28222,7 @@ msgstr ""
msgid "Username"
msgstr "اسم االمستخدم"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "اسم المستخدم {0} موجود بالفعل"
@@ -28493,7 +28495,7 @@ msgstr ""
msgid "View All"
msgstr "عرض الكل"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28780,6 +28782,7 @@ msgstr "عرض ويب"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29045,11 +29048,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "رسالة الترحيب تم أرسالها"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "أهلا وسهلا بك إلى {0}"
@@ -29403,7 +29406,7 @@ msgstr "حقول محور Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y الميدان"
@@ -29464,7 +29467,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "نعم"
@@ -29539,7 +29542,7 @@ msgstr "غير مسموح لك بتصدير النمط {}"
msgid "You are not allowed to print this report"
msgstr "لا يسمح لك بطباعة هذا التقرير"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة"
@@ -29654,7 +29657,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "يمكنك محاولة تغيير عوامل تصفية تقريرك."
@@ -29739,7 +29742,7 @@ msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذ
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29935,7 +29938,7 @@ msgstr "لقد قمت بإلغاء متابعة هذا المستند"
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29976,11 +29979,11 @@ msgstr "تم قفل حسابك وسيتم استئنافه بعد {0} ثانية
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "تمت إزالة واجبك في {0} {1} بواسطة {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30859,7 +30862,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} تقرير"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31030,7 +31033,7 @@ msgstr "{0} ح"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} قام بالفعل بتعيين القيمة الافتراضية لـ {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} تركت محادثة في {1} {2}"
@@ -31201,11 +31204,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} العناصر المحددة"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31341,7 +31344,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "تم حفظ {0} بنجاح"
@@ -31383,7 +31386,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr "{0} مشتركين تم اضافتهم"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} لإيقاف تلقي رسائل البريد الإلكتروني من هذا النوع"
@@ -31570,7 +31573,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: تم تعيين {1} على الحالة {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} ضد {2}"
diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po
index ee2e1294a1..3fb8e5e99c 100644
--- a/frappe/locale/bs.po
+++ b/frappe/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 Dan"
msgid "1 Google Calendar Event synced."
msgstr "Sinhroniziran je 1 događaj iz Google Kalendara."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 Izvještaj"
@@ -708,11 +708,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Zdravo,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Izvještaji & Pristup"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Upozorenje: Ovo polje generiše sistem i može biti prebrisano budućim ažuriranjem. Umjesto toga promijenite ga pomoću {0}."
@@ -1031,7 +1026,6 @@ msgstr "Tačan broj nije moguće preuzeti, klikni ovdje da biste vidjeli sve dok
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1097,10 +1091,10 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Radnje"
@@ -1162,8 +1156,8 @@ msgstr "Zapisnik Aktivnosti"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
@@ -1180,7 +1174,7 @@ msgstr "Dodaj / Ažuriraj"
msgid "Add A New Rule"
msgstr "Dodaj Novo Pravilo"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dodaj Prilog"
@@ -1204,7 +1198,7 @@ msgstr "Dodaj Ivicu na Vrh"
msgid "Add Card to Dashboard"
msgstr "Dodaj Karticu na Nadzornu Tablu"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Dodaj Grafikon na Nadzornu Tablu"
@@ -1213,8 +1207,8 @@ msgid "Add Child"
msgstr "Dodaj Podređeni"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1275,7 +1269,7 @@ msgstr "Dodaj Učesnike"
msgid "Add Query Parameters"
msgstr "Dodaj Parametre Upita"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Dodaj Uloge"
@@ -1285,7 +1279,7 @@ msgstr "Dodaj Red"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Dodaj Potpis"
@@ -1308,12 +1302,12 @@ msgstr "Dodaj Pretplatnike"
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Dodaj Šablon"
@@ -1420,7 +1414,7 @@ msgid "Add tab"
msgstr "Dodaj karticu"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Dodaj na Nadzornu Tablu"
@@ -1438,7 +1432,7 @@ msgstr "Dodajte ovoj aktivnosti slanjem e-pošte na adresu {0}"
#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
msgid "Add {0}"
-msgstr "{0}"
+msgstr "Dodaj {0}"
#: frappe/public/js/frappe/list/list_view.js:286
msgctxt "Primary action in list view"
@@ -1575,11 +1569,11 @@ msgstr "Administracija"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Administrator je prijavljen"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}."
@@ -2123,7 +2117,7 @@ msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na
msgid "Allows skipping authorization if a user has active tokens."
msgstr "Omogućava preskakanje autorizacije ako korisnik ima aktivne tokene."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Već Registrovan"
@@ -2222,7 +2216,7 @@ msgstr "Izmjena nije Dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila Izmjene Imenovanje ažurirana"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije"
@@ -2398,7 +2392,7 @@ msgstr "Primijenjeno na"
msgid "Apply"
msgstr "Primjeni"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Primijeni Pravilo Dodjele"
@@ -2479,7 +2473,7 @@ msgstr "Arhivirano"
msgid "Archived Columns"
msgstr "Arhivirane Kolone"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "Jeste li sigurni da želite izbrisati zadatke?"
@@ -2511,7 +2505,7 @@ msgstr "Jeste li sigurni da želite izbrisati karticu? Svi odjeljci zajedno s po
msgid "Are you sure you want to discard the changes?"
msgstr "Jeste li sigurni da želite odbaciti promjene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "Jeste li sigurni da želite generisati novi izvještaj?"
@@ -2583,7 +2577,7 @@ msgstr "Dodijeli Uslov"
msgid "Assign To"
msgstr "Dodijeli"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodijeli"
@@ -2740,7 +2734,7 @@ msgstr "Barem jedno polje vrste nadređenog dokumenta je obavezno"
msgid "Attach"
msgstr "Priloži"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Priloži Ispis Dokumenta"
@@ -3233,7 +3227,7 @@ msgstr "B9"
msgid "BCC"
msgstr "BCC"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3276,7 +3270,7 @@ msgstr "Pozadinska Slika"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Poslovi u Pozadini"
@@ -3881,7 +3875,7 @@ msgstr "OTKAZANO"
msgid "CC"
msgstr "CC"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -4072,7 +4066,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji."
msgid "Cancel"
msgstr "Otkaži"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Otkaži"
@@ -4090,7 +4084,7 @@ msgstr "Otkaži"
msgid "Cancel All Documents"
msgstr "Otkaži Sve Dokumente"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Otkaži {0} dokumenta?"
@@ -4352,7 +4346,7 @@ msgstr "Numerička Kartica"
msgid "Card Break"
msgstr "Prijelom Kartice"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Oznaka Kartice"
@@ -4491,7 +4485,7 @@ msgstr "Konfiguracija Grafikona"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Naziv Grafikona"
@@ -4660,11 +4654,11 @@ msgstr "Grad/Mjesto"
msgid "Clear"
msgstr "Očisti"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Očisti & Dodaj Šablon"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Očisti & Dodaj Šablon"
@@ -4672,7 +4666,7 @@ msgstr "Očisti & Dodaj Šablon"
msgid "Clear All"
msgstr "Obriši Sve"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Obriši Dodjelu"
@@ -4698,7 +4692,7 @@ msgstr "Očisti Zapisnike Nakon (dana)"
msgid "Clear User Permissions"
msgstr "Obriši Korisničke Dozvole"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "Obrišite poruku e-pošte i dodajte šablon"
@@ -4940,7 +4934,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sklopi Sve"
@@ -4995,7 +4989,7 @@ msgstr "Sklopivo Zavisi Od (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5245,7 +5239,7 @@ msgstr "Završeno"
msgid "Complete By"
msgstr "Završeno Do"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Završi Registraciju"
@@ -5656,7 +5650,7 @@ msgstr "Kopiraj ugrađen kod"
msgid "Copy error to clipboard"
msgstr "Greška pri kopiranju u međuspremnik"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Kopiraj u Međuspremnik"
@@ -5780,7 +5774,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5794,13 +5788,13 @@ msgstr "Kreiraj & Nastavi"
msgid "Create Address"
msgstr "Kreiraj Adresu"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Kreiraj Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Kreiraj Grafikon"
@@ -6264,12 +6258,12 @@ msgstr "Prilagođavanja za {0} eksportirana u:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Prilagodi"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Prilagodi"
@@ -6913,7 +6907,7 @@ msgstr "Odgođeno"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6922,7 +6916,7 @@ msgstr "Odgođeno"
msgid "Delete"
msgstr "Izbriši"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Izbriši"
@@ -6958,7 +6952,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Izbriši Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Izbriši i Generiši Novi"
@@ -7000,12 +6994,12 @@ msgstr "Izbriši karticu"
msgid "Delete this record to allow sending to this email address"
msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Trajno izbriši stavku {0}?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Trajno izbriši {0} stavke?"
@@ -7413,8 +7407,8 @@ msgstr "Onemogući Prijave"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Onemogućeno"
@@ -7423,7 +7417,7 @@ msgstr "Onemogućeno"
msgid "Disabled Auto Reply"
msgstr "Automatski Odgovor Onemogućen"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8178,7 +8172,7 @@ msgstr "Link Preuzimanja"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Preuzmi izvještaj"
@@ -8262,7 +8256,7 @@ msgid "Due Date Based On"
msgstr "Krajnji Rok na osnovu"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Kopiraj"
@@ -8377,9 +8371,9 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8391,7 +8385,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8426,11 +8420,11 @@ msgstr "Uredi Prilagođeni Blok"
msgid "Edit Custom HTML"
msgstr "Uredi Prilagođeni HTML"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "Uredi DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Uredi DocType"
@@ -8607,7 +8601,7 @@ msgstr "Birač Elementa"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8642,7 +8636,7 @@ msgstr "Račun e-pošte je onemogućen."
msgid "Email Account Name"
msgstr "Ime Računa e-pošte"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "Račun e-pošte je dodan više puta"
@@ -8749,7 +8743,7 @@ msgstr "Red Čekanja e-pošte"
msgid "Email Queue Recipient"
msgstr "Primatelj e-pošte Reda Čekanja"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "Brisanje Reda Čekanja e-pošte prekinuto je zbog previše grešaka."
@@ -8813,7 +8807,7 @@ msgstr "Opcija Sinhronizacije e-pošte"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "Šablon e-pošte"
@@ -8845,7 +8839,7 @@ msgstr "E-pošta je premještena u smeće"
msgid "Email is mandatory to create User Email"
msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "E-pošta nije poslana na {0} (otkazana / onemogućena)"
@@ -8871,7 +8865,7 @@ msgstr "E-pošta Povučena"
msgid "Emails are already being pulled from this account."
msgstr "E-pošta se već povlači s ovog računa."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "E-pošta je prigušena"
@@ -9097,8 +9091,8 @@ msgstr "Omogući praćenje web stranice u aplikaciji"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Omogućeno"
@@ -9225,7 +9219,7 @@ msgstr "Unesi Id klijenta i Tajnu klijenta u Google Postavke."
msgid "Enter Code displayed in OTP App."
msgstr "Unesi kod prikazan u OTP aplikaciji."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Unesi Primaoca(e) e-pošte"
@@ -9539,7 +9533,7 @@ msgstr "Izvršava se Kod"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Vrijeme izvršenja: {0} sek"
@@ -9565,7 +9559,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Rasklopi Sve"
@@ -9626,13 +9620,13 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Izvezi"
@@ -9990,8 +9984,8 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10561,7 +10555,7 @@ msgid "Folio"
msgstr "Folio"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Prati"
@@ -10754,7 +10748,7 @@ msgstr "Za Korisnika"
msgid "For Value"
msgstr "Za Vrijednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
@@ -11016,7 +11010,7 @@ msgstr "Petak"
msgid "From"
msgstr "Od"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Od"
@@ -11032,7 +11026,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -11083,7 +11077,7 @@ msgstr "Puna Širina"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkcija"
@@ -11161,7 +11155,7 @@ msgstr "Općenito"
msgid "Generate Keys"
msgstr "Generiši Ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Generiši Novi Izvještaj"
@@ -11169,7 +11163,7 @@ msgstr "Generiši Novi Izvještaj"
msgid "Generate Random Password"
msgstr "Generiši Nasumičnu Lozinku"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11285,7 +11279,7 @@ msgstr "Globalne Prečice"
msgid "Global Unsubscribe"
msgstr "Globalno Otkazivanje Pretplate"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Idi"
@@ -11449,8 +11443,6 @@ msgstr "Google Kontakti - Nije moguće ažurirati kontakt u Google Kontaktima {0
msgid "Google Contacts Id"
msgstr "Id Google Kontakata"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Disk"
@@ -11487,6 +11479,7 @@ msgstr "Google Servisi"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11914,6 +11907,10 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena Polja"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr "Skrivene kolone uključuju: {0}"
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12027,7 +12024,7 @@ msgstr "Sakrij Bočnu Traku, Meni i Komentare"
msgid "Hide Standard Menu"
msgstr "Sakrij Standardni Meni"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Sakrij Oznake"
@@ -12583,7 +12580,7 @@ msgstr "Polje za sliku mora biti tipa Priloži Sliku"
msgid "Image link '{0}' is not valid"
msgstr "Veza slike '{0}' nije važeća"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Slika optimizovana"
@@ -12631,7 +12628,7 @@ msgstr "Implicitno"
msgid "Import"
msgstr "Uvezi"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Uvezi"
@@ -12859,11 +12856,15 @@ msgstr "Uključite Teme iz Aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi Web Pregled vezu u e-poštu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Uključi Filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr "Uključi skrivene kolone"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Uključi Uvlačenje"
@@ -13021,7 +13022,7 @@ msgstr "Umetni Iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Umetni Poslije"
@@ -13212,7 +13213,7 @@ msgstr "Nevažeći"
msgid "Invalid \"depends_on\" expression"
msgstr "Nevažeći izraz \"depends_on\""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}"
@@ -13323,7 +13324,7 @@ msgstr "Nevažeće Nadjačavanje"
msgid "Invalid Parameters."
msgstr "Nevažeći Parametri."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13913,8 +13914,8 @@ msgstr "Posao se ne izvodi."
msgid "Join video conference with {0}"
msgstr "Pridruži se video konferenciji sa {0}"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Skoči na polje"
@@ -14879,7 +14880,7 @@ msgstr "Filter Liste"
msgid "List Settings"
msgstr "Postavke Liste"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Postavke Liste"
@@ -14951,7 +14952,7 @@ msgstr "Učitaj više"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Učitava se"
@@ -15660,7 +15661,7 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15697,7 +15698,7 @@ msgstr "Poruka Poslata"
msgid "Message Type"
msgstr "Tip Poruke"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Poruka je isječena"
@@ -16412,12 +16413,12 @@ msgstr "Šablon Navigacijske Trake"
msgid "Navbar Template Values"
msgstr "Vrijednosti Šablona Navigacijske Trake"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Kreći se po listi prema dolje"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Kreći se po listi prema gore"
@@ -16549,10 +16550,6 @@ msgstr "Nova Pruka sa Kontaktne Web Stranice"
msgid "New Name"
msgstr "Novo Ime"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Novi Bilten"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Novo Obavještenje"
@@ -16655,7 +16652,7 @@ msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16667,15 +16664,15 @@ msgstr "Nova vrijednost koju treba postaviti"
msgid "New {0}"
msgstr "Novi {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Novi {0} Kreiran"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Novi {0} {1} kreiran"
@@ -16687,7 +16684,7 @@ msgstr "Novi {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
@@ -16814,7 +16811,7 @@ msgstr "Sljedeća na Klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16955,7 +16952,7 @@ msgstr "Nema Rezultata"
msgid "No Results found"
msgstr "Nema Rezultata"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "Nisu Navedene Uloge"
@@ -17023,7 +17020,7 @@ msgstr "Još nema dodanih kontakata."
msgid "No contacts linked to document"
msgstr "Nema kontakata povezanih s dokumentom"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Nema podataka za izvoz"
@@ -17215,7 +17212,7 @@ msgstr "Normalizovane Kopije"
msgid "Normalized Query"
msgstr "Normalizovani Upit"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Nije Dozvoljeno"
@@ -17271,7 +17268,7 @@ msgstr "Nemože se Nulirati"
msgid "Not Permitted"
msgstr "Nije Dozvoljeno"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "Nije Dozvoljeno čitati {0}"
@@ -17281,8 +17278,8 @@ msgstr "Nije Dozvoljeno čitati {0}"
msgid "Not Published"
msgstr "Nije Objavljeno"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17315,7 +17312,7 @@ msgstr "Nije Postavljeno"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Nije važeća Korisnička slika."
@@ -17550,7 +17547,7 @@ msgstr "Obavijesti ako nema odgovora za (u minutama)"
msgid "Notify users with a popup when they log in"
msgstr "Obavijestite korisnike skočnim prozorom kada se prijave"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Sad"
@@ -17845,7 +17842,7 @@ msgstr "Na ili Poslije"
msgid "On or Before"
msgstr "Na ili Prije"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "{0}, {1} je napisao:"
@@ -17921,7 +17918,7 @@ msgstr "Samo Administrator može uređivati"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Samo Administrator može spremiti standardni izvještaj. Preimenuj i spremi."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Samo Administrator može koristiti Snimač"
@@ -18074,7 +18071,7 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorite stavku liste"
@@ -18129,7 +18126,7 @@ msgstr "Operator mora biti jedan od {0}"
msgid "Optimize"
msgstr "Optimiziraj"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Optimiziranje slike u toku..."
@@ -18320,7 +18317,7 @@ msgstr "ZAKRPA"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18679,11 +18676,11 @@ msgstr "Pasivno"
msgid "Password"
msgstr "Lozinka"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "E-pošta s lozinkom poslana"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Poništavanje Lozinke"
@@ -18717,7 +18714,7 @@ msgstr "Nedostaje Lozinka za Račun e-pošte"
msgid "Password not found for {0} {1} {2}"
msgstr "Lozinka nije pronađena za {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
@@ -18729,7 +18726,7 @@ msgstr "Lozinka postavljena"
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
@@ -19100,7 +19097,7 @@ msgstr "Kopiraj ovu Temu Web Stranice kako biste je prilagodili."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcionalnost."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Postavi Grafikon"
@@ -19116,7 +19113,7 @@ msgstr "Dodaj predmet e-pošti"
msgid "Please add a valid comment."
msgstr "Dodaj relevantan komentar."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Zamoli administratora da potvrdi vašu registraciju"
@@ -19148,7 +19145,7 @@ msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Provjeri e-poštu za potvrdu"
@@ -19339,7 +19336,7 @@ msgstr "Odaberi Tip Entiteta"
msgid "Please select Minimum Password Score"
msgstr "Odaberi Minimalnu Vrijednost Lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
@@ -19397,7 +19394,7 @@ msgstr "Postavi adresu e-pošte"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Postavi filtere"
@@ -19425,7 +19422,7 @@ msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičn
msgid "Please setup a message first"
msgstr "Postavi Poruku"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Podesi standard odlazni račun e-pošte iz Podešavanja > Račun e-pošte"
@@ -19643,11 +19640,11 @@ msgstr "Korisnik Pripremljenog Izvještaja"
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Priprema Izvještaja"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Priloži šablon poruci e-pošte"
@@ -19712,7 +19709,7 @@ msgstr "Pregled {0}"
msgid "Preview type"
msgstr "Pregled Tip"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Pregled:"
@@ -19783,16 +19780,16 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Ispiši"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Ispiši"
@@ -19862,7 +19859,7 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr "Format Ispisa nije pronađen"
@@ -19897,7 +19894,7 @@ msgstr "Sakrij"
msgid "Print Hide If No Value"
msgstr "Sakrij ispis ako nema vrijednost"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Jezik Ispisa"
@@ -20043,7 +20040,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Svejedno Nastavi"
@@ -20349,7 +20346,7 @@ msgstr "Izvještaj Upita"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analiza Upita završena. Provjeri predložene indekse."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
@@ -20546,7 +20543,7 @@ msgstr "Od:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "Od: {0}"
@@ -20622,7 +20619,7 @@ msgstr "Čitanje Primatelja Omogućeno"
msgid "Read mode"
msgstr "Način Čitanja"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Pročitaj dokumentaciju da biste saznali više"
@@ -20642,7 +20639,7 @@ msgstr "Realno Vrijeme (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Obnovi"
@@ -20788,12 +20785,12 @@ msgstr "Preusmjeravanja"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis server ne radi. Kontaktiraj Administratora/Tehničku podršku"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Ponovi"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Ponovi posljednju radnju"
@@ -21007,11 +21004,11 @@ msgid "Referrer"
msgstr "Preporučitelj"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21050,7 +21047,7 @@ msgstr "Osvježava se"
msgid "Refreshing..."
msgstr "Osvježavanje u toku..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Registrovan, ali onemogućen"
@@ -21099,7 +21096,7 @@ msgstr "Ponovno povezano"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Ponovo Učitaj"
@@ -21130,7 +21127,7 @@ msgstr "Zapamti Posljednju Odabranu Vrijednost"
msgid "Remind At"
msgstr "Podsjeti"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Podsjeti Me"
@@ -21212,7 +21209,7 @@ msgstr "Uklonjeno"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21240,7 +21237,7 @@ msgstr "Prikaži oznake lijevo i vrijednosti desno u ovom odjeljku"
msgid "Reopen"
msgstr "Ponovo otvori"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Ponovi"
@@ -21430,7 +21427,7 @@ msgstr "Upravitelj izvještaja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Naziv Izvještaja"
@@ -21482,7 +21479,7 @@ msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvj
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
@@ -21494,7 +21491,7 @@ msgstr "Granica Izvještaja Dostignuta"
msgid "Report timed out."
msgstr "Izvještaj je istekao."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Izvještaj je uspješno ažuriran"
@@ -21502,7 +21499,7 @@ msgstr "Izvještaj je uspješno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izvještaj nije spremljen (bilo je grešaka)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada."
@@ -21538,7 +21535,7 @@ msgstr "Izvještaji"
msgid "Reports & Masters"
msgstr "Izvještaji & Masters"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Izvještaji su već u redu čekanja"
@@ -21977,7 +21974,7 @@ msgstr "Dozvole Uloge"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
@@ -22011,7 +22008,7 @@ msgstr "Replikacija Uloge"
msgid "Role and Level"
msgstr "Uloga i Nivo"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema tipu korisnika {0}"
@@ -22404,12 +22401,12 @@ msgstr "Subota"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22436,7 +22433,7 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Spremi Izvještaj"
@@ -22455,7 +22452,7 @@ msgstr "Spremi dokument."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22503,7 +22500,7 @@ msgstr "Skenirajte QR Kod i unesi prikazani rezultirajući kod."
msgid "Schedule"
msgstr "Raspored"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Raspored Slanja"
@@ -22812,7 +22809,7 @@ msgstr "Sigurnosne Postavke"
msgid "See all Activity"
msgstr "Pogledaj Sve Aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izvještaje."
@@ -22880,8 +22877,8 @@ msgstr "Odaberi"
msgid "Select All"
msgstr "Odaberi sve"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22947,7 +22944,7 @@ msgstr "Odaberi Tipove Dokumenata da postavite koje se korisničke dozvole koris
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Odaberi Polje"
@@ -23018,7 +23015,7 @@ msgid "Select Page"
msgstr "Odaberi Stranicu"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Odaberi Ispis Format"
@@ -23110,13 +23107,13 @@ msgstr "Odaberi najmanje jedan zapis za ispis"
msgid "Select atleast 2 actions"
msgstr "Odaberi najmanje dvije radnje"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Odaberi Artikal Liste"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Odaberi artikle više listi"
@@ -23232,7 +23229,7 @@ msgstr "Pošalji Sad"
msgid "Send Print as PDF"
msgstr "Pošalji Ispis kao PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Pošalji Potvrdu o Čitanju"
@@ -23295,7 +23292,7 @@ msgstr "Pošalji upite na ovu adresu e-pošte"
msgid "Send login link"
msgstr "Pošalji Vezu Prijave"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Pošalji Mi Kopiju"
@@ -23457,7 +23454,7 @@ msgstr "IP Servera"
msgid "Server Script"
msgstr "Server Skripta"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije."
@@ -23496,11 +23493,11 @@ msgstr "Standard Postavke Sesije"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Standard Sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
@@ -23536,7 +23533,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi Transparent sa Slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Potavi grafikon"
@@ -23562,7 +23559,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -23758,7 +23755,7 @@ msgstr "Postavljanje vašeg sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23804,7 +23801,7 @@ msgstr "Postavljanje> Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -24007,7 +24004,7 @@ msgstr "Prikaži Birač Jezika"
msgid "Show Line Breaks after Sections"
msgstr "Prikaži Prijelome Reda nakon Sekcije"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Prikaži Veze"
@@ -24083,7 +24080,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Prikaži ključ za prijavu na socijalnu mrežu kao server za autorizaciju"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Prikaži Oznake"
@@ -24257,7 +24254,7 @@ msgstr "Bočna Traka i Komentari"
msgid "Sign Up and Confirmation"
msgstr "Prijava i Potvrda"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Prijava je onemogućena"
@@ -25059,7 +25056,7 @@ msgstr "Poddomena"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Predmet"
@@ -25098,7 +25095,7 @@ msgstr "Red Podnošenja"
msgid "Submit"
msgstr "Rezerviši"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Rezerviši"
@@ -25156,7 +25153,7 @@ msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
msgid "Submit this document to confirm"
msgstr "Pošalji ovaj dokument da potvrdite"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Pošalji {0} dokumenata?"
@@ -25305,7 +25302,7 @@ msgstr "Predloži Optimizacije"
msgid "Suggested Indexes"
msgstr "Predloženi Indeksi"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Predloženo Korisničko Ime: {0}"
@@ -25848,7 +25845,7 @@ msgstr "Šablon Upozorenja"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Privremeno Onemogućeno"
@@ -26120,11 +26117,11 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod "
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "Veza za poništavanje lozinke je istekla"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
@@ -26201,7 +26198,7 @@ msgstr "Nema predstojećih događaja za vas."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "U redu čekanja već postoji {0} s istim filterima:"
@@ -26230,7 +26227,7 @@ msgstr "Trenutno nema ništa novo za pokazati."
msgid "There is some problem with the file url: {0}"
msgstr "Postoji neki problem sa urlom datoteke: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "Postoji {0} s istim filterima već u redu čekanja:"
@@ -26254,7 +26251,7 @@ msgstr "Bilo je grešaka"
msgid "There were errors while creating the document. Please try again."
msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo."
@@ -26431,7 +26428,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo ide iznad projekcije slajdova."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
@@ -26487,7 +26484,7 @@ msgstr "Ovo se može ispisati na više stranica"
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
@@ -26495,7 +26492,7 @@ msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživa
msgid "This report was generated on {0}"
msgstr "Ovaj izvještaj je generisan {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Ovaj izvještaj je generisan {0}."
@@ -26561,7 +26558,7 @@ msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jes
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? "
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Prigušeno"
@@ -26915,7 +26912,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok
msgid "To generate password click {0}"
msgstr "Za generiranje lozinke kliknite na {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}."
@@ -26990,7 +26987,7 @@ msgstr "Uključi Prikaz Mreže"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
@@ -27052,7 +27049,7 @@ msgstr "Previše promjena u bazi podataka u jednoj akciji."
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Previše pozadinskih poslova na čekanju ({0}). Pokušaj ponovo nakon nekog vremena."
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena"
@@ -27114,9 +27111,9 @@ msgstr "Vrh Desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Ukupno"
@@ -27286,7 +27283,7 @@ msgstr "Prelazi"
msgid "Translatable"
msgstr "Prevodivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27319,6 +27316,11 @@ msgstr "Prevod"
msgid "Translations"
msgstr "Prevodi"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr "Prevodioc"
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27657,11 +27659,11 @@ msgstr "Neuhvaćena Iznimka"
msgid "Unchanged"
msgstr "Nepromijenjeno"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Poništi"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
@@ -27670,7 +27672,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr "Neizbjegnuti navodnici u niz literalu: {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Prestani Pratiti"
@@ -27743,7 +27745,7 @@ msgstr "Nepročitano"
msgid "Unread Notification Sent"
msgstr "Nepročitana Obavijest Poslana"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
@@ -27757,7 +27759,7 @@ msgstr "Poništi Odabir Svih"
msgid "Unshared"
msgstr "Nedijeljeno"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Otkaži Pretplatu"
@@ -27777,7 +27779,7 @@ msgstr "Parametri Otkazivanja"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Otkazano"
@@ -28186,7 +28188,7 @@ msgstr "Korisnik Nemože Kreirati"
msgid "User Cannot Search"
msgstr "Korisnik Nemože Pretraživati"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Korisnik Promijenjen"
@@ -28292,12 +28294,12 @@ msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke Dozvole"
@@ -28398,15 +28400,15 @@ msgstr "Korisnik sa adresom e-pošte {0} ne postoji"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Korisnik sa e-poštom: {0} ne postoji u sistemu. Zamoli 'Administratora Sistema' da kreira korisnika za vas."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} se ne može izbrisati"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} se ne može onemogućiti"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} se ne može preimenovati"
@@ -28427,7 +28429,7 @@ msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora."
msgid "User {0} has requested for data deletion"
msgstr "Korisnik {0} je zatražio brisanje podataka"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} predstavljen kao {1}"
@@ -28456,7 +28458,7 @@ msgstr "URI informacija Korisnika"
msgid "Username"
msgstr "Korisničko Ime"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Korisničko Ime {0} već postoji"
@@ -28729,7 +28731,7 @@ msgstr "Prikaz"
msgid "View All"
msgstr "Prikaži Sve"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Prikaži Trag"
@@ -29016,6 +29018,7 @@ msgstr "Web Prikaz"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29281,11 +29284,11 @@ msgstr "URL Dobrodošlice"
msgid "Welcome Workspace"
msgstr "Početni Radni Prostor"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "E-pošta Dobrodošlice poslana"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Dobrodošli u {0}"
@@ -29639,7 +29642,7 @@ msgstr "Polja Ose Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y Polje"
@@ -29700,7 +29703,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29775,7 +29778,7 @@ msgstr "Nije vam dozvoljeno da izvezete {} doctype"
msgid "You are not allowed to print this report"
msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom"
@@ -29890,7 +29893,7 @@ msgstr "Možete odabrati jedan od sljedećih,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati promijeniti filtere vašeg izvještaja."
@@ -29975,7 +29978,7 @@ msgstr "Nemate dovoljno dozvola da dovršite radnju"
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dozvolu za pristup polju: {0}"
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -30171,7 +30174,7 @@ msgstr "Prestali ste pratiti ovaj dokument"
msgid "You viewed this"
msgstr "Prikazali ste ovo"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem."
@@ -30212,11 +30215,11 @@ msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Vašu dodjelu {0} {1} je uklonio {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Vaš pretraživač ne podržava audio element."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Vaš pretraživač ne podržava video element."
@@ -31095,7 +31098,7 @@ msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
msgid "{0} Report"
msgstr "{0} Izvještaj"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} Izvještaja"
@@ -31266,7 +31269,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodijelio(la) standard vrijednost za {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} je napustio(la) konverzaciju u {1} {2}"
@@ -31437,11 +31440,11 @@ msgstr "{0} je postavljeno"
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} artikala odabrano"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}"
@@ -31577,7 +31580,7 @@ msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
msgid "{0} row #{1}: "
msgstr "{0} red #{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} uspješno spremljen"
@@ -31619,7 +31622,7 @@ msgstr "{0} je podnio ovaj dokument {1}"
msgid "{0} subscribers added"
msgstr "{0} pretplatnika je dodano"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} da prestanete primati e-poštu ovog tipa"
@@ -31806,7 +31809,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} je postavljeno na stanje {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} naspram {2}"
diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po
index 2af0bdb6f4..1249a2a0ba 100644
--- a/frappe/locale/cs.po
+++ b/frappe/locale/cs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr ""
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr ""
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr ""
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9432,13 +9426,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -10837,7 +10831,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr ""
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr ""
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19663,7 +19660,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index 87ff0ce4e0..fd19f06cb8 100644
--- a/frappe/locale/de.po
+++ b/frappe/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 Tag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender-Ereignis synchronisiert"
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 Bericht"
@@ -709,11 +709,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Hallo,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Berichte & Stammdaten"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Warnung: Dieses Feld wird vom System generiert und kann durch ein zukünftiges Update überschrieben werden. Ändern Sie es stattdessen mit {0}."
@@ -1030,7 +1025,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1096,10 +1090,10 @@ msgstr "Aktion {0} fehlgeschlagen auf {1} {2}. {3} ansehen."
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Aktionen"
@@ -1161,8 +1155,8 @@ msgstr "Aktivitätsprotokoll"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Hinzufügen"
@@ -1179,7 +1173,7 @@ msgstr "Hinzufügen / Aktualisieren"
msgid "Add A New Rule"
msgstr "Neue Regel hinzufügen"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Anhang hinzufügen"
@@ -1203,7 +1197,7 @@ msgstr "Rand oben hinzufügen"
msgid "Add Card to Dashboard"
msgstr "Karte zum Dashboard hinzufügen"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Diagramm zum Dashboard hinzufügen"
@@ -1212,8 +1206,8 @@ msgid "Add Child"
msgstr "Unterpunkt hinzufügen"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1274,7 +1268,7 @@ msgstr "Teilnehmer hinzufügen"
msgid "Add Query Parameters"
msgstr "Abfrageparameter hinzufügen"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Rollen hinzufügen"
@@ -1284,7 +1278,7 @@ msgstr "Zeile hinzufügen"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Signatur hinzufügen"
@@ -1307,12 +1301,12 @@ msgstr "Abonnenten hinzufügen"
msgid "Add Tags"
msgstr "Schlagworte hinzufügen"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Schlagworte hinzufügen"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Vorlage hinzufügen"
@@ -1419,7 +1413,7 @@ msgid "Add tab"
msgstr "Tab hinzufügen"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Zum Dashboard hinzufügen"
@@ -1574,11 +1568,11 @@ msgstr "Verwaltung"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Administrator hat sich angemeldet"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}."
@@ -2122,7 +2116,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Bereits registriert"
@@ -2221,7 +2215,7 @@ msgstr "Berichtigung nicht erlaubt"
msgid "Amendment naming rules updated."
msgstr "Benennungsregeln für Berichtigungen aktualisiert."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Beim Festlegen der Sitzungsstandards ist ein Fehler aufgetreten"
@@ -2397,7 +2391,7 @@ msgstr "Angewandt auf"
msgid "Apply"
msgstr "Anwenden"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Zuweisungsregel anwenden"
@@ -2478,7 +2472,7 @@ msgstr "Archiviert"
msgid "Archived Columns"
msgstr "Archivierte Spalten"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?"
@@ -2510,7 +2504,7 @@ msgstr "Sind Sie sicher, dass Sie die Registerkarte löschen möchten? Alle Absc
msgid "Are you sure you want to discard the changes?"
msgstr "Sind Sie sicher, dass Sie die Änderungen verwerfen möchten?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?"
@@ -2582,7 +2576,7 @@ msgstr "Zuweisungsbedingung"
msgid "Assign To"
msgstr "Zuweisen an"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Zuweisen an"
@@ -2739,7 +2733,7 @@ msgstr "Mindestens ein Feld des übergeordneten Dokumenttyps ist obligatorisch"
msgid "Attach"
msgstr "Anhängen"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Dokumentendruck anhängen"
@@ -3232,7 +3226,7 @@ msgstr "B9"
msgid "BCC"
msgstr "BCC"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3275,7 +3269,7 @@ msgstr "Hintergrundbild"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Hintergrundprozesse"
@@ -3881,7 +3875,7 @@ msgstr "Abgebrochen"
msgid "CC"
msgstr "CC"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -4072,7 +4066,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert."
msgid "Cancel"
msgstr "Abbrechen"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Stornieren"
@@ -4090,7 +4084,7 @@ msgstr "Alle stornieren"
msgid "Cancel All Documents"
msgstr "Alle Dokumente abbrechen"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Abbrechen von {0} Dokumenten?"
@@ -4352,7 +4346,7 @@ msgstr "Karte"
msgid "Card Break"
msgstr "Neue Karte"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Kartenetikett"
@@ -4491,7 +4485,7 @@ msgstr "Diagrammkonfiguration"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Diagrammname"
@@ -4660,11 +4654,11 @@ msgstr "Ort/Stadt"
msgid "Clear"
msgstr "Löschen"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Leeren und Vorlage einfügen"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Leeren und Vorlage einfügen"
@@ -4672,7 +4666,7 @@ msgstr "Leeren und Vorlage einfügen"
msgid "Clear All"
msgstr "Alles leeren"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Zuweisung löschen"
@@ -4698,7 +4692,7 @@ msgstr "Protokolle löschen nach (in Tagen)"
msgid "Clear User Permissions"
msgstr "Benutzerrechte löschen"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "Email-Feld leeren und Vorlage einfügen"
@@ -4940,7 +4934,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Zuklappen"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Alle zuklappen"
@@ -4995,7 +4989,7 @@ msgstr "Zusammenklappbar hängt ab von (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5245,7 +5239,7 @@ msgstr "Vollständig"
msgid "Complete By"
msgstr "Fertigstellen bis"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Anmeldung abschliessen"
@@ -5656,7 +5650,7 @@ msgstr "Einbettungscode kopieren"
msgid "Copy error to clipboard"
msgstr "Fehler in die Zwischenablage kopieren"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "In die Zwischenablage kopieren"
@@ -5780,7 +5774,7 @@ msgstr "H"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5794,13 +5788,13 @@ msgstr "Erstellen & Fortfahren"
msgid "Create Address"
msgstr "Adresse erstellen"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Karte erstellen"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Diagramm erstellen"
@@ -6264,12 +6258,12 @@ msgstr "Anpassungen für {0} exportiert nach:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Anpassen"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Anpassen"
@@ -6913,7 +6907,7 @@ msgstr "Verzögert"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6922,7 +6916,7 @@ msgstr "Verzögert"
msgid "Delete"
msgstr "Löschen"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Löschen"
@@ -6958,7 +6952,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Registerkarte löschen"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Löschen und neu generieren"
@@ -7000,12 +6994,12 @@ msgstr "Registerkarte löschen"
msgid "Delete this record to allow sending to this email address"
msgstr "Löschen Sie diesen Datensatz, um das Senden an diese E-Mail Adresse zu ermöglichen"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Element {0} endgültig löschen?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} Elemente dauerhaft löschen?"
@@ -7413,8 +7407,8 @@ msgstr "Registrierung neuer Benutzer deaktivieren"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Deaktiviert"
@@ -7423,7 +7417,7 @@ msgstr "Deaktiviert"
msgid "Disabled Auto Reply"
msgstr "Automatische Antwort deaktiviert"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8177,7 +8171,7 @@ msgstr "Download-Link"
msgid "Download PDF"
msgstr "PDF Herunterladen"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Bericht herunterladen"
@@ -8261,7 +8255,7 @@ msgid "Due Date Based On"
msgstr "Fälligkeitsdatum basiert auf"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Duplizieren"
@@ -8376,9 +8370,9 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8390,7 +8384,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Bearbeiten"
@@ -8425,11 +8419,11 @@ msgstr "Benutzerdefinierten Block bearbeiten"
msgid "Edit Custom HTML"
msgstr "Benutzerdefiniertes HTML bearbeiten"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "DocType bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "DocType bearbeiten"
@@ -8606,7 +8600,7 @@ msgstr "Element Selektor"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8641,7 +8635,7 @@ msgstr "E-Mail-Konto deaktiviert."
msgid "Email Account Name"
msgstr "E-Mail-Konten-Name"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "E-Mail-Konto wurde mehrmals hinzugefügt"
@@ -8748,7 +8742,7 @@ msgstr "E-Mail-Queue"
msgid "Email Queue Recipient"
msgstr "E-Mail-Queue Empfänger"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "Das Leeren der E-Mail-Warteschlange wurde aufgrund zu vieler Fehler abgebrochen."
@@ -8812,7 +8806,7 @@ msgstr "E-Mail-Synchronisierungsoption"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "E-Mail-Vorlage"
@@ -8844,7 +8838,7 @@ msgstr "E-Mail wurde in den Papierkorb geworfen"
msgid "Email is mandatory to create User Email"
msgstr "E-Mail ist obligatorisch, um Benutzer-E-Mails zu erstellen"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert)"
@@ -8870,7 +8864,7 @@ msgstr "E-Mails abgerufen"
msgid "Emails are already being pulled from this account."
msgstr "Es werden bereits E-Mails von diesem Konto abgerufen."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "E-Mails sind stumm geschaltet"
@@ -9096,8 +9090,8 @@ msgstr "In-App-Website-Tracking aktivieren"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Aktiviert"
@@ -9224,7 +9218,7 @@ msgstr "Geben Sie in den Google-Einstellungen die Client ID und das Client Secre
msgid "Enter Code displayed in OTP App."
msgstr "Geben Sie den in der OTP-App angezeigten Code ein."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Geben Sie den/die E-Mail-Empfänger an"
@@ -9538,7 +9532,7 @@ msgstr "Code wird ausgeführt"
msgid "Executing..."
msgstr "Wird ausgeführt..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Ausführungszeit: {0} Sek"
@@ -9564,7 +9558,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Erweitern"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Alle ausklappen"
@@ -9625,13 +9619,13 @@ msgstr "Ablaufzeit der QR-Code-Bildseite"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportieren"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportieren"
@@ -9989,8 +9983,8 @@ msgstr "Abrufen von Standarddokumenten der globalen Suche."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10560,7 +10554,7 @@ msgid "Folio"
msgstr "Folio"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Folgen"
@@ -10753,7 +10747,7 @@ msgstr "Für Benutzer"
msgid "For Value"
msgstr "Für Wert"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)."
@@ -11015,7 +11009,7 @@ msgstr "Freitag"
msgid "From"
msgstr "Von"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Von"
@@ -11031,7 +11025,7 @@ msgstr "Von-Datum"
msgid "From Date Field"
msgstr "Von-Datum-Feld"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Vom Dokumenttyp"
@@ -11082,7 +11076,7 @@ msgstr "Volle Breite"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funktion"
@@ -11160,7 +11154,7 @@ msgstr "Allgemein"
msgid "Generate Keys"
msgstr "Schlüssel generieren"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Neuen Bericht erstellen"
@@ -11168,7 +11162,7 @@ msgstr "Neuen Bericht erstellen"
msgid "Generate Random Password"
msgstr "Zufälliges Passwort generieren"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Tracking-URL generieren"
@@ -11284,7 +11278,7 @@ msgstr "Globale Verknüpfungen"
msgid "Global Unsubscribe"
msgstr "Global abbestellen"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Gehen"
@@ -11448,8 +11442,6 @@ msgstr "Google-Kontakte - Kontakt in Google-Kontakten {0} konnte nicht aktualisi
msgid "Google Contacts Id"
msgstr "Google-Kontakt-ID"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
@@ -11486,6 +11478,7 @@ msgstr "Google-Dienste"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11913,6 +11906,10 @@ msgstr "Versteckt"
msgid "Hidden Fields"
msgstr "Versteckte Felder"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12026,7 +12023,7 @@ msgstr "Seitenleiste, Menü und Kommentare ausblenden"
msgid "Hide Standard Menu"
msgstr "Standardmenü ausblenden"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Schlagworte ausblenden"
@@ -12582,7 +12579,7 @@ msgstr "Bildfeld muss Typ anhängen Bild"
msgid "Image link '{0}' is not valid"
msgstr "Bild-Link '{0}' ist ungültig"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Bild optimiert"
@@ -12630,7 +12627,7 @@ msgstr "Implizit"
msgid "Import"
msgstr "Importieren"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importieren"
@@ -12858,11 +12855,15 @@ msgstr "Thema aus Apps einschließen"
msgid "Include Web View Link in Email"
msgstr "Dokument Web View Link per E-Mail senden"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Filter einbeziehen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Einrückung einschließen"
@@ -13020,7 +13021,7 @@ msgstr "Darüber einfügen"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Einfügen nach"
@@ -13211,7 +13212,7 @@ msgstr "Ungültig"
msgid "Invalid \"depends_on\" expression"
msgstr "Ungültiger \"depends_on\" Ausdruck"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ungültiger "abhängiger_on" -Ausdruck im Filter {0}"
@@ -13322,7 +13323,7 @@ msgstr "Ungültige Überschreibung"
msgid "Invalid Parameters."
msgstr "Ungültige Parameter."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13912,8 +13913,8 @@ msgstr "Job läuft nicht."
msgid "Join video conference with {0}"
msgstr "Videokonferenz mit {0} beitreten"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Zum Feld springen"
@@ -14878,7 +14879,7 @@ msgstr "Listenfilter"
msgid "List Settings"
msgstr "Listeneinstellungen"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Listeneinstellungen"
@@ -14950,7 +14951,7 @@ msgstr "Mehr laden"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Laden"
@@ -15659,7 +15660,7 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten"
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15696,7 +15697,7 @@ msgstr "Nachricht gesendet"
msgid "Message Type"
msgstr "Nachrichtentyp"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Nachricht abgeschnitten"
@@ -16411,12 +16412,12 @@ msgstr "Vorlage für Navigationsleiste"
msgid "Navbar Template Values"
msgstr "Navigationsleiste-Vorlagenwerte"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Liste nach unten navigieren"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Liste nach oben navigieren"
@@ -16548,10 +16549,6 @@ msgstr "Neue Nachricht von der Webseite Kontaktseite"
msgid "New Name"
msgstr "Neuer Name"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Neuer Newsletter"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Neue Benachrichtigung"
@@ -16652,7 +16649,7 @@ msgstr "Neuer Wert muss gesetzt werden"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16664,15 +16661,15 @@ msgstr "Neuer Wert muss gesetzt werden"
msgid "New {0}"
msgstr "Neu {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Neu {0} erstellt"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Neues {0} {1} zum Dashboard hinzugefügt {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Neue {0} {1} erstellt"
@@ -16684,7 +16681,7 @@ msgstr "Neu {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen."
@@ -16811,7 +16808,7 @@ msgstr "Weiter bei Klick"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nein"
@@ -16952,7 +16949,7 @@ msgstr "Keine Ergebnisse"
msgid "No Results found"
msgstr "Keine Ergebnisse gefunden"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "Keine Rollen festgelegt"
@@ -17020,7 +17017,7 @@ msgstr "Noch keine Kontakte hinzugefügt."
msgid "No contacts linked to document"
msgstr "Keine Kontakte mit dem Dokument verknüpft"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Keine zu exportierenden Daten"
@@ -17212,7 +17209,7 @@ msgstr "Normalisierte Kopien"
msgid "Normalized Query"
msgstr "Normalisierte Abfrage"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Nicht Erlaubt"
@@ -17268,7 +17265,7 @@ msgstr "Nicht nullbar"
msgid "Not Permitted"
msgstr "Nicht zulässig"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "Keine Berechtigung zum Lesen von {0}"
@@ -17278,8 +17275,8 @@ msgstr "Keine Berechtigung zum Lesen von {0}"
msgid "Not Published"
msgstr "Nicht veröffentlicht"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17312,7 +17309,7 @@ msgstr "Nicht eingetragen"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Keine gültige .csv-Datei"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Kein gültiges Benutzerbild."
@@ -17547,7 +17544,7 @@ msgstr "Benachrichtigen, wenn unbeantwortet für (in Minuten)"
msgid "Notify users with a popup when they log in"
msgstr "Benutzer mit einem Popup benachrichtigen, wenn sie sich anmelden"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Jetzt"
@@ -17842,7 +17839,7 @@ msgstr "Am oder nach"
msgid "On or Before"
msgstr "Am oder vor"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "Am {0}, schrieb {1}:"
@@ -17918,7 +17915,7 @@ msgstr "Kann nur vom Administrator bearbeitet werden"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Nur der Administrator kann einen Standardbericht speichern. Bitte umbenennen und speichern."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Nur der Administrator darf den Recorder verwenden"
@@ -18071,7 +18068,7 @@ msgstr "Konsole öffnen"
msgid "Open in a new tab"
msgstr "In einer neuen Registerkarte öffnen"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Listenelement öffnen"
@@ -18126,7 +18123,7 @@ msgstr "Betreiber muss einer von {0}"
msgid "Optimize"
msgstr "Optimieren"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Bild optimieren..."
@@ -18317,7 +18314,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18676,11 +18673,11 @@ msgstr "Passiv"
msgid "Password"
msgstr "Passwort"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "Passwort E-Mail gesendet"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
@@ -18714,7 +18711,7 @@ msgstr "Passwort fehlt im E-Mail-Konto"
msgid "Password not found for {0} {1} {2}"
msgstr "Passwort für {0} {1} {2} nicht gefunden"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} gesendet"
@@ -18726,7 +18723,7 @@ msgstr "Passwort gesetzt"
msgid "Password size exceeded the maximum allowed size"
msgstr "Passwort überschreitet die maximal zulässige Länge"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "Passwort überschreitet die maximal zulässige Länge."
@@ -19097,7 +19094,7 @@ msgstr "Bitte dieses Webseiten-Thema duplizieren um es anzupassen."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Bitte installieren Sie die ldap3-Bibliothek via Pip, um die ldap-Funktionalität zu nutzen."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Bitte Diagramm einstellen"
@@ -19113,7 +19110,7 @@ msgstr "Bitte füge einen Betreff zu deiner E-Mail hinzu"
msgid "Please add a valid comment."
msgstr "Bitte fügen Sie einen gültigen Kommentar hinzu."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen"
@@ -19145,7 +19142,7 @@ msgstr "Bitte überprüfen Sie die für das Dashboard-Diagramm festgelegten Filt
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Bitte überprüfen Sie den Wert von "Abrufen von" für Feld {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt."
@@ -19336,7 +19333,7 @@ msgstr "Bitte wählen Sie zunächst Entitätstyp"
msgid "Please select Minimum Password Score"
msgstr "Bitte wählen Sie Minimum Password Score"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Bitte wählen Sie X- und Y-Felder aus"
@@ -19394,7 +19391,7 @@ msgstr "Bitte setzen Sie E-Mail-Adresse"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Bitte legen Sie in den Druckereinstellungen eine Druckerzuordnung für dieses Druckformat fest"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Bitte Filter einstellen"
@@ -19422,7 +19419,7 @@ msgstr "Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode ü
msgid "Please setup a message first"
msgstr "Bitte richten Sie zuerst eine Nachricht ein"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Bitte legen Sie das Standard-E-Mail-Konto unter Einstellungen > E-Mail-Konto fest"
@@ -19640,11 +19637,11 @@ msgstr "Vorbereiteter Berichtsbenutzer"
msgid "Prepared report render failed"
msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Bericht vorbereiten"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Vorlage oberhalb der Email-Nachricht einfügen"
@@ -19709,7 +19706,7 @@ msgstr "Vorschau auf {0}"
msgid "Preview type"
msgstr "Vorschautyp"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Vorschau:"
@@ -19780,16 +19777,16 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Drucken"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Drucken"
@@ -19859,7 +19856,7 @@ msgstr "Hilfe zu Druckformaten"
msgid "Print Format Type"
msgstr "Druckformattyp"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19894,7 +19891,7 @@ msgstr "Drucken ausblenden"
msgid "Print Hide If No Value"
msgstr "Drucken ausblenden wenn kein Wert"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Drucksprache"
@@ -20040,7 +20037,7 @@ msgstr "Tipp: Fügen Sie Referenz: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr "Fortfahren"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Fahre dennoch fort"
@@ -20346,7 +20343,7 @@ msgstr "Abfragebericht"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analyse der Abfrage abgeschlossen. Prüfen Sie die vorgeschlagenen Indizes."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Die Abfrage muss vom Typ SELECT oder Read-Only WITH sein."
@@ -20543,7 +20540,7 @@ msgstr "AW:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "AW: {0}"
@@ -20619,7 +20616,7 @@ msgstr "Vom Empfänger gelesen am"
msgid "Read mode"
msgstr "Lesemodus"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Lesen Sie die Dokumentation, um mehr zu erfahren"
@@ -20639,7 +20636,7 @@ msgstr "Echtzeit (SocketIO)"
msgid "Reason"
msgstr "Grund"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Wiederaufbau"
@@ -20785,12 +20782,12 @@ msgstr "Weiterleitungen"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis Cache-Server läuft nicht. Bitte Administrator/Technischen Support kontaktieren"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Wiederholen"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Letzte Aktion wiederholen"
@@ -21004,11 +21001,11 @@ msgid "Referrer"
msgstr "Referrer"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21047,7 +21044,7 @@ msgstr "Aktualisiere"
msgid "Refreshing..."
msgstr "Aktualisiere..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Registrierte aber deaktiviert"
@@ -21096,7 +21093,7 @@ msgstr "Neu verknüpft"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Neu laden"
@@ -21127,7 +21124,7 @@ msgstr "Zuletzt gewählten Wert merken"
msgid "Remind At"
msgstr "Erinnern am"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Erinnere mich"
@@ -21209,7 +21206,7 @@ msgstr "Entfernt"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21237,7 +21234,7 @@ msgstr "Beschriftungen nach links und Werte nach rechts in diesem Abschnitt anor
msgid "Reopen"
msgstr "Wieder öffnen"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Wiederholen"
@@ -21427,7 +21424,7 @@ msgstr "Berichts-Manager"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Berichtsname"
@@ -21479,7 +21476,7 @@ msgstr "Der Bericht enthält keine Daten. Ändern Sie die Filter oder den Berich
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Der Bericht enthält keine numerischen Felder. Bitte ändern Sie den Berichtsnamen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen"
@@ -21491,7 +21488,7 @@ msgstr "Berichtsgrenze erreicht"
msgid "Report timed out."
msgstr "Zeitüberschreitung des Berichts."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Bericht erfolgreich aktualisiert"
@@ -21499,7 +21496,7 @@ msgstr "Bericht erfolgreich aktualisiert"
msgid "Report was not saved (there were errors)"
msgstr "Bericht wurde nicht gespeichert (es gab Fehler)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus."
@@ -21535,7 +21532,7 @@ msgstr "Berichte"
msgid "Reports & Masters"
msgstr "Berichte & Stammdaten"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Berichtet bereits in der Warteschlange"
@@ -21974,7 +21971,7 @@ msgstr "Rollenberechtigungen"
msgid "Role Permissions Manager"
msgstr "Rollenberechtigungen-Manager"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Rollenberechtigungen-Manager"
@@ -22008,7 +22005,7 @@ msgstr "Rollenreplikation"
msgid "Role and Level"
msgstr "Rolle und Ebene"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Die Rolle wurde gemäß Benutzertyp {0} festgelegt"
@@ -22401,12 +22398,12 @@ msgstr "Samstag"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22433,7 +22430,7 @@ msgstr "Speichern als"
msgid "Save Customizations"
msgstr "Anpassungen speichern"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Bericht speichern"
@@ -22452,7 +22449,7 @@ msgstr "Dokument speichern."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22500,7 +22497,7 @@ msgstr "Scannen Sie den QR-Code und geben Sie den dargestellten Code ein."
msgid "Schedule"
msgstr "Planen"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Senden planen am"
@@ -22809,7 +22806,7 @@ msgstr "Sicherheitseinstellungen"
msgid "See all Activity"
msgstr "Alle Aktivitäten anzeigen"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Alle früheren Berichte anzeigen."
@@ -22877,8 +22874,8 @@ msgstr "Auswählen"
msgid "Select All"
msgstr "Alle auswählen"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22944,7 +22941,7 @@ msgstr "Wählen Sie Dokumenttypen, um festzulegen, welche Benutzerberechtigungen
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Feld auswählen"
@@ -23015,7 +23012,7 @@ msgid "Select Page"
msgstr "Seite auswählen"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Druckformat auswählen"
@@ -23107,13 +23104,13 @@ msgstr "Wählen Sie mindestens einen Datensatz für den Druck"
msgid "Select atleast 2 actions"
msgstr "Wählen Sie mindestens 2 Aktionen aus"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Listenelement auswählen"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Wählen Sie mehrere Listenelemente aus"
@@ -23229,7 +23226,7 @@ msgstr "Jetzt senden"
msgid "Send Print as PDF"
msgstr "Ausdruck als PDF senden"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Lesebestätigung senden"
@@ -23292,7 +23289,7 @@ msgstr "Anfragen an diese E-Mail-Adresse senden"
msgid "Send login link"
msgstr "Anmelde-Link senden"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Kopie an mich senden"
@@ -23454,7 +23451,7 @@ msgstr "Server-IP-Adresse"
msgid "Server Script"
msgstr "Serverskript"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Serverskripte sind deaktiviert. Bitte aktivieren Sie Server-Skripte in der Bankkonfiguration."
@@ -23493,11 +23490,11 @@ msgstr "Sitzungsstandardeinstellungen"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Sitzungsstandards"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Sitzungsstandards gespeichert"
@@ -23533,7 +23530,7 @@ msgstr "Eingetragen"
msgid "Set Banner from Image"
msgstr "Banner aus Bild einrichten"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Diagramm setzen"
@@ -23559,7 +23556,7 @@ msgstr "Filter setzen"
msgid "Set Filters for {0}"
msgstr "Setze Filter für {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Ebenen einstellen"
@@ -23755,7 +23752,7 @@ msgstr "Einrichten Ihres Systems"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23801,7 +23798,7 @@ msgstr "Einrichtung > Benutzer"
msgid "Setup > User Permissions"
msgstr "Einrichtung > Benutzerberechtigungen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Einstellungen Auto E-Mail"
@@ -24004,7 +24001,7 @@ msgstr "Sprachauswahl anzeigen"
msgid "Show Line Breaks after Sections"
msgstr "Zeilenumbrüche nach Abschnitten anzeigen"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Verknüpfungen anzeigen"
@@ -24080,7 +24077,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Schlagworte anzeigen"
@@ -24254,7 +24251,7 @@ msgstr "Sidebar und Kommentare"
msgid "Sign Up and Confirmation"
msgstr "Registrierung und Bestätigung"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Die Registrierung ist deaktiviert"
@@ -25056,7 +25053,7 @@ msgstr "Unterdomäne"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Betreff"
@@ -25095,7 +25092,7 @@ msgstr "Buchungs-Warteschlange"
msgid "Submit"
msgstr "Buchen"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Buchen"
@@ -25153,7 +25150,7 @@ msgstr "Senden Sie dieses Dokument, um diesen Schritt abzuschließen."
msgid "Submit this document to confirm"
msgstr "Buchen Sie dieses Dokument, um zu bestätigen"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} Dokumente einreichen?"
@@ -25302,7 +25299,7 @@ msgstr "Optimierungen vorschlagen"
msgid "Suggested Indexes"
msgstr "Vorgeschlagene Indizes"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Empfohlener Benutzername: {0}"
@@ -25845,7 +25842,7 @@ msgstr "Vorlagenwarnungen"
msgid "Templates"
msgstr "Vorlagen"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Zeitweise nicht verfügbar"
@@ -26117,11 +26114,11 @@ msgstr "Die Projektnummer aus der Google Cloud Console unter "
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "Der Link zum Zurücksetzen des Passworts wurde bereits verwendet oder ist ungültig"
@@ -26198,7 +26195,7 @@ msgstr "Für Sie stehen keine Veranstaltungen an."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Es gibt keine {0} für diese {1}, warum starten Sie nicht eine!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:"
@@ -26227,7 +26224,7 @@ msgstr "Es gibt im Moment nichts Neues zu sehen."
msgid "There is some problem with the file url: {0}"
msgstr "Es gibt irgend ein Problem mit der Datei-URL: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:"
@@ -26251,7 +26248,7 @@ msgstr "Es gab Fehler"
msgid "There were errors while creating the document. Please try again."
msgstr "Beim Erstellen des Dokuments sind Fehler aufgetreten. Bitte versuche es erneut."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Beim Versand der E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut."
@@ -26428,7 +26425,7 @@ msgstr "Dieser Geolokalisierungsanbieter wird noch nicht unterstützt."
msgid "This goes above the slideshow."
msgstr "Dies erscheint oberhalb der Diaschau."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Dies ist ein Hintergrundbericht. Bitte setzen Sie die entsprechenden Filter und generieren Sie dann einen neuen."
@@ -26484,7 +26481,7 @@ msgstr "Dies kann auf mehreren Seiten ausgedruckt werden"
msgid "This month"
msgstr "Diesen Monat"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angezeigt zu werden. Sie können diesen Bericht stattdessen unter {1} aufrufen."
@@ -26492,7 +26489,7 @@ msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angez
msgid "This report was generated on {0}"
msgstr "Dieser Bericht wurde am {0} erstellt."
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Dieser Bericht wurde {0} generiert."
@@ -26558,7 +26555,7 @@ msgstr "Dadurch wird diese Tour zurückgesetzt und für alle Benutzer sichtbar.
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Das wird den Auftrag sofort beenden und könnte gefährlich sein, sind Sie sicher? "
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Gedrosselt"
@@ -26912,7 +26909,7 @@ msgstr "Um diesen Schritt als JSON zu exportieren, verknüpfen Sie ihn in einem
msgid "To generate password click {0}"
msgstr "Um ein Passwort zu generieren, klicken Sie auf {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen."
@@ -26987,7 +26984,7 @@ msgstr "Rasteransicht wechseln"
msgid "Toggle Sidebar"
msgstr "Seitenleiste umschalten"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Seitenleiste ein-/ausblenden"
@@ -27049,7 +27046,7 @@ msgstr "Zu viele Änderungen an der Datenbank in einer einzelnen Aktion."
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Zu viele Hintergrundjobs in der Warteschlange ({0}). Bitte versuchen Sie es später erneut."
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück"
@@ -27111,9 +27108,9 @@ msgstr "Oben rechts"
msgid "Topic"
msgstr "Thema"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Summe"
@@ -27283,7 +27280,7 @@ msgstr "Übergänge"
msgid "Translatable"
msgstr "Übersetzbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "Daten übersetzen"
@@ -27316,6 +27313,11 @@ msgstr "Übersetzung"
msgid "Translations"
msgstr "Übersetzungen"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27654,11 +27656,11 @@ msgstr "Nicht abgefangene Ausnahme"
msgid "Unchanged"
msgstr "Unverändert"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Rückgängig machen"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Letzte Aktion rückgängig machen"
@@ -27667,7 +27669,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Nicht mehr folgen"
@@ -27738,7 +27740,7 @@ msgstr "Ungelesen"
msgid "Unread Notification Sent"
msgstr "Ungelesene Benachrichtigung gesendet"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Unsichere SQL-Abfrage"
@@ -27752,7 +27754,7 @@ msgstr "Auswahl aufheben"
msgid "Unshared"
msgstr "Nicht geteilt"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Abmelden"
@@ -27772,7 +27774,7 @@ msgstr "Abmeldeparameter"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Abgemeldet"
@@ -28181,7 +28183,7 @@ msgstr "Kann nicht von einem Benutzer erstellt werden"
msgid "User Cannot Search"
msgstr "Kann nicht von einem Benutzer gesucht werden"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Benutzer geändert"
@@ -28287,12 +28289,12 @@ msgstr "Benutzerberechtigung"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
@@ -28393,15 +28395,15 @@ msgstr "Benutzer mit E-Mail-Adresse {0} existiert nicht"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Ein Benutzer mit der E-Mail-Adresse {0} existiert nicht im System. Bitten Sie den 'Systemadministrator', den Benutzer für Sie anzulegen."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Benutzer {0} kann nicht gelöscht werden"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Benutzer {0} kann nicht deaktiviert werden"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Benutzer {0} kann nicht umbenannt werden"
@@ -28422,7 +28424,7 @@ msgstr "Der Benutzer {0} hat nicht die Berechtigung, einen Arbeitsbereich zu ers
msgid "User {0} has requested for data deletion"
msgstr "Benutzer {0} hat das Löschen von Daten angefordert"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "Benutzer {0} hat sich als {1} ausgegeben"
@@ -28451,7 +28453,7 @@ msgstr "Benutzerinfo URI"
msgid "Username"
msgstr "Benutzername"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Benutzername {0} ist bereits vorhanden"
@@ -28724,7 +28726,7 @@ msgstr "Ansicht"
msgid "View All"
msgstr "Alle ansehen"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Prüfprotokoll anzeigen"
@@ -29011,6 +29013,7 @@ msgstr "Webansicht"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29276,11 +29279,11 @@ msgstr "Willkommens-URL"
msgid "Welcome Workspace"
msgstr "Willkommens-Arbeitsbereich"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Willkommens-E-Mail gesendet"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Willkommen auf {0}"
@@ -29634,7 +29637,7 @@ msgstr "Y-Achsenfelder"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y-Feld"
@@ -29695,7 +29698,7 @@ msgstr "Gelb"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29770,7 +29773,7 @@ msgstr "Sie dürfen keinen {} Doctype exportieren"
msgid "You are not allowed to print this report"
msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden"
@@ -29885,7 +29888,7 @@ msgstr "Sie können eine der folgenden Optionen auswählen,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Sie können hier einen hohen Wert einstellen, wenn sich mehrere Benutzer über dasselbe Netzwerk anmelden."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Sie können versuchen, die Filter Ihres Berichts zu ändern."
@@ -29970,7 +29973,7 @@ msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchz
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
@@ -30166,7 +30169,7 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt"
msgid "You viewed this"
msgstr "Von Ihnen angesehen"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Sie haben sich als ein anderer Benutzer über eine andere Registerkarte angemeldet. Aktualisieren Sie diese Seite, um das System weiter zu nutzen."
@@ -30207,11 +30210,11 @@ msgstr "Ihre Anmeldung wurde gesperrt und ist wieder verfügbar in {0} Sekunden"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Ihre Zuordnung zu {0} {1} wurde von {2} entfernt"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Ihr Browser unterstützt das Audio-Element nicht."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Ihr Browser unterstützt das Videoelement nicht."
@@ -31090,7 +31093,7 @@ msgstr "{0} Es ist nicht erlaubt, {1} nach dem Buchen von {2} auf {3} zu ändern
msgid "{0} Report"
msgstr "{0} Bericht(e)"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} Berichte"
@@ -31261,7 +31264,7 @@ msgstr "{0} Std"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} hat bereits einen Standardwert für {1} zugewiesen."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} wurde von E-Mail-Benachrichtigungen zu {1} {2} abgemeldet"
@@ -31432,11 +31435,11 @@ msgstr "{0} ist eingetragen"
msgid "{0} is within {1}"
msgstr "{0} ist innerhalb von {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} Elemente ausgewählt"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} hat sich gerade als Sie ausgegeben und gab dafür diesen Grund an: {1}"
@@ -31572,7 +31575,7 @@ msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype"
msgid "{0} row #{1}: "
msgstr "{0} Zeile #{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} wurde erfolgreich gespeichert"
@@ -31614,7 +31617,7 @@ msgstr "{0} hat das Dokument {1} eingereicht"
msgid "{0} subscribers added"
msgstr "{0} Empfänger hinzugefügt"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0}, E-Mails dieses Typs nicht mehr annehmen."
@@ -31801,7 +31804,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} ist auf Status {2} festgelegt"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po
index 9fa7c413ff..9a9890b8aa 100644
--- a/frappe/locale/eo.po
+++ b/frappe/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr "crwdns90546:0crwdne90546:0"
msgid "1 Google Calendar Event synced."
msgstr "crwdns90548:0crwdne90548:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "crwdns110780:0crwdne110780:0"
@@ -526,11 +526,6 @@ msgstr "crwdns127950:0crwdne127950:0"
msgid "Hi,"
msgstr "crwdns148640:0crwdne148640:0"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "crwdns148642:0crwdne148642:0"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "crwdns90630:0{0}crwdne90630:0"
@@ -847,7 +842,6 @@ msgstr "crwdns155500:0crwdne155500:0"
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -913,10 +907,10 @@ msgstr "crwdns90774:0{0}crwdnd90774:0{1}crwdnd90774:0{2}crwdnd90774:0{3}crwdne90
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "crwdns90776:0crwdne90776:0"
@@ -978,8 +972,8 @@ msgstr "crwdns90802:0crwdne90802:0"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "crwdns90808:0crwdne90808:0"
@@ -996,7 +990,7 @@ msgstr "crwdns90810:0crwdne90810:0"
msgid "Add A New Rule"
msgstr "crwdns90812:0crwdne90812:0"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "crwdns90814:0crwdne90814:0"
@@ -1020,7 +1014,7 @@ msgstr "crwdns128034:0crwdne128034:0"
msgid "Add Card to Dashboard"
msgstr "crwdns142868:0crwdne142868:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "crwdns90824:0crwdne90824:0"
@@ -1029,8 +1023,8 @@ msgid "Add Child"
msgstr "crwdns90826:0crwdne90826:0"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1091,7 +1085,7 @@ msgstr "crwdns90846:0crwdne90846:0"
msgid "Add Query Parameters"
msgstr "crwdns128042:0crwdne128042:0"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "crwdns90852:0crwdne90852:0"
@@ -1101,7 +1095,7 @@ msgstr "crwdns110790:0crwdne110790:0"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "crwdns90854:0crwdne90854:0"
@@ -1124,12 +1118,12 @@ msgstr "crwdns90862:0crwdne90862:0"
msgid "Add Tags"
msgstr "crwdns90864:0crwdne90864:0"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "crwdns90866:0crwdne90866:0"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "crwdns90868:0crwdne90868:0"
@@ -1236,7 +1230,7 @@ msgid "Add tab"
msgstr "crwdns142986:0crwdne142986:0"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "crwdns90894:0crwdne90894:0"
@@ -1391,11 +1385,11 @@ msgstr "crwdns90948:0crwdne90948:0"
msgid "Administrator"
msgstr "crwdns90950:0crwdne90950:0"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "crwdns90952:0crwdne90952:0"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "crwdns90954:0{0}crwdnd90954:0{1}crwdnd90954:0{2}crwdne90954:0"
@@ -1938,7 +1932,7 @@ msgstr "crwdns155948:0crwdne155948:0"
msgid "Allows skipping authorization if a user has active tokens."
msgstr "crwdns155950:0crwdne155950:0"
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "crwdns91152:0crwdne91152:0"
@@ -2037,7 +2031,7 @@ msgstr "crwdns151842:0crwdne151842:0"
msgid "Amendment naming rules updated."
msgstr "crwdns91190:0crwdne91190:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "crwdns91192:0crwdne91192:0"
@@ -2213,7 +2207,7 @@ msgstr "crwdns128252:0crwdne128252:0"
msgid "Apply"
msgstr "crwdns142988:0crwdne142988:0"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "crwdns91270:0crwdne91270:0"
@@ -2294,7 +2288,7 @@ msgstr "crwdns128272:0crwdne128272:0"
msgid "Archived Columns"
msgstr "crwdns91306:0crwdne91306:0"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "crwdns104470:0crwdne104470:0"
@@ -2326,7 +2320,7 @@ msgstr "crwdns142994:0crwdne142994:0"
msgid "Are you sure you want to discard the changes?"
msgstr "crwdns91314:0crwdne91314:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "crwdns110808:0crwdne110808:0"
@@ -2398,7 +2392,7 @@ msgstr "crwdns128278:0crwdne128278:0"
msgid "Assign To"
msgstr "crwdns91344:0crwdne91344:0"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "crwdns91346:0crwdne91346:0"
@@ -2555,7 +2549,7 @@ msgstr "crwdns104474:0crwdne104474:0"
msgid "Attach"
msgstr "crwdns91420:0crwdne91420:0"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "crwdns91430:0crwdne91430:0"
@@ -3048,7 +3042,7 @@ msgstr "crwdns128392:0crwdne128392:0"
msgid "BCC"
msgstr "crwdns91650:0crwdne91650:0"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "crwdns154395:0crwdne154395:0"
@@ -3091,7 +3085,7 @@ msgstr "crwdns128396:0crwdne128396:0"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "crwdns91668:0crwdne91668:0"
@@ -3696,7 +3690,7 @@ msgstr "crwdns91934:0crwdne91934:0"
msgid "CC"
msgstr "crwdns91936:0crwdne91936:0"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "crwdns154397:0crwdne154397:0"
@@ -3887,7 +3881,7 @@ msgstr "crwdns92008:0{0}crwdnd92008:0{1}crwdnd92008:0{0}crwdne92008:0"
msgid "Cancel"
msgstr "crwdns92010:0crwdne92010:0"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "crwdns92012:0crwdne92012:0"
@@ -3905,7 +3899,7 @@ msgstr "crwdns92026:0crwdne92026:0"
msgid "Cancel All Documents"
msgstr "crwdns92028:0crwdne92028:0"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "crwdns92032:0{0}crwdne92032:0"
@@ -4167,7 +4161,7 @@ msgstr "crwdns128586:0crwdne128586:0"
msgid "Card Break"
msgstr "crwdns128588:0crwdne128588:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "crwdns92162:0crwdne92162:0"
@@ -4305,7 +4299,7 @@ msgstr "crwdns128610:0crwdne128610:0"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "crwdns128612:0crwdne128612:0"
@@ -4474,11 +4468,11 @@ msgstr "crwdns128636:0crwdne128636:0"
msgid "Clear"
msgstr "crwdns92294:0crwdne92294:0"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "crwdns92296:0crwdne92296:0"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "crwdns92298:0crwdne92298:0"
@@ -4486,7 +4480,7 @@ msgstr "crwdns92298:0crwdne92298:0"
msgid "Clear All"
msgstr "crwdns155956:0crwdne155956:0"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "crwdns104478:0crwdne104478:0"
@@ -4512,7 +4506,7 @@ msgstr "crwdns128638:0crwdne128638:0"
msgid "Clear User Permissions"
msgstr "crwdns92306:0crwdne92306:0"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "crwdns92308:0crwdne92308:0"
@@ -4754,7 +4748,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "crwdns92402:0crwdne92402:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "crwdns92404:0crwdne92404:0"
@@ -4809,7 +4803,7 @@ msgstr "crwdns128674:0crwdne128674:0"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5059,7 +5053,7 @@ msgstr "crwdns92554:0crwdne92554:0"
msgid "Complete By"
msgstr "crwdns92558:0crwdne92558:0"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "crwdns92560:0crwdne92560:0"
@@ -5468,7 +5462,7 @@ msgstr "crwdns148980:0crwdne148980:0"
msgid "Copy error to clipboard"
msgstr "crwdns92732:0crwdne92732:0"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "crwdns148722:0crwdne148722:0"
@@ -5592,7 +5586,7 @@ msgstr "crwdns92780:0crwdne92780:0"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5606,13 +5600,13 @@ msgstr "crwdns92790:0crwdne92790:0"
msgid "Create Address"
msgstr "crwdns148724:0crwdne148724:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "crwdns92794:0crwdne92794:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "crwdns92796:0crwdne92796:0"
@@ -6076,12 +6070,12 @@ msgstr "crwdns93014:0{0}crwdnd93014:0{1}crwdne93014:0"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "crwdns93016:0crwdne93016:0"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "crwdns93018:0crwdne93018:0"
@@ -6725,7 +6719,7 @@ msgstr "crwdns128908:0crwdne128908:0"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6734,7 +6728,7 @@ msgstr "crwdns128908:0crwdne128908:0"
msgid "Delete"
msgstr "crwdns93336:0crwdne93336:0"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "crwdns93338:0crwdne93338:0"
@@ -6770,7 +6764,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "crwdns143026:0crwdne143026:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "crwdns110882:0crwdne110882:0"
@@ -6812,12 +6806,12 @@ msgstr "crwdns143038:0crwdne143038:0"
msgid "Delete this record to allow sending to this email address"
msgstr "crwdns93356:0crwdne93356:0"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "crwdns93358:0{0}crwdne93358:0"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "crwdns93360:0{0}crwdne93360:0"
@@ -7225,8 +7219,8 @@ msgstr "crwdns128970:0crwdne128970:0"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "crwdns93510:0crwdne93510:0"
@@ -7235,7 +7229,7 @@ msgstr "crwdns93510:0crwdne93510:0"
msgid "Disabled Auto Reply"
msgstr "crwdns93536:0crwdne93536:0"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7987,7 +7981,7 @@ msgstr "crwdns93890:0crwdne93890:0"
msgid "Download PDF"
msgstr "crwdns111456:0crwdne111456:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "crwdns93892:0crwdne93892:0"
@@ -8071,7 +8065,7 @@ msgid "Due Date Based On"
msgstr "crwdns129052:0crwdne129052:0"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "crwdns93918:0crwdne93918:0"
@@ -8186,9 +8180,9 @@ msgstr "crwdns110894:0crwdne110894:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8200,7 +8194,7 @@ msgstr "crwdns110894:0crwdne110894:0"
msgid "Edit"
msgstr "crwdns93974:0crwdne93974:0"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "crwdns93976:0crwdne93976:0"
@@ -8235,11 +8229,11 @@ msgstr "crwdns110900:0crwdne110900:0"
msgid "Edit Custom HTML"
msgstr "crwdns93982:0crwdne93982:0"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "crwdns93984:0crwdne93984:0"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "crwdns93986:0crwdne93986:0"
@@ -8416,7 +8410,7 @@ msgstr "crwdns129070:0crwdne129070:0"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8451,7 +8445,7 @@ msgstr "crwdns94072:0crwdne94072:0"
msgid "Email Account Name"
msgstr "crwdns129072:0crwdne129072:0"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "crwdns94076:0crwdne94076:0"
@@ -8558,7 +8552,7 @@ msgstr "crwdns94128:0crwdne94128:0"
msgid "Email Queue Recipient"
msgstr "crwdns94130:0crwdne94130:0"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "crwdns94132:0crwdne94132:0"
@@ -8622,7 +8616,7 @@ msgstr "crwdns129100:0crwdne129100:0"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "crwdns94160:0crwdne94160:0"
@@ -8654,7 +8648,7 @@ msgstr "crwdns94174:0crwdne94174:0"
msgid "Email is mandatory to create User Email"
msgstr "crwdns151610:0crwdne151610:0"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "crwdns94176:0{0}crwdne94176:0"
@@ -8680,7 +8674,7 @@ msgstr "crwdns148300:0crwdne148300:0"
msgid "Emails are already being pulled from this account."
msgstr "crwdns148302:0crwdne148302:0"
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "crwdns94180:0crwdne94180:0"
@@ -8905,8 +8899,8 @@ msgstr "crwdns129152:0crwdne129152:0"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "crwdns94262:0crwdne94262:0"
@@ -9033,7 +9027,7 @@ msgstr "crwdns94356:0crwdne94356:0"
msgid "Enter Code displayed in OTP App."
msgstr "crwdns110922:0crwdne110922:0"
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "crwdns94358:0crwdne94358:0"
@@ -9347,7 +9341,7 @@ msgstr "crwdns155330:0crwdne155330:0"
msgid "Executing..."
msgstr "crwdns94496:0crwdne94496:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "crwdns94498:0{0}crwdne94498:0"
@@ -9373,7 +9367,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "crwdns94504:0crwdne94504:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "crwdns94506:0crwdne94506:0"
@@ -9434,13 +9428,13 @@ msgstr "crwdns129232:0crwdne129232:0"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "crwdns94526:0crwdne94526:0"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "crwdns94528:0crwdne94528:0"
@@ -9798,8 +9792,8 @@ msgstr "crwdns94660:0crwdne94660:0"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10369,7 +10363,7 @@ msgid "Folio"
msgstr "crwdns129350:0crwdne129350:0"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "crwdns94950:0crwdne94950:0"
@@ -10561,7 +10555,7 @@ msgstr "crwdns95024:0crwdne95024:0"
msgid "For Value"
msgstr "crwdns129392:0crwdne129392:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "crwdns95034:0crwdne95034:0"
@@ -10823,7 +10817,7 @@ msgstr "crwdns129428:0crwdne129428:0"
msgid "From"
msgstr "crwdns95150:0crwdne95150:0"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "crwdns154401:0crwdne154401:0"
@@ -10839,7 +10833,7 @@ msgstr "crwdns95156:0crwdne95156:0"
msgid "From Date Field"
msgstr "crwdns129430:0crwdne129430:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "crwdns95162:0crwdne95162:0"
@@ -10890,7 +10884,7 @@ msgstr "crwdns129438:0crwdne129438:0"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "crwdns95188:0crwdne95188:0"
@@ -10968,7 +10962,7 @@ msgstr "crwdns111514:0crwdne111514:0"
msgid "Generate Keys"
msgstr "crwdns129448:0crwdne129448:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "crwdns95224:0crwdne95224:0"
@@ -10976,7 +10970,7 @@ msgstr "crwdns95224:0crwdne95224:0"
msgid "Generate Random Password"
msgstr "crwdns95226:0crwdne95226:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "crwdns95228:0crwdne95228:0"
@@ -11092,7 +11086,7 @@ msgstr "crwdns95268:0crwdne95268:0"
msgid "Global Unsubscribe"
msgstr "crwdns129464:0crwdne129464:0"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "crwdns95272:0crwdne95272:0"
@@ -11256,8 +11250,6 @@ msgstr "crwdns95342:0{0}crwdnd95342:0{1}crwdne95342:0"
msgid "Google Contacts Id"
msgstr "crwdns129480:0crwdne129480:0"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "crwdns95346:0crwdne95346:0"
@@ -11294,6 +11286,7 @@ msgstr "crwdns95368:0crwdne95368:0"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11721,6 +11714,10 @@ msgstr "crwdns110964:0crwdne110964:0"
msgid "Hidden Fields"
msgstr "crwdns129556:0crwdne129556:0"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr "crwdns156080:0{0}crwdne156080:0"
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11834,7 +11831,7 @@ msgstr "crwdns129578:0crwdne129578:0"
msgid "Hide Standard Menu"
msgstr "crwdns129580:0crwdne129580:0"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "crwdns95620:0crwdne95620:0"
@@ -12390,7 +12387,7 @@ msgstr "crwdns95854:0crwdne95854:0"
msgid "Image link '{0}' is not valid"
msgstr "crwdns95856:0{0}crwdne95856:0"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "crwdns95858:0crwdne95858:0"
@@ -12438,7 +12435,7 @@ msgstr "crwdns129692:0crwdne129692:0"
msgid "Import"
msgstr "crwdns95866:0crwdne95866:0"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "crwdns95868:0crwdne95868:0"
@@ -12666,11 +12663,15 @@ msgstr "crwdns95976:0crwdne95976:0"
msgid "Include Web View Link in Email"
msgstr "crwdns129732:0crwdne129732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "crwdns95980:0crwdne95980:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr "crwdns156082:0crwdne156082:0"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "crwdns95982:0crwdne95982:0"
@@ -12828,7 +12829,7 @@ msgstr "crwdns110970:0crwdne110970:0"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "crwdns96046:0crwdne96046:0"
@@ -13019,7 +13020,7 @@ msgstr "crwdns129784:0crwdne129784:0"
msgid "Invalid \"depends_on\" expression"
msgstr "crwdns96130:0crwdne96130:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "crwdns96132:0{0}crwdne96132:0"
@@ -13130,7 +13131,7 @@ msgstr "crwdns127664:0crwdne127664:0"
msgid "Invalid Parameters."
msgstr "crwdns96176:0crwdne96176:0"
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13720,8 +13721,8 @@ msgstr "crwdns96420:0crwdne96420:0"
msgid "Join video conference with {0}"
msgstr "crwdns96422:0{0}crwdne96422:0"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "crwdns96424:0crwdne96424:0"
@@ -14686,7 +14687,7 @@ msgstr "crwdns96864:0crwdne96864:0"
msgid "List Settings"
msgstr "crwdns130060:0crwdne130060:0"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "crwdns96868:0crwdne96868:0"
@@ -14758,7 +14759,7 @@ msgstr "crwdns143088:0crwdne143088:0"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "crwdns96892:0crwdne96892:0"
@@ -15467,7 +15468,7 @@ msgstr "crwdns97172:0crwdne97172:0"
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15504,7 +15505,7 @@ msgstr "crwdns148312:0crwdne148312:0"
msgid "Message Type"
msgstr "crwdns130188:0crwdne130188:0"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "crwdns97214:0crwdne97214:0"
@@ -16217,12 +16218,12 @@ msgstr "crwdns130264:0crwdne130264:0"
msgid "Navbar Template Values"
msgstr "crwdns130266:0crwdne130266:0"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "crwdns97564:0crwdne97564:0"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "crwdns97566:0crwdne97566:0"
@@ -16354,10 +16355,6 @@ msgstr "crwdns97612:0crwdne97612:0"
msgid "New Name"
msgstr "crwdns97614:0crwdne97614:0"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "crwdns97618:0crwdne97618:0"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "crwdns97620:0crwdne97620:0"
@@ -16458,7 +16455,7 @@ msgstr "crwdns130276:0crwdne130276:0"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16470,15 +16467,15 @@ msgstr "crwdns130276:0crwdne130276:0"
msgid "New {0}"
msgstr "crwdns97640:0{0}crwdne97640:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "crwdns97642:0{0}crwdne97642:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "crwdns97644:0{0}crwdnd97644:0{1}crwdnd97644:0{2}crwdne97644:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "crwdns97646:0{0}crwdnd97646:0{1}crwdne97646:0"
@@ -16490,7 +16487,7 @@ msgstr "crwdns97648:0{0}crwdnd97648:0{1}crwdne97648:0"
msgid "New {} releases for the following apps are available"
msgstr "crwdns97650:0crwdne97650:0"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "crwdns97652:0{0}crwdne97652:0"
@@ -16617,7 +16614,7 @@ msgstr "crwdns130294:0crwdne130294:0"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "crwdns97696:0crwdne97696:0"
@@ -16758,7 +16755,7 @@ msgstr "crwdns97750:0crwdne97750:0"
msgid "No Results found"
msgstr "crwdns97752:0crwdne97752:0"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "crwdns97754:0crwdne97754:0"
@@ -16826,7 +16823,7 @@ msgstr "crwdns111060:0crwdne111060:0"
msgid "No contacts linked to document"
msgstr "crwdns97778:0crwdne97778:0"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "crwdns97780:0crwdne97780:0"
@@ -17018,7 +17015,7 @@ msgstr "crwdns130308:0crwdne130308:0"
msgid "Normalized Query"
msgstr "crwdns130310:0crwdne130310:0"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "crwdns97846:0crwdne97846:0"
@@ -17074,7 +17071,7 @@ msgstr "crwdns130314:0crwdne130314:0"
msgid "Not Permitted"
msgstr "crwdns97866:0crwdne97866:0"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "crwdns97868:0{0}crwdne97868:0"
@@ -17084,8 +17081,8 @@ msgstr "crwdns97868:0{0}crwdne97868:0"
msgid "Not Published"
msgstr "crwdns97870:0crwdne97870:0"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17118,7 +17115,7 @@ msgstr "crwdns97884:0crwdne97884:0"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "crwdns97886:0crwdne97886:0"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "crwdns97888:0crwdne97888:0"
@@ -17353,7 +17350,7 @@ msgstr "crwdns130332:0crwdne130332:0"
msgid "Notify users with a popup when they log in"
msgstr "crwdns130334:0crwdne130334:0"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "crwdns97990:0crwdne97990:0"
@@ -17648,7 +17645,7 @@ msgstr "crwdns149004:0crwdne149004:0"
msgid "On or Before"
msgstr "crwdns149006:0crwdne149006:0"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "crwdns111096:0{0}crwdnd111096:0{1}crwdne111096:0"
@@ -17724,7 +17721,7 @@ msgstr "crwdns98116:0crwdne98116:0"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "crwdns98118:0crwdne98118:0"
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "crwdns98120:0crwdne98120:0"
@@ -17877,7 +17874,7 @@ msgstr "crwdns155340:0crwdne155340:0"
msgid "Open in a new tab"
msgstr "crwdns143102:0crwdne143102:0"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "crwdns98186:0crwdne98186:0"
@@ -17932,7 +17929,7 @@ msgstr "crwdns98200:0{0}crwdne98200:0"
msgid "Optimize"
msgstr "crwdns98202:0crwdne98202:0"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "crwdns98204:0crwdne98204:0"
@@ -18123,7 +18120,7 @@ msgstr "crwdns130460:0crwdne130460:0"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "crwdns98288:0crwdne98288:0"
@@ -18482,11 +18479,11 @@ msgstr "crwdns130516:0crwdne130516:0"
msgid "Password"
msgstr "crwdns98434:0crwdne98434:0"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "crwdns98448:0crwdne98448:0"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "crwdns98450:0crwdne98450:0"
@@ -18520,7 +18517,7 @@ msgstr "crwdns98462:0crwdne98462:0"
msgid "Password not found for {0} {1} {2}"
msgstr "crwdns98464:0{0}crwdnd98464:0{1}crwdnd98464:0{2}crwdne98464:0"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "crwdns142862:0crwdne142862:0"
@@ -18532,7 +18529,7 @@ msgstr "crwdns98468:0crwdne98468:0"
msgid "Password size exceeded the maximum allowed size"
msgstr "crwdns98470:0crwdne98470:0"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "crwdns98472:0crwdne98472:0"
@@ -18903,7 +18900,7 @@ msgstr "crwdns98624:0crwdne98624:0"
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "crwdns98626:0crwdne98626:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "crwdns98628:0crwdne98628:0"
@@ -18919,7 +18916,7 @@ msgstr "crwdns98632:0crwdne98632:0"
msgid "Please add a valid comment."
msgstr "crwdns98634:0crwdne98634:0"
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "crwdns98636:0crwdne98636:0"
@@ -18951,7 +18948,7 @@ msgstr "crwdns98648:0crwdne98648:0"
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "crwdns98650:0{0}crwdne98650:0"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "crwdns98652:0crwdne98652:0"
@@ -19142,7 +19139,7 @@ msgstr "crwdns98742:0crwdne98742:0"
msgid "Please select Minimum Password Score"
msgstr "crwdns98744:0crwdne98744:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "crwdns111128:0crwdne111128:0"
@@ -19200,7 +19197,7 @@ msgstr "crwdns98768:0crwdne98768:0"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "crwdns98770:0crwdne98770:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "crwdns98772:0crwdne98772:0"
@@ -19228,7 +19225,7 @@ msgstr "crwdns98782:0crwdne98782:0"
msgid "Please setup a message first"
msgstr "crwdns98784:0crwdne98784:0"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "crwdns98788:0crwdne98788:0"
@@ -19446,11 +19443,11 @@ msgstr "crwdns98878:0crwdne98878:0"
msgid "Prepared report render failed"
msgstr "crwdns98880:0crwdne98880:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "crwdns98882:0crwdne98882:0"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "crwdns98884:0crwdne98884:0"
@@ -19515,7 +19512,7 @@ msgstr "crwdns148690:0{0}crwdne148690:0"
msgid "Preview type"
msgstr "crwdns143110:0crwdne143110:0"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "crwdns111132:0crwdne111132:0"
@@ -19586,16 +19583,16 @@ msgstr "crwdns112704:0{0}crwdne112704:0"
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "crwdns98924:0crwdne98924:0"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "crwdns98926:0crwdne98926:0"
@@ -19665,7 +19662,7 @@ msgstr "crwdns130624:0crwdne130624:0"
msgid "Print Format Type"
msgstr "crwdns130626:0crwdne130626:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr "crwdns155998:0crwdne155998:0"
@@ -19700,7 +19697,7 @@ msgstr "crwdns130628:0crwdne130628:0"
msgid "Print Hide If No Value"
msgstr "crwdns130630:0crwdne130630:0"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "crwdns111422:0crwdne111422:0"
@@ -19846,7 +19843,7 @@ msgstr "crwdns130648:0{{ reference_doctype }}crwdnd130648:0{{ reference_name }}c
msgid "Proceed"
msgstr "crwdns99050:0crwdne99050:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "crwdns99052:0crwdne99052:0"
@@ -20152,7 +20149,7 @@ msgstr "crwdns99178:0crwdne99178:0"
msgid "Query analysis complete. Check suggested indexes."
msgstr "crwdns127880:0crwdne127880:0"
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "crwdns99182:0crwdne99182:0"
@@ -20349,7 +20346,7 @@ msgstr "crwdns99270:0crwdne99270:0"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "crwdns99272:0{0}crwdne99272:0"
@@ -20425,7 +20422,7 @@ msgstr "crwdns130736:0crwdne130736:0"
msgid "Read mode"
msgstr "crwdns99316:0crwdne99316:0"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "crwdns99318:0crwdne99318:0"
@@ -20445,7 +20442,7 @@ msgstr "crwdns130740:0crwdne130740:0"
msgid "Reason"
msgstr "crwdns99322:0crwdne99322:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "crwdns99328:0crwdne99328:0"
@@ -20591,12 +20588,12 @@ msgstr "crwdns130772:0crwdne130772:0"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "crwdns99384:0crwdne99384:0"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "crwdns99386:0crwdne99386:0"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "crwdns99388:0crwdne99388:0"
@@ -20810,11 +20807,11 @@ msgid "Referrer"
msgstr "crwdns99526:0crwdne99526:0"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20853,7 +20850,7 @@ msgstr "crwdns111160:0crwdne111160:0"
msgid "Refreshing..."
msgstr "crwdns99546:0crwdne99546:0"
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "crwdns99548:0crwdne99548:0"
@@ -20902,7 +20899,7 @@ msgstr "crwdns130808:0crwdne130808:0"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "crwdns99566:0crwdne99566:0"
@@ -20933,7 +20930,7 @@ msgstr "crwdns130810:0crwdne130810:0"
msgid "Remind At"
msgstr "crwdns99576:0crwdne99576:0"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "crwdns99580:0crwdne99580:0"
@@ -21015,7 +21012,7 @@ msgstr "crwdns149130:0crwdne149130:0"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21043,7 +21040,7 @@ msgstr "crwdns143124:0crwdne143124:0"
msgid "Reopen"
msgstr "crwdns99610:0crwdne99610:0"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "crwdns99612:0crwdne99612:0"
@@ -21233,7 +21230,7 @@ msgstr "crwdns99694:0crwdne99694:0"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "crwdns99696:0crwdne99696:0"
@@ -21285,7 +21282,7 @@ msgstr "crwdns99720:0crwdne99720:0"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "crwdns99722:0crwdne99722:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "crwdns99724:0crwdne99724:0"
@@ -21297,7 +21294,7 @@ msgstr "crwdns99726:0crwdne99726:0"
msgid "Report timed out."
msgstr "crwdns99728:0crwdne99728:0"
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "crwdns99730:0crwdne99730:0"
@@ -21305,7 +21302,7 @@ msgstr "crwdns99730:0crwdne99730:0"
msgid "Report was not saved (there were errors)"
msgstr "crwdns99732:0crwdne99732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "crwdns99734:0crwdne99734:0"
@@ -21341,7 +21338,7 @@ msgstr "crwdns99746:0crwdne99746:0"
msgid "Reports & Masters"
msgstr "crwdns99750:0crwdne99750:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "crwdns99752:0crwdne99752:0"
@@ -21780,7 +21777,7 @@ msgstr "crwdns99964:0crwdne99964:0"
msgid "Role Permissions Manager"
msgstr "crwdns99968:0crwdne99968:0"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "crwdns99970:0crwdne99970:0"
@@ -21814,7 +21811,7 @@ msgstr "crwdns148702:0crwdne148702:0"
msgid "Role and Level"
msgstr "crwdns130914:0crwdne130914:0"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "crwdns99982:0{0}crwdne99982:0"
@@ -22207,12 +22204,12 @@ msgstr "crwdns130978:0crwdne130978:0"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22239,7 +22236,7 @@ msgstr "crwdns100178:0crwdne100178:0"
msgid "Save Customizations"
msgstr "crwdns100180:0crwdne100180:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "crwdns100182:0crwdne100182:0"
@@ -22258,7 +22255,7 @@ msgstr "crwdns100188:0crwdne100188:0"
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22306,7 +22303,7 @@ msgstr "crwdns100204:0crwdne100204:0"
msgid "Schedule"
msgstr "crwdns100206:0crwdne100206:0"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "crwdns100210:0crwdne100210:0"
@@ -22615,7 +22612,7 @@ msgstr "crwdns131022:0crwdne131022:0"
msgid "See all Activity"
msgstr "crwdns111200:0crwdne111200:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "crwdns100338:0crwdne100338:0"
@@ -22683,8 +22680,8 @@ msgstr "crwdns100362:0crwdne100362:0"
msgid "Select All"
msgstr "crwdns111204:0crwdne111204:0"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22750,7 +22747,7 @@ msgstr "crwdns111206:0crwdne111206:0"
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "crwdns100412:0crwdne100412:0"
@@ -22821,7 +22818,7 @@ msgid "Select Page"
msgstr "crwdns131036:0crwdne131036:0"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "crwdns100440:0crwdne100440:0"
@@ -22913,13 +22910,13 @@ msgstr "crwdns100474:0crwdne100474:0"
msgid "Select atleast 2 actions"
msgstr "crwdns100476:0crwdne100476:0"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "crwdns100478:0crwdne100478:0"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "crwdns100480:0crwdne100480:0"
@@ -23035,7 +23032,7 @@ msgstr "crwdns100528:0crwdne100528:0"
msgid "Send Print as PDF"
msgstr "crwdns131074:0crwdne131074:0"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "crwdns100532:0crwdne100532:0"
@@ -23098,7 +23095,7 @@ msgstr "crwdns131094:0crwdne131094:0"
msgid "Send login link"
msgstr "crwdns100562:0crwdne100562:0"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "crwdns100564:0crwdne100564:0"
@@ -23260,7 +23257,7 @@ msgstr "crwdns131130:0crwdne131130:0"
msgid "Server Script"
msgstr "crwdns100650:0crwdne100650:0"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "crwdns100660:0crwdne100660:0"
@@ -23299,11 +23296,11 @@ msgstr "crwdns100672:0crwdne100672:0"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "crwdns100674:0crwdne100674:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "crwdns100678:0crwdne100678:0"
@@ -23339,7 +23336,7 @@ msgstr "crwdns100686:0crwdne100686:0"
msgid "Set Banner from Image"
msgstr "crwdns131136:0crwdne131136:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "crwdns100690:0crwdne100690:0"
@@ -23365,7 +23362,7 @@ msgstr "crwdns100696:0crwdne100696:0"
msgid "Set Filters for {0}"
msgstr "crwdns100698:0{0}crwdne100698:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "crwdns148706:0crwdne148706:0"
@@ -23537,7 +23534,7 @@ msgstr "crwdns100754:0crwdne100754:0"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23583,7 +23580,7 @@ msgstr "crwdns111216:0crwdne111216:0"
msgid "Setup > User Permissions"
msgstr "crwdns111218:0crwdne111218:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "crwdns100774:0crwdne100774:0"
@@ -23786,7 +23783,7 @@ msgstr "crwdns131190:0crwdne131190:0"
msgid "Show Line Breaks after Sections"
msgstr "crwdns131192:0crwdne131192:0"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "crwdns148334:0crwdne148334:0"
@@ -23862,7 +23859,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "crwdns156020:0crwdne156020:0"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "crwdns100886:0crwdne100886:0"
@@ -24036,7 +24033,7 @@ msgstr "crwdns131236:0crwdne131236:0"
msgid "Sign Up and Confirmation"
msgstr "crwdns131238:0crwdne131238:0"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "crwdns100938:0crwdne100938:0"
@@ -24838,7 +24835,7 @@ msgstr "crwdns131356:0crwdne131356:0"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "crwdns101284:0crwdne101284:0"
@@ -24877,7 +24874,7 @@ msgstr "crwdns101312:0crwdne101312:0"
msgid "Submit"
msgstr "crwdns101314:0crwdne101314:0"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "crwdns101316:0crwdne101316:0"
@@ -24935,7 +24932,7 @@ msgstr "crwdns101344:0crwdne101344:0"
msgid "Submit this document to confirm"
msgstr "crwdns101346:0crwdne101346:0"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "crwdns101348:0{0}crwdne101348:0"
@@ -25084,7 +25081,7 @@ msgstr "crwdns127884:0crwdne127884:0"
msgid "Suggested Indexes"
msgstr "crwdns131380:0crwdne131380:0"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "crwdns101420:0{0}crwdne101420:0"
@@ -25627,7 +25624,7 @@ msgstr "crwdns131428:0crwdne131428:0"
msgid "Templates"
msgstr "crwdns101586:0crwdne101586:0"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "crwdns101588:0crwdne101588:0"
@@ -25891,11 +25888,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr "crwdns131456:0crwdne131456:0"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "crwdns101696:0crwdne101696:0"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "crwdns101698:0crwdne101698:0"
@@ -25972,7 +25969,7 @@ msgstr "crwdns111276:0crwdne111276:0"
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "crwdns101730:0{0}crwdnd101730:0{1}crwdne101730:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "crwdns111278:0{0}crwdne111278:0"
@@ -26001,7 +25998,7 @@ msgstr "crwdns112744:0crwdne112744:0"
msgid "There is some problem with the file url: {0}"
msgstr "crwdns101740:0{0}crwdne101740:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "crwdns111280:0{0}crwdne111280:0"
@@ -26025,7 +26022,7 @@ msgstr "crwdns101750:0crwdne101750:0"
msgid "There were errors while creating the document. Please try again."
msgstr "crwdns101752:0crwdne101752:0"
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "crwdns101754:0crwdne101754:0"
@@ -26198,7 +26195,7 @@ msgstr "crwdns148744:0crwdne148744:0"
msgid "This goes above the slideshow."
msgstr "crwdns131484:0crwdne131484:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "crwdns101812:0crwdne101812:0"
@@ -26254,7 +26251,7 @@ msgstr "crwdns101834:0crwdne101834:0"
msgid "This month"
msgstr "crwdns101836:0crwdne101836:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0"
@@ -26262,7 +26259,7 @@ msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0"
msgid "This report was generated on {0}"
msgstr "crwdns101842:0{0}crwdne101842:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "crwdns101844:0{0}crwdne101844:0"
@@ -26328,7 +26325,7 @@ msgstr "crwdns101866:0crwdne101866:0"
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "crwdns101868:0crwdne101868:0"
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "crwdns101870:0crwdne101870:0"
@@ -26676,7 +26673,7 @@ msgstr "crwdns102048:0crwdne102048:0"
msgid "To generate password click {0}"
msgstr "crwdns155060:0{0}crwdne155060:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "crwdns102050:0{0}crwdne102050:0"
@@ -26751,7 +26748,7 @@ msgstr "crwdns102084:0crwdne102084:0"
msgid "Toggle Sidebar"
msgstr "crwdns102086:0crwdne102086:0"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "crwdns102088:0crwdne102088:0"
@@ -26813,7 +26810,7 @@ msgstr "crwdns102110:0crwdne102110:0"
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "crwdns154316:0{0}crwdne154316:0"
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "crwdns102112:0crwdne102112:0"
@@ -26875,9 +26872,9 @@ msgstr "crwdns131572:0crwdne131572:0"
msgid "Topic"
msgstr "crwdns131574:0crwdne131574:0"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "crwdns102140:0crwdne102140:0"
@@ -27045,7 +27042,7 @@ msgstr "crwdns131616:0crwdne131616:0"
msgid "Translatable"
msgstr "crwdns131618:0crwdne131618:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "crwdns154320:0crwdne154320:0"
@@ -27078,6 +27075,11 @@ msgstr "crwdns102206:0crwdne102206:0"
msgid "Translations"
msgstr "crwdns102208:0crwdne102208:0"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr "crwdns156084:0crwdne156084:0"
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27415,11 +27417,11 @@ msgstr "crwdns151458:0crwdne151458:0"
msgid "Unchanged"
msgstr "crwdns102348:0crwdne102348:0"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "crwdns102350:0crwdne102350:0"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "crwdns102352:0crwdne102352:0"
@@ -27428,7 +27430,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr "crwdns155596:0{0}crwdne155596:0"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "crwdns102354:0crwdne102354:0"
@@ -27499,7 +27501,7 @@ msgstr "crwdns131668:0crwdne131668:0"
msgid "Unread Notification Sent"
msgstr "crwdns131670:0crwdne131670:0"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "crwdns102382:0crwdne102382:0"
@@ -27513,7 +27515,7 @@ msgstr "crwdns111300:0crwdne111300:0"
msgid "Unshared"
msgstr "crwdns131672:0crwdne131672:0"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "crwdns102388:0crwdne102388:0"
@@ -27533,7 +27535,7 @@ msgstr "crwdns154322:0crwdne154322:0"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "crwdns102394:0crwdne102394:0"
@@ -27942,7 +27944,7 @@ msgstr "crwdns131728:0crwdne131728:0"
msgid "User Cannot Search"
msgstr "crwdns131730:0crwdne131730:0"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "crwdns127780:0crwdne127780:0"
@@ -28048,12 +28050,12 @@ msgstr "crwdns102624:0crwdne102624:0"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "crwdns102628:0crwdne102628:0"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "crwdns102630:0crwdne102630:0"
@@ -28154,15 +28156,15 @@ msgstr "crwdns102672:0{0}crwdne102672:0"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "crwdns102674:0{0}crwdne102674:0"
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "crwdns102676:0{0}crwdne102676:0"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "crwdns102678:0{0}crwdne102678:0"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "crwdns102680:0{0}crwdne102680:0"
@@ -28183,7 +28185,7 @@ msgstr "crwdns127898:0{0}crwdne127898:0"
msgid "User {0} has requested for data deletion"
msgstr "crwdns102686:0{0}crwdne102686:0"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0"
@@ -28212,7 +28214,7 @@ msgstr "crwdns131764:0crwdne131764:0"
msgid "Username"
msgstr "crwdns102694:0crwdne102694:0"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "crwdns102700:0{0}crwdne102700:0"
@@ -28485,7 +28487,7 @@ msgstr "crwdns131798:0crwdne131798:0"
msgid "View All"
msgstr "crwdns102800:0crwdne102800:0"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "crwdns102802:0crwdne102802:0"
@@ -28772,6 +28774,7 @@ msgstr "crwdns131830:0crwdne131830:0"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29037,11 +29040,11 @@ msgstr "crwdns131860:0crwdne131860:0"
msgid "Welcome Workspace"
msgstr "crwdns103062:0crwdne103062:0"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "crwdns103064:0crwdne103064:0"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "crwdns103066:0{0}crwdne103066:0"
@@ -29395,7 +29398,7 @@ msgstr "crwdns103204:0crwdne103204:0"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "crwdns103206:0crwdne103206:0"
@@ -29456,7 +29459,7 @@ msgstr "crwdns131908:0crwdne131908:0"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "crwdns103238:0crwdne103238:0"
@@ -29531,7 +29534,7 @@ msgstr "crwdns103270:0crwdne103270:0"
msgid "You are not allowed to print this report"
msgstr "crwdns103272:0crwdne103272:0"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "crwdns103274:0crwdne103274:0"
@@ -29646,7 +29649,7 @@ msgstr "crwdns111340:0crwdne111340:0"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "crwdns148354:0crwdne148354:0"
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "crwdns103318:0crwdne103318:0"
@@ -29731,7 +29734,7 @@ msgstr "crwdns103352:0crwdne103352:0"
msgid "You do not have permission to access field: {0}"
msgstr "crwdns155600:0{0}crwdne155600:0"
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
@@ -29927,7 +29930,7 @@ msgstr "crwdns103436:0crwdne103436:0"
msgid "You viewed this"
msgstr "crwdns103438:0crwdne103438:0"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "crwdns127792:0crwdne127792:0"
@@ -29968,11 +29971,11 @@ msgstr "crwdns103450:0{0}crwdne103450:0"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "crwdns103452:0{0}crwdnd103452:0{1}crwdnd103452:0{2}crwdne103452:0"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "crwdns111350:0crwdne111350:0"
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "crwdns111352:0crwdne111352:0"
@@ -30851,7 +30854,7 @@ msgstr "crwdns104084:0{0}crwdnd104084:0{1}crwdnd104084:0{2}crwdnd104084:0{3}crwd
msgid "{0} Report"
msgstr "crwdns104086:0{0}crwdne104086:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "crwdns111368:0{0}crwdne111368:0"
@@ -31022,7 +31025,7 @@ msgstr "crwdns104184:0{0}crwdne104184:0"
msgid "{0} has already assigned default value for {1}."
msgstr "crwdns104186:0{0}crwdnd104186:0{1}crwdne104186:0"
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "crwdns104190:0{0}crwdnd104190:0{1}crwdnd104190:0{2}crwdne104190:0"
@@ -31193,11 +31196,11 @@ msgstr "crwdns104264:0{0}crwdne104264:0"
msgid "{0} is within {1}"
msgstr "crwdns104266:0{0}crwdnd104266:0{1}crwdne104266:0"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "crwdns104268:0{0}crwdne104268:0"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "crwdns111448:0{0}crwdnd111448:0{1}crwdne111448:0"
@@ -31333,7 +31336,7 @@ msgstr "crwdns111370:0{0}crwdne111370:0"
msgid "{0} row #{1}: "
msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0"
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "crwdns104328:0{0}crwdne104328:0"
@@ -31375,7 +31378,7 @@ msgstr "crwdns104344:0{0}crwdnd104344:0{1}crwdne104344:0"
msgid "{0} subscribers added"
msgstr "crwdns104346:0{0}crwdne104346:0"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "crwdns104348:0{0}crwdne104348:0"
@@ -31562,7 +31565,7 @@ msgstr "crwdns104432:0{0}crwdnd104432:0{1}crwdne104432:0"
msgid "{0}: {1} is set to state {2}"
msgstr "crwdns104434:0{0}crwdnd104434:0{1}crwdnd104434:0{2}crwdne104434:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "crwdns104436:0{0}crwdnd104436:0{1}crwdnd104436:0{2}crwdne104436:0"
diff --git a/frappe/locale/es.po b/frappe/locale/es.po
index ce28456306..3e75fcf7a4 100644
--- a/frappe/locale/es.po
+++ b/frappe/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:49\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 Día"
msgid "1 Google Calendar Event synced."
msgstr "1 evento de Google Calendar sincronizado."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 Informe"
@@ -660,11 +660,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Hola,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Informes & Maestros"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Advertencia: Este campo es generado por el sistema y puede ser sobrescrito por una futura actualización. Modifíquelo utilizando {0} en su lugar."
@@ -981,7 +976,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1047,10 +1041,10 @@ msgstr "La acción {0} falló en {1} {2}. Véalo en {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Acciones"
@@ -1112,8 +1106,8 @@ msgstr "Registro de Actividad"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Agregar"
@@ -1130,7 +1124,7 @@ msgstr "Agregar / Actualizar"
msgid "Add A New Rule"
msgstr "Añadir una nueva regla"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Añadir un adjunto"
@@ -1154,7 +1148,7 @@ msgstr "Añadir borde al principio"
msgid "Add Card to Dashboard"
msgstr "Agregar Tarjeta al tablero"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Agregar gráfico al tablero"
@@ -1163,8 +1157,8 @@ msgid "Add Child"
msgstr "Crear subcategoría"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1225,7 +1219,7 @@ msgstr "Agregar Participantes"
msgid "Add Query Parameters"
msgstr "Agregar parámetros de consulta"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Añadir Roles"
@@ -1235,7 +1229,7 @@ msgstr "Añadir Fila"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Agregar Firma"
@@ -1258,12 +1252,12 @@ msgstr "Añadir Suscriptores"
msgid "Add Tags"
msgstr "Añadir etiquetas"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Añadir etiquetas"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Añadir plantilla"
@@ -1370,7 +1364,7 @@ msgid "Add tab"
msgstr "Agregar pestaña"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Agregar al tablero"
@@ -1525,11 +1519,11 @@ msgstr "Administración"
msgid "Administrator"
msgstr "Administrador"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Administrador logeado"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Acceso de Administrador {0} en {1} a través de la dirección IP {2}."
@@ -2073,7 +2067,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Ya está Registrado"
@@ -2172,7 +2166,7 @@ msgstr "Enmienda no permitida"
msgid "Amendment naming rules updated."
msgstr "Reglas de nomenclatura rectificada actualizadas."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Se produjo un error al configurar los valores predeterminados de la sesión"
@@ -2348,7 +2342,7 @@ msgstr "Aplicado en"
msgid "Apply"
msgstr "Aplicar"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Aplicar regla de asignación"
@@ -2429,7 +2423,7 @@ msgstr "Archivado"
msgid "Archived Columns"
msgstr "Columnas archivados"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "¿Está seguro de que desea borrar las asignaciones?"
@@ -2461,7 +2455,7 @@ msgstr "¿Está seguro de que desea eliminar la sección? Todas las columnas y l
msgid "Are you sure you want to discard the changes?"
msgstr "¿Realmente quieres descartar los cambios?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "¿Está seguro de que desea generar un nuevo informe?"
@@ -2533,7 +2527,7 @@ msgstr "Asignar condición"
msgid "Assign To"
msgstr "Asignar a"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Asignar a"
@@ -2690,7 +2684,7 @@ msgstr "Al menos un campo de Tipo de Documento Principal es obligatorio"
msgid "Attach"
msgstr "Adjuntar"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Adjuntar Documento para Imprimir"
@@ -3183,7 +3177,7 @@ msgstr "B9"
msgid "BCC"
msgstr "CCO"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "CCO"
@@ -3226,7 +3220,7 @@ msgstr "Imagen de Fondo"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Trabajos en Segundo Plano"
@@ -3832,7 +3826,7 @@ msgstr "CANCELADO"
msgid "CC"
msgstr "CC"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -4023,7 +4017,7 @@ msgstr "No se puede renombrar {0} a {1} porque {0} no existe."
msgid "Cancel"
msgstr "Cancelar"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Cancelar"
@@ -4041,7 +4035,7 @@ msgstr "Cancelar todo"
msgid "Cancel All Documents"
msgstr "Cancelar todos los documentos"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "¿Cancelar {0} documentos?"
@@ -4303,7 +4297,7 @@ msgstr "Tarjeta"
msgid "Card Break"
msgstr "Salto de tarjeta"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Etiqueta de tarjeta"
@@ -4442,7 +4436,7 @@ msgstr "Configuración de gráfico"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nombre del Gráfico"
@@ -4611,11 +4605,11 @@ msgstr "Ciudad"
msgid "Clear"
msgstr "Quitar"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Borrar y Agregar Plantilla"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Borrar y Agregar plantilla"
@@ -4623,7 +4617,7 @@ msgstr "Borrar y Agregar plantilla"
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Borrar Asignación"
@@ -4649,7 +4643,7 @@ msgstr "Borrar registros después (días)"
msgid "Clear User Permissions"
msgstr "Borrar permisos de usuario"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "Borre el mensaje de correo electrónico y añada la plantilla"
@@ -4891,7 +4885,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Colapso"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Desplegar todo"
@@ -4946,7 +4940,7 @@ msgstr "Plegable depende de (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5196,7 +5190,7 @@ msgstr "Completar"
msgid "Complete By"
msgstr "Completado por"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Registro completo"
@@ -5607,7 +5601,7 @@ msgstr "Copiar código incrustado"
msgid "Copy error to clipboard"
msgstr "Copiar error al Portapapeles"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Copiar al Portapapeles"
@@ -5731,7 +5725,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5745,13 +5739,13 @@ msgstr "Crear y Continuar"
msgid "Create Address"
msgstr "Crear dirección"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Crear tarjeta"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Crear gráfico"
@@ -6215,12 +6209,12 @@ msgstr "Personalizaciones para {0} exportadas a:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Personalización"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Personalización"
@@ -6864,7 +6858,7 @@ msgstr "Retrasado"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6873,7 +6867,7 @@ msgstr "Retrasado"
msgid "Delete"
msgstr "Eliminar"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Eliminar"
@@ -6909,7 +6903,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Eliminar pestaña"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Eliminar y Generar Nuevo"
@@ -6951,12 +6945,12 @@ msgstr "Eliminar pestaña"
msgid "Delete this record to allow sending to this email address"
msgstr "Eliminar este registro para permitir el envío a esta dirección de correo electrónico"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "¿Eliminar {0} elemento de forma permanente?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "¿Eliminar {0} artículos de forma permanente?"
@@ -7364,8 +7358,8 @@ msgstr "Deshabilitar registros"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Deshabilitado"
@@ -7374,7 +7368,7 @@ msgstr "Deshabilitado"
msgid "Disabled Auto Reply"
msgstr "Respuesta automática deshabilitada"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8129,7 +8123,7 @@ msgstr "Enlace de descarga"
msgid "Download PDF"
msgstr "Descargar PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Descargar Informe"
@@ -8213,7 +8207,7 @@ msgid "Due Date Based On"
msgstr "Fecha de Vencimiento basada en"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Duplicar"
@@ -8328,9 +8322,9 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8342,7 +8336,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Editar"
@@ -8377,11 +8371,11 @@ msgstr "Editar bloque personalizado"
msgid "Edit Custom HTML"
msgstr "Editar HTML personalizado"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "Editar DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Editar DocType"
@@ -8558,7 +8552,7 @@ msgstr "Selector de elementos"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8593,7 +8587,7 @@ msgstr "Cuenta de correo desactivada."
msgid "Email Account Name"
msgstr "Cuenta de correo electrónico"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "Cuenta de correo electrónico añadida varias veces"
@@ -8700,7 +8694,7 @@ msgstr "Cola de correo electrónico"
msgid "Email Queue Recipient"
msgstr "Cola de correo electrónico de destinatarios"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "El vaciado de la cola de correo electrónico se canceló debido a demasiados intentos fallidos."
@@ -8764,7 +8758,7 @@ msgstr "Opción de Sincronizar Correo Electrónico"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "Plantilla de Correo Electrónico"
@@ -8796,7 +8790,7 @@ msgstr "El correo electrónico se ha movido a la papelera"
msgid "Email is mandatory to create User Email"
msgstr "El correo electrónico es obligatorio para crear el correo electrónico del usuario."
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Correo electrónico no enviado a {0} (dado de baja / desactivado)"
@@ -8822,7 +8816,7 @@ msgstr "Correos electrónicos descargados"
msgid "Emails are already being pulled from this account."
msgstr "Ya se están descargando los correos electrónicos de esta cuenta."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "Los correos electrónicos se silencian"
@@ -9048,8 +9042,8 @@ msgstr "Activar seguimiento de sitios web en la aplicación"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Habilitado"
@@ -9176,7 +9170,7 @@ msgstr "Ingrese el ID del cliente y el secreto del cliente en la configuración
msgid "Enter Code displayed in OTP App."
msgstr "Ingrese el código que se muestra en la aplicación OTP."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Ingrese Destinatario(s) de Correo Electrónico"
@@ -9490,7 +9484,7 @@ msgstr ""
msgid "Executing..."
msgstr "Ejecutando..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Tiempo de ejecución: {0} segundos"
@@ -9516,7 +9510,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir todo"
@@ -9577,13 +9571,13 @@ msgstr "Tiempo de expiración de Pagina de Código QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportar"
@@ -9941,8 +9935,8 @@ msgstr "Obteniendo documentos predeterminados de Global Search."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10512,7 +10506,7 @@ msgid "Folio"
msgstr "Folio"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Seguir"
@@ -10705,7 +10699,7 @@ msgstr "Por Usuario"
msgid "For Value"
msgstr "Por valor"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Para la comparación, utilice >5, <10 o =324. Para rangos, utilice 5:10 (para valores entre 5 y 10)."
@@ -10967,7 +10961,7 @@ msgstr "Viernes"
msgid "From"
msgstr "Desde"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Desde"
@@ -10983,7 +10977,7 @@ msgstr "Desde la fecha"
msgid "From Date Field"
msgstr "Desde campo de fecha"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Desde tipo de documento"
@@ -11034,7 +11028,7 @@ msgstr "Ancho completo"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Función"
@@ -11112,7 +11106,7 @@ msgstr "General"
msgid "Generate Keys"
msgstr "Generar Llaves"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Generar Nuevo Informe"
@@ -11120,7 +11114,7 @@ msgstr "Generar Nuevo Informe"
msgid "Generate Random Password"
msgstr "Generar Contraseña Aleatoria"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generar URL de seguimiento"
@@ -11236,7 +11230,7 @@ msgstr "Atajos globales"
msgid "Global Unsubscribe"
msgstr "Darse de baja globalmente"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Buscar"
@@ -11400,8 +11394,6 @@ msgstr "Contactos de Google: no se pudo actualizar el contacto en Contactos de G
msgid "Google Contacts Id"
msgstr "Id de contactos de Google"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
@@ -11438,6 +11430,7 @@ msgstr "Servicios de Google"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11865,6 +11858,10 @@ msgstr "Oculto"
msgid "Hidden Fields"
msgstr "Campos ocultos"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11978,7 +11975,7 @@ msgstr "Ocultar Barra Lateral, Menú y Comentarios"
msgid "Hide Standard Menu"
msgstr "Ocultar Menú Estándar"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Ocultar etiquetas"
@@ -12534,7 +12531,7 @@ msgstr "Campo de imagen debe ser de tipo Adjuntar imagen"
msgid "Image link '{0}' is not valid"
msgstr "El enlace de la imagen '{0}' no es válido"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Imagen optimizada"
@@ -12582,7 +12579,7 @@ msgstr "Implícito"
msgid "Import"
msgstr "Importar / Exportar"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importar / Exportar"
@@ -12810,11 +12807,15 @@ msgstr "Incluir tema de aplicaciones"
msgid "Include Web View Link in Email"
msgstr "Enviar el enlace de la vista web del documento por correo electrónico"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Incluir filtros"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Incluir sangría"
@@ -12972,7 +12973,7 @@ msgstr "Insertar Arriba"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Insertar Después"
@@ -13163,7 +13164,7 @@ msgstr "Inválido"
msgid "Invalid \"depends_on\" expression"
msgstr "Expresión \"depende_on\" no válida"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Expresión \"depende_on\" no válida establecida en el filtro {0}"
@@ -13274,7 +13275,7 @@ msgstr "Anulación no válida"
msgid "Invalid Parameters."
msgstr "Parámetros Inválidos."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13864,8 +13865,8 @@ msgstr "El trabajo no se está ejecutando."
msgid "Join video conference with {0}"
msgstr "Únase a la videoconferencia con {0}"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Saltar al campo"
@@ -14830,7 +14831,7 @@ msgstr "Filtro de Lista"
msgid "List Settings"
msgstr "Configuración de lista"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Configuración de lista"
@@ -14902,7 +14903,7 @@ msgstr "Cargar más"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Cargando"
@@ -15611,7 +15612,7 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15648,7 +15649,7 @@ msgstr "Mensaje enviado"
msgid "Message Type"
msgstr "Tipo de mensaje"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Mensaje marcado"
@@ -16363,12 +16364,12 @@ msgstr "Plantilla de barra de navegación"
msgid "Navbar Template Values"
msgstr "Valores de la plantilla de la barra de navegación"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navegar por la lista hacia abajo"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navegar lista arriba"
@@ -16500,10 +16501,6 @@ msgstr "Nuevo mensaje desde la página de contacto del sitio web"
msgid "New Name"
msgstr "Nuevo Nombre"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Nuevo Boletín"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Nueva notificación"
@@ -16604,7 +16601,7 @@ msgstr "Nuevo valor a establecer"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16616,15 +16613,15 @@ msgstr "Nuevo valor a establecer"
msgid "New {0}"
msgstr "Nuevo/a: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Nuevo {0} creado"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Nuevo {0} {1} agregado al panel {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Nuevo {0} {1} creado"
@@ -16636,7 +16633,7 @@ msgstr "Nuevo {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponibles"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "El usuario recién creado {0} no tiene ningún rol habilitado."
@@ -16763,7 +16760,7 @@ msgstr "Siguiente al hacer clic"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "No"
@@ -16904,7 +16901,7 @@ msgstr "No hay resultados"
msgid "No Results found"
msgstr "No se encontraron resultados"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "No hay Roles especificados"
@@ -16972,7 +16969,7 @@ msgstr "Ningún contacto agregado todavía."
msgid "No contacts linked to document"
msgstr "No hay contactos vinculados al documento"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "No hay datos para exportar"
@@ -17164,7 +17161,7 @@ msgstr "Copias normalizadas"
msgid "Normalized Query"
msgstr "Consulta normalizada"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "No permitido"
@@ -17220,7 +17217,7 @@ msgstr "No nulo"
msgid "Not Permitted"
msgstr "No permitido"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "No permitido leer {0}"
@@ -17230,8 +17227,8 @@ msgstr "No permitido leer {0}"
msgid "Not Published"
msgstr "No publicado"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17264,7 +17261,7 @@ msgstr "No especificado"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "No es un archivo separado por comas válido (archivo CSV)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "No es una Imagen de Usuario Válida."
@@ -17499,7 +17496,7 @@ msgstr "Notificarme si no tiene respuesta durante (en minutos)"
msgid "Notify users with a popup when they log in"
msgstr "Notificar a los usuarios con un mensaje emergente cuando se conectan"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Ahora"
@@ -17794,7 +17791,7 @@ msgstr "Con fecha de o después del"
msgid "On or Before"
msgstr "Con fecha de o antes del"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "El {0}, {1} escribió:"
@@ -17870,7 +17867,7 @@ msgstr "Sólo el administrador puede editar"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guarde."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Solo el administrador puede usar la grabadora"
@@ -18023,7 +18020,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr "Abrir en una nueva pestaña"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Abrir elemento de lista"
@@ -18078,7 +18075,7 @@ msgstr "El Operador debe ser uno de {0}"
msgid "Optimize"
msgstr "Optimizar"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Optimizando imagen..."
@@ -18269,7 +18266,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18628,11 +18625,11 @@ msgstr "Pasivo"
msgid "Password"
msgstr "Contraseña"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "Correo de Contraseña enviado"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Restablecer contraseña"
@@ -18666,7 +18663,7 @@ msgstr "Falta contraseña en la cuenta de correo"
msgid "Password not found for {0} {1} {2}"
msgstr "Contraseña no encontrada para {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Se han enviado instrucciones para restablecer la contraseña al correo electrónico de {}."
@@ -18678,7 +18675,7 @@ msgstr "Contraseña establecida"
msgid "Password size exceeded the maximum allowed size"
msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "El tamaño de la contraseña superó el tamaño máximo permitido."
@@ -19049,7 +19046,7 @@ msgstr "Por favor, duplicar este tema de la página Web para personalizarlo."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Instale la biblioteca ldap3 a través de pip para usar la funcionalidad ldap."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Por favor, establezca el gráfico"
@@ -19065,7 +19062,7 @@ msgstr "Por favor agregue un asunto a su correo electrónico"
msgid "Please add a valid comment."
msgstr "Agregue un comentario válido."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Por favor, consulte a su administrador para verificar su registro"
@@ -19097,7 +19094,7 @@ msgstr "Compruebe los valores de filtro establecidos para el gráfico del tabler
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Por favor, compruebe el valor de \"Obtener desde\" establecido para el campo {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Por favor, consultar su correo electrónico para la verificación"
@@ -19288,7 +19285,7 @@ msgstr "Por favor, seleccione Tipo de entidad primero"
msgid "Please select Minimum Password Score"
msgstr "Seleccione el valor mínimo de la contraseña"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Por favor, seleccione campos X e Y"
@@ -19346,7 +19343,7 @@ msgstr "Por favor, establece Dirección de correo electrónico"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Configure una asignación de impresora para este formato de impresión en la Configuración de la impresora"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Por favor, defina los filtros"
@@ -19374,7 +19371,7 @@ msgstr "Configure SMS antes de configurarlo como un método de autenticación, a
msgid "Please setup a message first"
msgstr "Configura un mensaje primero"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Por favor, configure la cuenta de correo saliente por defecto desde Ajustes > Cuenta de Correo"
@@ -19592,11 +19589,11 @@ msgstr "Usuario de informe preparado"
msgid "Prepared report render failed"
msgstr "Error en la representación del informe preparado"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Preparando Informe"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Anexar la plantilla al mensaje de correo electrónico"
@@ -19661,7 +19658,7 @@ msgstr "Vista previa en {0}"
msgid "Preview type"
msgstr "Tipo de vista previa"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Vista Previa:"
@@ -19732,16 +19729,16 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Impresión"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Impresión"
@@ -19811,7 +19808,7 @@ msgstr "Ayuda de formato de impresión"
msgid "Print Format Type"
msgstr "Tipo de formato de impresión"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19846,7 +19843,7 @@ msgstr "Ocultar en impresión"
msgid "Print Hide If No Value"
msgstr "Impresión Oculta si no hay Valor"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Lenguaje de impresión"
@@ -19992,7 +19989,7 @@ msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr "Proceder"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Procede de todas maneras"
@@ -20298,7 +20295,7 @@ msgstr "Informe de Consultas"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Análisis de consultas finalizado. Compruebe los índices sugeridos."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "La consulta debe ser de tipo SELECT o WITH de sólo lectura."
@@ -20495,7 +20492,7 @@ msgstr "Re:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "Re: {0}"
@@ -20571,7 +20568,7 @@ msgstr "Leído por el Destinatario en"
msgid "Read mode"
msgstr "Modo de lectura"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Lea la documentación para saber más"
@@ -20591,7 +20588,7 @@ msgstr "Tiempo real (SocketIO)"
msgid "Reason"
msgstr "Razón"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Reconstruir"
@@ -20737,12 +20734,12 @@ msgstr "Redirección"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "El servidor de caché Redis no esta funcionando. Por favor, póngase en contacto con el administrador / soporte técnico"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Rehacer"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Rehacer última acción"
@@ -20956,11 +20953,11 @@ msgid "Referrer"
msgstr "Referente"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20999,7 +20996,7 @@ msgstr "Refrescando"
msgid "Refreshing..."
msgstr "Refrescando..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Registrado pero discapacitados"
@@ -21048,7 +21045,7 @@ msgstr "Re-enlazado"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Recargar"
@@ -21079,7 +21076,7 @@ msgstr "Recordar el último valor seleccionado"
msgid "Remind At"
msgstr "Recordar el"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Recuérdemelo"
@@ -21161,7 +21158,7 @@ msgstr "Eliminado"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21189,7 +21186,7 @@ msgstr "Renderice las etiquetas a la izquierda y los valores a la derecha en est
msgid "Reopen"
msgstr "Reabrir"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Repetir"
@@ -21379,7 +21376,7 @@ msgstr "Administrador de reportes"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Nombre del reporte"
@@ -21431,7 +21428,7 @@ msgstr "El informe no tiene datos, modifique los filtros o cambie el Nombre del
msgid "Report has no numeric fields, please change the Report Name"
msgstr "El informe no tiene campos numéricos, cambie el nombre del informe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Informe iniciado, haga clic para ver el estado"
@@ -21443,7 +21440,7 @@ msgstr "Límite de reportes alcanzado"
msgid "Report timed out."
msgstr "Se agotó el tiempo de espera para reportar."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Informe actualizado con éxito"
@@ -21451,7 +21448,7 @@ msgstr "Informe actualizado con éxito"
msgid "Report was not saved (there were errors)"
msgstr "El reporte no se pudo guardar (contiene errores)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "El informe con más de 10 columnas se ve mejor en modo horizontal."
@@ -21487,7 +21484,7 @@ msgstr "Informes"
msgid "Reports & Masters"
msgstr "Informes y Maestros"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Informes ya en cola"
@@ -21926,7 +21923,7 @@ msgstr "Permisos de Rol"
msgid "Role Permissions Manager"
msgstr "Administrar permisos"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Administrar permisos"
@@ -21960,7 +21957,7 @@ msgstr "Replicación de roles"
msgid "Role and Level"
msgstr "Rol y nivel"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Se ha establecido el rol según el tipo de usuario {0}"
@@ -22353,12 +22350,12 @@ msgstr "Sábado"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22385,7 +22382,7 @@ msgstr "Guardar como"
msgid "Save Customizations"
msgstr "Guardar Personalización"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Guardar reporte"
@@ -22404,7 +22401,7 @@ msgstr "Guarde el documento."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22452,7 +22449,7 @@ msgstr "Escanee el código QR e ingrese el código resultante que se muestra."
msgid "Schedule"
msgstr "Calendario"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Programar envío el"
@@ -22761,7 +22758,7 @@ msgstr "Configuración de seguridad"
msgid "See all Activity"
msgstr "Ver todas las actividades"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Ver todos los reportes pasados."
@@ -22829,8 +22826,8 @@ msgstr "Seleccionar"
msgid "Select All"
msgstr "Seleccionar Todo"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22896,7 +22893,7 @@ msgstr "Seleccione Tipos de documentos para establecer qué Permisos de usuario
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Seleccionar campo"
@@ -22967,7 +22964,7 @@ msgid "Select Page"
msgstr "Seleccionar Página"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Seleccionar formato de impresión"
@@ -23059,13 +23056,13 @@ msgstr "Seleccionar al menos 1 registro para la impresión"
msgid "Select atleast 2 actions"
msgstr "Seleccione al menos 2 acciones"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Seleccionar elemento de la lista"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Seleccionar múltiples elementos de la lista"
@@ -23181,7 +23178,7 @@ msgstr "Enviar ahora"
msgid "Send Print as PDF"
msgstr "Enviar Impresión como 'PDF'"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Enviar confirmación de lectura"
@@ -23244,7 +23241,7 @@ msgstr "Enviar solicitudes a esta dirección de correo electrónico"
msgid "Send login link"
msgstr "Enviar enlace de inicio de sesión"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Enviarme una copia"
@@ -23406,7 +23403,7 @@ msgstr "Servidor IP"
msgid "Server Script"
msgstr "Script del servidor"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Los scripts de servidor están desactivados. Por favor, habilite los scripts de servidor desde la configuración de bench."
@@ -23445,11 +23442,11 @@ msgstr "Configuración predeterminada de sesión"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Valores predeterminados de sesión"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Valores predeterminados de sesión guardados"
@@ -23485,7 +23482,7 @@ msgstr "Establecer"
msgid "Set Banner from Image"
msgstr "Establecer banner desde imagen"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Establecer Gráfico"
@@ -23511,7 +23508,7 @@ msgstr "Establecer filtros"
msgid "Set Filters for {0}"
msgstr "Establecer filtros para {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Establecer Nivel"
@@ -23707,7 +23704,7 @@ msgstr "Configurando su Sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23753,7 +23750,7 @@ msgstr "Configuración > Usuario"
msgid "Setup > User Permissions"
msgstr "Configurar > Permisos del Usuario"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Configuración automática de correo electrónico"
@@ -23956,7 +23953,7 @@ msgstr "Mostrar selector de idioma"
msgid "Show Line Breaks after Sections"
msgstr "Mostrar saltos de línea después de las Secciones"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Mostrar enlaces"
@@ -24032,7 +24029,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Mostrar etiquetas"
@@ -24206,7 +24203,7 @@ msgstr "Barra lateral y Comentarios"
msgid "Sign Up and Confirmation"
msgstr "Registro y confirmación"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "El registro está desactivado"
@@ -25008,7 +25005,7 @@ msgstr "Sub-dominio"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Asunto"
@@ -25047,7 +25044,7 @@ msgstr "Cola de envío"
msgid "Submit"
msgstr "Validar"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Validar"
@@ -25105,7 +25102,7 @@ msgstr "Valide este documento para completar este paso."
msgid "Submit this document to confirm"
msgstr "Valide este documento para confirmar"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "¿Validar {0} documentos?"
@@ -25254,7 +25251,7 @@ msgstr "Sugerir optimizaciones"
msgid "Suggested Indexes"
msgstr "Índices sugeridos"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Nombre de usuario sugerido: {0}"
@@ -25797,7 +25794,7 @@ msgstr "Advertencias de plantilla"
msgid "Templates"
msgstr "Plantillas"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Desactivado temporalmente"
@@ -26069,11 +26066,11 @@ msgstr "El número de proyecto obtenido de Google Cloud Console en "
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "El enlace para restablecer la contraseña ha caducado"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "El enlace para restablecer la contraseña ya se ha utilizado antes o no es válido"
@@ -26150,7 +26147,7 @@ msgstr "No hay próximos eventos para usted."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "No hay {0} para este {1}, ¿Por qué no empiezas uno?"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "Ya hay {0} con los mismos filtros en la cola:"
@@ -26179,7 +26176,7 @@ msgstr "No hay nada nuevo que mostrarle en este momento."
msgid "There is some problem with the file url: {0}"
msgstr "Hay un poco de problema con la url del archivo: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "Ya hay {0} con los mismos filtros en la cola:"
@@ -26203,7 +26200,7 @@ msgstr "Hubo errores"
msgid "There were errors while creating the document. Please try again."
msgstr "Hubo errores al crear el documento. Inténtalo de nuevo."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Ha ocurrido un error al enviar el correo electrónico. Por favor, inténtelo de nuevo."
@@ -26380,7 +26377,7 @@ msgstr "Este proveedor de geolocalización aún no es compatible."
msgid "This goes above the slideshow."
msgstr "Esto va encima de la presentación de diapositivas."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Esto es un reporte predeterminado. Por favor seleccione los filtros apropiados y genere uno nuevo."
@@ -26436,7 +26433,7 @@ msgstr "Esto puede imprimirse en varias páginas."
msgid "This month"
msgstr "Este mes"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en el navegador, puede {1} este informe en su lugar."
@@ -26444,7 +26441,7 @@ msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en
msgid "This report was generated on {0}"
msgstr "Este informe fue generado el {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Este reporte fue generado {0}."
@@ -26510,7 +26507,7 @@ msgstr "Esto restablecerá este tour y lo mostrará a todos los usuarios. ¿Est
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Esto terminará el trabajo inmediatamente y podría ser peligroso, ¿está seguro? "
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Limitar"
@@ -26864,7 +26861,7 @@ msgstr "Para exportar este paso como JSON, vincúlelo en un documento de tutoria
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Para obtener el reporte actualizado, hacer clic en {0}."
@@ -26939,7 +26936,7 @@ msgstr "Alternar Vista de Cuadrícula"
msgid "Toggle Sidebar"
msgstr "Alternar Barra Lateral"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Alternar Barra Lateral"
@@ -27001,7 +26998,7 @@ msgstr "Demasiados cambios en la base de datos en una sola acción."
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el registro está desactivado. Por favor, intente volver en una hora"
@@ -27063,9 +27060,9 @@ msgstr "Parte superior derecha"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Total"
@@ -27235,7 +27232,7 @@ msgstr "Transiciones"
msgid "Translatable"
msgstr "Traducible"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27268,6 +27265,11 @@ msgstr "Traducción"
msgid "Translations"
msgstr "Traducciones"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27606,11 +27608,11 @@ msgstr "Excepción no controlada"
msgid "Unchanged"
msgstr "Sin alterar"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Deshacer"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Deshacer última acción"
@@ -27619,7 +27621,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Dejar de seguir"
@@ -27690,7 +27692,7 @@ msgstr "No leído"
msgid "Unread Notification Sent"
msgstr "Envíar una notificación al no ser leído"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Consulta SQL insegura"
@@ -27704,7 +27706,7 @@ msgstr "Deseleccionar Todo"
msgid "Unshared"
msgstr "Incompartible"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Darse de baja"
@@ -27724,7 +27726,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "No suscrito"
@@ -28133,7 +28135,7 @@ msgstr "El usuario no puede crear"
msgid "User Cannot Search"
msgstr "El usuario no puede buscar"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Usuario modificado"
@@ -28239,12 +28241,12 @@ msgstr "Permiso de Usuario"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Permisos de Usuario"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Permisos de Usuario"
@@ -28345,15 +28347,15 @@ msgstr "No existe un usuario con dirección de correo electrónico {0}"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Usuario con correo electrónico: {0} no existe en el sistema. Solicite al 'Administrador del sistema' que cree el usuario por usted."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "El usuario {0} no se puede eliminar"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "El usuario {0} no se puede deshabilitar"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "El usuario {0} no puede ser renombrado"
@@ -28374,7 +28376,7 @@ msgstr "El usuario {0} no tiene permiso para crear un espacio de trabajo."
msgid "User {0} has requested for data deletion"
msgstr "El usuario {0} ha solicitado la eliminación de datos"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "Usuario {0} suplantado como {1}"
@@ -28403,7 +28405,7 @@ msgstr "URI de Información de Usuario"
msgid "Username"
msgstr "Nombre de usuario"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Nombre de usuario {0} ya existe"
@@ -28676,7 +28678,7 @@ msgstr "Ver"
msgid "View All"
msgstr "Ver Todo"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Ver registros de auditoría"
@@ -28963,6 +28965,7 @@ msgstr "Vista Web"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29228,11 +29231,11 @@ msgstr "URL de bienvenida"
msgid "Welcome Workspace"
msgstr "Área de Trabajo de Bienvenida"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Correo electrónico de bienvenida enviado"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Bienvenido a {0}"
@@ -29586,7 +29589,7 @@ msgstr "Campos del eje Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Campo Y"
@@ -29647,7 +29650,7 @@ msgstr "Amarillo"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Si"
@@ -29722,7 +29725,7 @@ msgstr "No está permitido exportar {} doctype"
msgid "You are not allowed to print this report"
msgstr "Usted no está autorizado a imprimir este informe"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "No tiene permisos para enviar correos electrónicos relacionados con este documento"
@@ -29837,7 +29840,7 @@ msgstr "Puede seleccionar uno de los siguientes:"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Puede establecer un valor alto aquí si varios usuarios iniciarán sesión desde la misma red."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Puede intentar cambiar los filtros de su informe."
@@ -29922,7 +29925,7 @@ msgstr "Usted no tiene suficientes permisos para completar la acción"
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "No tienes permiso para acceder a {0}: {1}."
@@ -30118,7 +30121,7 @@ msgstr "Has dejado de seguir este documento"
msgid "You viewed this"
msgstr "Ya has visto esto"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Has iniciado sesión como otro usuario desde otra pestaña. Actualiza esta página para seguir usando el sistema."
@@ -30159,11 +30162,11 @@ msgstr "Su cuenta ha sido bloqueada y se reanudará después de {0} segundos"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Tu tarea de {0} {1} ha sido eliminada por {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Su navegador no admite el elemento de audio."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Su navegador no admite el elemento de vídeo."
@@ -31042,7 +31045,7 @@ msgstr "{0} No se permite cambiar {1} después del envío de {2} a {3}"
msgid "{0} Report"
msgstr "{0} Informe"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} Informes"
@@ -31213,7 +31216,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} ya ha asignado un valor por defecto para {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} ha dejado la conversación en {1} {2}"
@@ -31384,11 +31387,11 @@ msgstr "{0} está establecido"
msgid "{0} is within {1}"
msgstr "{0} está dentro de {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} elementos seleccionados"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} se hizo pasar por usted. Dieron esta razón: {1}"
@@ -31524,7 +31527,7 @@ msgstr "{0} el rol no tiene permiso sobre ningún doctype"
msgid "{0} row #{1}: "
msgstr "{0} fila #{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} guardado exitosamente"
@@ -31566,7 +31569,7 @@ msgstr "{0} envió este documento {1}"
msgid "{0} subscribers added"
msgstr "{0} suscriptores añadidos"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} para dejar de recibir correos electrónicos de este tipo"
@@ -31753,7 +31756,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} está configurado para indicar {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po
index ca2c39afbe..63b9652d35 100644
--- a/frappe/locale/fa.po
+++ b/frappe/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-19 21:23\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 روز"
msgid "1 Google Calendar Event synced."
msgstr "1 رویداد تقویم Google همگامسازی شد."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 گزارش"
@@ -178,7 +178,7 @@ msgstr "1 از 2"
#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
-msgstr "1 رکورد صادر خواهد شد"
+msgstr "1 رکورد برونبُرد خواهد شد"
#: frappe/tests/test_utils.py:711
msgid "1 second ago"
@@ -525,11 +525,6 @@ msgstr ""
msgid "Hi,"
msgstr "سلام،"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "گزارش ها و مستندات"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "هشدار: این فیلد سیستمی ایجاد شده است و ممکن است توسط یک بهروزرسانی آینده بازنویسی شود. در عوض با استفاده از {0} آن را تغییر دهید."
@@ -846,7 +841,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -912,10 +906,10 @@ msgstr "عمل {0} در {1} {2} ناموفق بود. مشاهده آن {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "اقدامات"
@@ -977,8 +971,8 @@ msgstr "لاگ فعالیت"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "افزودن"
@@ -995,7 +989,7 @@ msgstr "افزودن / بهروزرسانی"
msgid "Add A New Rule"
msgstr "افزودن یک قانون جدید"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "افزودن پیوست"
@@ -1019,7 +1013,7 @@ msgstr "افزودن حاشیه در بالا"
msgid "Add Card to Dashboard"
msgstr "افزودن کارت به داشبورد"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "افزودن نمودار به داشبورد"
@@ -1028,8 +1022,8 @@ msgid "Add Child"
msgstr "افزودن فرزند"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1090,7 +1084,7 @@ msgstr "افزودن شرکت کنندگان"
msgid "Add Query Parameters"
msgstr "افزودن پارامترهای پرسمان"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "افزودن نقش ها"
@@ -1100,7 +1094,7 @@ msgstr "افزودن ردیف"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "افزودن امضا"
@@ -1123,12 +1117,12 @@ msgstr "افزودن مشترکین"
msgid "Add Tags"
msgstr "افزودن تگ"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "افزودن تگ"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "افزودن الگو"
@@ -1235,7 +1229,7 @@ msgid "Add tab"
msgstr "افزودن تب"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "افزودن به داشبورد"
@@ -1390,11 +1384,11 @@ msgstr "مدیریت"
msgid "Administrator"
msgstr "ادمین"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "مدیر وارد شده است"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "ادمین از طریق آدرس IP {2} به {0} در {1} دسترسی پیدا کرد."
@@ -1937,7 +1931,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "قبلا ثبت شده است"
@@ -2036,7 +2030,7 @@ msgstr "اصلاحیه مجاز نیست"
msgid "Amendment naming rules updated."
msgstr "قوانین نامگذاری اصلاحیه به روز شد."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "هنگام تنظیم پیشفرضهای نشست خطایی روی داد"
@@ -2212,7 +2206,7 @@ msgstr "اعمال شد"
msgid "Apply"
msgstr "درخواست دادن"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "اعمال قانون تخصیص"
@@ -2293,7 +2287,7 @@ msgstr "بایگانی شد"
msgid "Archived Columns"
msgstr "ستون های بایگانی شده"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "آیا مطمئن هستید که میخواهید واگذاری ها را پاک کنید؟"
@@ -2325,7 +2319,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr "آیا مطمئن هستید که میخواهید تغییرات را نادیده بگیرید؟"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "آیا مطمئن هستید که میخواهید یک گزارش جدید ایجاد کنید؟"
@@ -2397,7 +2391,7 @@ msgstr "تعیین شرط"
msgid "Assign To"
msgstr "اختصاص دادن به"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "اختصاص دادن به"
@@ -2554,7 +2548,7 @@ msgstr "حداقل یک فیلد از نوع سند والد اجباری است
msgid "Attach"
msgstr "پیوست"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "پیوست چاپ سند"
@@ -3047,7 +3041,7 @@ msgstr "B9"
msgid "BCC"
msgstr "BCC"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3090,7 +3084,7 @@ msgstr "تصویر پس زمینه"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "کارهای پس زمینه"
@@ -3696,7 +3690,7 @@ msgstr "لغو شده"
msgid "CC"
msgstr "CC"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -3887,7 +3881,7 @@ msgstr "نمیتوان نام {0} را به {1} تغییر داد زیرا {0
msgid "Cancel"
msgstr "لغو"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "لغو"
@@ -3905,7 +3899,7 @@ msgstr "لغو همه"
msgid "Cancel All Documents"
msgstr "لغو تمام اسناد"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "{0} سند لغو شود؟"
@@ -4167,7 +4161,7 @@ msgstr "کارت"
msgid "Card Break"
msgstr "کارت شکستن"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "برچسب کارت"
@@ -4305,7 +4299,7 @@ msgstr "پیکربندی نمودار"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "نام نمودار"
@@ -4474,11 +4468,11 @@ msgstr "شهر/شهرک"
msgid "Clear"
msgstr "پاک کردن"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "پاک کردن و افزودن الگو"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "پاک کردن و افزودن الگو"
@@ -4486,7 +4480,7 @@ msgstr "پاک کردن و افزودن الگو"
msgid "Clear All"
msgstr "همه را پاک کن"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "پاک کردن واگذاری"
@@ -4512,7 +4506,7 @@ msgstr "پاک کردن لاگ ها پس از (بر حسب روز)"
msgid "Clear User Permissions"
msgstr "مجوزهای کاربر را پاک کنید"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "پیام ایمیل را پاک کنید و الگو را اضافه کنید"
@@ -4754,7 +4748,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "جمع شدن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "جمع کردن همه"
@@ -4809,7 +4803,7 @@ msgstr "تاشو بستگی دارد به (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5059,7 +5053,7 @@ msgstr "کامل"
msgid "Complete By"
msgstr "تکمیل توسط"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "ثبت نام کامل"
@@ -5468,7 +5462,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr "کپی خطا در کلیپ بورد"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "کپی به کلیپ بورد"
@@ -5592,7 +5586,7 @@ msgstr "بس"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5606,13 +5600,13 @@ msgstr "ایجاد و ادامه"
msgid "Create Address"
msgstr "ایجاد آدرس"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "ایجاد کارت"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "نمودار ایجاد کنید"
@@ -6076,12 +6070,12 @@ msgstr "سفارشی سازی برای {0} صادر شده به:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "شخصی سازی"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "شخصی سازی"
@@ -6725,7 +6719,7 @@ msgstr "با تاخیر"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6734,7 +6728,7 @@ msgstr "با تاخیر"
msgid "Delete"
msgstr "حذف"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "حذف"
@@ -6770,7 +6764,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "حذف تب"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "حذف و ایجاد جدید"
@@ -6812,12 +6806,12 @@ msgstr "حذف تب"
msgid "Delete this record to allow sending to this email address"
msgstr "این سابقه را حذف کنید تا امکان ارسال به این آدرس ایمیل فراهم شود"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "{0} مورد برای همیشه حذف شود؟"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} مورد برای همیشه حذف شود؟"
@@ -7225,8 +7219,8 @@ msgstr "غیرفعال کردن ثبت نام ها"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "غیرفعال"
@@ -7235,7 +7229,7 @@ msgstr "غیرفعال"
msgid "Disabled Auto Reply"
msgstr "پاسخ خودکار غیرفعال است"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7987,7 +7981,7 @@ msgstr "لینک دانلود"
msgid "Download PDF"
msgstr "دانلود PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "دانلود گزارش"
@@ -8071,7 +8065,7 @@ msgid "Due Date Based On"
msgstr "تاریخ سررسید بر اساس"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "تکرار کردن"
@@ -8186,9 +8180,9 @@ msgstr "خروج"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8200,7 +8194,7 @@ msgstr "خروج"
msgid "Edit"
msgstr "ویرایش"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "ویرایش"
@@ -8235,11 +8229,11 @@ msgstr "ویرایش بلوک سفارشی"
msgid "Edit Custom HTML"
msgstr "ویرایش HTML سفارشی"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "ویرایش DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "ویرایش DocType"
@@ -8416,7 +8410,7 @@ msgstr "انتخابگر عنصر"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8451,7 +8445,7 @@ msgstr "حساب ایمیل غیرفعال شد."
msgid "Email Account Name"
msgstr "نام حساب ایمیل"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "حساب ایمیل چندین بار اضافه شده است"
@@ -8558,7 +8552,7 @@ msgstr "صف ایمیل"
msgid "Email Queue Recipient"
msgstr "گیرنده صف ایمیل"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "فلاشینگ صف ایمیل به دلیل خرابی های زیاد متوقف شد."
@@ -8622,7 +8616,7 @@ msgstr "گزینه همگام سازی ایمیل"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "قالب ایمیل"
@@ -8654,7 +8648,7 @@ msgstr "ایمیل به سطل زباله منتقل شد"
msgid "Email is mandatory to create User Email"
msgstr "ایمیل برای ایجاد ایمیل کاربر الزامی است"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "ایمیل به {0} ارسال نشد (لغو اشتراک / غیرفعال)"
@@ -8680,7 +8674,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "ایمیل ها بی صدا هستند"
@@ -8905,8 +8899,8 @@ msgstr "ردیابی وب سایت درون برنامه ای را فعال کن
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "فعال"
@@ -9033,7 +9027,7 @@ msgstr "شناسه مشتری و Client Secret را در تنظیمات Google
msgid "Enter Code displayed in OTP App."
msgstr "کد نمایش داده شده در OTP App را وارد کنید."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "گیرنده(های) ایمیل را وارد کنید"
@@ -9347,7 +9341,7 @@ msgstr ""
msgid "Executing..."
msgstr "در حال اجرا..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "زمان اجرا: {0} ثانیه"
@@ -9373,7 +9367,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "بسط دادن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "گسترش همه"
@@ -9434,13 +9428,13 @@ msgstr "زمان انقضای صفحه تصویر کد QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "برونبُرد"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "برونبُرد"
@@ -9798,8 +9792,8 @@ msgstr "در حال واکشی اسناد جستجوی سراسری پیشف
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10369,7 +10363,7 @@ msgid "Folio"
msgstr "برگ برگ"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "دنبال کردن"
@@ -10561,7 +10555,7 @@ msgstr "برای کاربر"
msgid "For Value"
msgstr "برای مقدار"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "برای مقایسه، از >5، <10 یا =324 استفاده کنید. برای محدوده ها، از 5:10 (برای مقادیر بین 5 و 10) استفاده کنید."
@@ -10823,7 +10817,7 @@ msgstr "جمعه"
msgid "From"
msgstr "از"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "از"
@@ -10839,7 +10833,7 @@ msgstr "از تاریخ"
msgid "From Date Field"
msgstr "از فیلد تاریخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "از نوع سند"
@@ -10890,7 +10884,7 @@ msgstr "تمام عرض"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "تابع"
@@ -10968,7 +10962,7 @@ msgstr "عمومی"
msgid "Generate Keys"
msgstr "ایجاد کلیدها"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "ایجاد گزارش جدید"
@@ -10976,7 +10970,7 @@ msgstr "ایجاد گزارش جدید"
msgid "Generate Random Password"
msgstr "ایجاد گذرواژه تصادفی"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "ایجاد URL پیگیری"
@@ -11092,7 +11086,7 @@ msgstr "میانبرهای سراسری"
msgid "Global Unsubscribe"
msgstr "لغو اشتراک سراسری"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "برو"
@@ -11256,8 +11250,6 @@ msgstr "Google Contacts - مخاطب در Google Contacts {0} بهروزرس
msgid "Google Contacts Id"
msgstr "شناسه مخاطبین Google"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "درایو گوگل"
@@ -11294,6 +11286,7 @@ msgstr "خدمات Google"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11721,6 +11714,10 @@ msgstr "پنهان شده است"
msgid "Hidden Fields"
msgstr "فیلدهای پنهان"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11834,7 +11831,7 @@ msgstr "نوار کناری، منو و نظرات را پنهان کنید"
msgid "Hide Standard Menu"
msgstr "مخفی کردن منوی استاندارد"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "پنهان کردن تگها"
@@ -12390,7 +12387,7 @@ msgstr "فیلد تصویر باید از نوع Attach Image باشد"
msgid "Image link '{0}' is not valid"
msgstr "پیوند تصویر \"{0}\" معتبر نیست"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "تصویر بهینه شده است"
@@ -12438,7 +12435,7 @@ msgstr "ضمنی"
msgid "Import"
msgstr "درونبُرد"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "درونبُرد"
@@ -12666,11 +12663,15 @@ msgstr "شامل تم از برنامه ها"
msgid "Include Web View Link in Email"
msgstr "پیوند مشاهده وب را در ایمیل اضافه کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "شامل فیلترها"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "شامل تورفتگی"
@@ -12828,7 +12829,7 @@ msgstr "درج در بالا"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "درج بعد"
@@ -13019,7 +13020,7 @@ msgstr "بی اعتبار"
msgid "Invalid \"depends_on\" expression"
msgstr "عبارت \"depends_on\" نامعتبر است"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "عبارت \"depends_on\" نامعتبر تنظیم شده در فیلتر {0}"
@@ -13130,7 +13131,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr "پارامترهای نامعتبر"
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13720,8 +13721,8 @@ msgstr "کار در حال اجرا نیست"
msgid "Join video conference with {0}"
msgstr "پیوستن به کنفرانس ویدیویی با {0}"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "پرش به فیلد"
@@ -14686,7 +14687,7 @@ msgstr "فیلتر لیست"
msgid "List Settings"
msgstr "تنظیمات لیست"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "تنظیمات لیست"
@@ -14758,7 +14759,7 @@ msgstr "بارگذاری بیشتر"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "بارگذاری"
@@ -15467,7 +15468,7 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15504,7 +15505,7 @@ msgstr "پیام فرستاده شد"
msgid "Message Type"
msgstr "نوع پیام"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "پیام بریده شد"
@@ -16217,12 +16218,12 @@ msgstr "الگوی نوار ناوبری"
msgid "Navbar Template Values"
msgstr "مقادیر الگوی نوار ناوبری"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "پیمایش لیست به پایین"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "پیمایش لیست به بالا"
@@ -16354,10 +16355,6 @@ msgstr "پیام جدید از صفحه تماس وب سایت"
msgid "New Name"
msgstr "نام جدید"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "خبرنامه جدید"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "اعلان جدید"
@@ -16458,7 +16455,7 @@ msgstr "مقدار جدیدی که باید تنظیم شود"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16470,15 +16467,15 @@ msgstr "مقدار جدیدی که باید تنظیم شود"
msgid "New {0}"
msgstr "{0} جدید"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "{0} جدید ایجاد شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "{0} {1} جدید به داشبورد {2} اضافه شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "{0} {1} جدید ایجاد شد"
@@ -16490,7 +16487,7 @@ msgstr "{0} جدید: {1}"
msgid "New {} releases for the following apps are available"
msgstr "نسخههای جدید {} برای برنامههای زیر در دسترس هستند"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد."
@@ -16617,7 +16614,7 @@ msgstr "بعد روی کلیک کنید"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "خیر"
@@ -16758,7 +16755,7 @@ msgstr "هیچ نتیجه ای"
msgid "No Results found"
msgstr "نتیجه ای پیدا نشد"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "هیچ نقشی مشخص نشده است"
@@ -16826,7 +16823,7 @@ msgstr "هنوز مخاطبی اضافه نشده است."
msgid "No contacts linked to document"
msgstr "هیچ مخاطبی به سند پیوند داده نشده است"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "داده ای برای برونبُرد نیست"
@@ -16936,7 +16933,7 @@ msgstr "هیچ رکوردی برچسب گذاری نشده است."
#: frappe/public/js/frappe/data_import/data_exporter.js:225
msgid "No records will be exported"
-msgstr "هیچ رکوردی صادر نخواهد شد"
+msgstr "هیچ رکوردی برونبُرد نخواهد شد"
#: frappe/public/js/frappe/form/grid.js:66
msgid "No rows"
@@ -17018,7 +17015,7 @@ msgstr "کپی های عادی شده"
msgid "Normalized Query"
msgstr "پرسمان عادی شده"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "مجاز نیست"
@@ -17074,7 +17071,7 @@ msgstr "غیرقابل تهی"
msgid "Not Permitted"
msgstr "غیر مجاز"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "خواندن {0} مجاز نیست"
@@ -17084,8 +17081,8 @@ msgstr "خواندن {0} مجاز نیست"
msgid "Not Published"
msgstr "منتشر نشده"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17118,7 +17115,7 @@ msgstr "تنظیم نشده"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "یک مقدار جدا شده با کاما معتبر نیست (فایل CSV)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "تصویر کاربر معتبری نیست."
@@ -17353,7 +17350,7 @@ msgstr "اطلاع دادن در صورت عدم پاسخگویی (بر حسب
msgid "Notify users with a popup when they log in"
msgstr "هنگام ورود کاربران با یک پنجره بازشو به آنها اطلاع دهید"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "اکنون"
@@ -17648,7 +17645,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "در {0}، {1} نوشت:"
@@ -17724,7 +17721,7 @@ msgstr "فقط ادمین میتواند ویرایش کند"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "فقط مدیر میتواند یک گزارش استاندارد را ذخیره کند. لطفا نام را تغییر دهید و ذخیره کنید."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "فقط مدیر مجاز به استفاده از Recorder است"
@@ -17877,7 +17874,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr "باز کردن در یک تب جدید"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "مورد فهرست را باز کنید"
@@ -17932,7 +17929,7 @@ msgstr "اپراتور باید یکی از {0} باشد"
msgid "Optimize"
msgstr "بهینهسازی"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "بهینه سازی تصویر..."
@@ -18123,7 +18120,7 @@ msgstr "پچ"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18482,11 +18479,11 @@ msgstr "منفعل"
msgid "Password"
msgstr "گذرواژه"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "گذرواژه ایمیل ارسال شد"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "بازنشانی گذرواژه"
@@ -18520,7 +18517,7 @@ msgstr "گذرواژه در حساب ایمیل جا افتاده است"
msgid "Password not found for {0} {1} {2}"
msgstr "گذرواژه برای {0} {1} {2} یافت نشد"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18532,7 +18529,7 @@ msgstr "تنظیم گذرواژه"
msgid "Password size exceeded the maximum allowed size"
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است."
@@ -18903,7 +18900,7 @@ msgstr "لطفاً این تم وب سایت را برای سفارشی سازی
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "لطفاً برای استفاده از قابلیت ldap کتابخانه ldap3 را از طریق پیپ نصب کنید."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "لطفا نمودار را تنظیم کنید"
@@ -18919,7 +18916,7 @@ msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید"
msgid "Please add a valid comment."
msgstr "لطفا یک نظر معتبر اضافه کنید."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18951,7 +18948,7 @@ msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودا
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
@@ -19142,7 +19139,7 @@ msgstr "لطفا ابتدا Entity Type را انتخاب کنید"
msgid "Please select Minimum Password Score"
msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "لطفاً فیلدهای X و Y را انتخاب کنید"
@@ -19200,7 +19197,7 @@ msgstr "لطفا آدرس ایمیل را تنظیم کنید"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "لطفاً یک نگاشت چاپگر برای این قالب چاپی در تنظیمات چاپگر تنظیم کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "لطفا فیلترها را تنظیم کنید"
@@ -19228,7 +19225,7 @@ msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک ر
msgid "Please setup a message first"
msgstr "لطفا ابتدا یک پیام تنظیم کنید"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "لطفاً حساب ایمیل خروجی پیشفرض را از تنظیمات > حساب ایمیل تنظیم کنید"
@@ -19446,11 +19443,11 @@ msgstr "کاربر گزارش آماده شده"
msgid "Prepared report render failed"
msgstr "ارائه گزارش آماده انجام نشد"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "تهیه گزارش"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "الگو را برای پیام ایمیل آماده کنید"
@@ -19515,7 +19512,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "پیش نمایش:"
@@ -19586,16 +19583,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "چاپ"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "چاپ"
@@ -19665,7 +19662,7 @@ msgstr "راهنما قالب چاپ"
msgid "Print Format Type"
msgstr "نوع فرمت چاپ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19700,7 +19697,7 @@ msgstr "چاپ پنهان"
msgid "Print Hide If No Value"
msgstr "اگر مقدار نداشت در پرینت نمایش داده نشود"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "زبان چاپ"
@@ -19846,7 +19843,7 @@ msgstr "نکته پیشنهادی: برای ارسال مرجع سند،
msgid "Proceed"
msgstr "ادامه دهید"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "در هر صورت انجام شود"
@@ -20152,7 +20149,7 @@ msgstr "گزارش پرسمان"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "پرسمان باید از نوع SELECT یا فقط خواندنی WITH باشد."
@@ -20349,7 +20346,7 @@ msgstr "پاسخ:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "پاسخ: {0}"
@@ -20425,7 +20422,7 @@ msgstr "خوانده شده توسط گیرنده روشن"
msgid "Read mode"
msgstr "حالت خواندن"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "برای دانستن بیشتر مستندات را بخوانید"
@@ -20445,7 +20442,7 @@ msgstr ""
msgid "Reason"
msgstr "دلیل"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "بازسازی"
@@ -20591,12 +20588,12 @@ msgstr "تغییر مسیرها"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "سرور کش Redis اجرا نمیشود. لطفا با ادمین / پشتیبانی فنی تماس بگیرید"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "انجام دوباره"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "انجام دوباره آخرین کنش"
@@ -20810,11 +20807,11 @@ msgid "Referrer"
msgstr "ارجاع دهنده"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20853,7 +20850,7 @@ msgstr "تازه کردن"
msgid "Refreshing..."
msgstr "تازه کردن..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "ثبت شده اما غیرفعال است"
@@ -20902,7 +20899,7 @@ msgstr "دوباره پیوند داده شد"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "بارگذاری مجدد"
@@ -20933,7 +20930,7 @@ msgstr "به خاطر سپردن آخرین مقدار انتخاب شده"
msgid "Remind At"
msgstr "یادآوری در"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "به من یادآوری کن"
@@ -21015,7 +21012,7 @@ msgstr "حذف شد"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21043,7 +21040,7 @@ msgstr ""
msgid "Reopen"
msgstr "باز کردن دوباره"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "تکرار"
@@ -21233,7 +21230,7 @@ msgstr "مدیر گزارش"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "نام گزارش"
@@ -21285,7 +21282,7 @@ msgstr "گزارش داده ای ندارد، لطفاً فیلترها را ت
msgid "Report has no numeric fields, please change the Report Name"
msgstr "گزارش هیچ فیلد عددی ندارد، لطفاً نام گزارش را تغییر دهید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "گزارش شروع شد، برای مشاهده وضعیت کلیک کنید"
@@ -21297,7 +21294,7 @@ msgstr "به حد مجاز گزارش رسیده است"
msgid "Report timed out."
msgstr "زمان گزارش تمام شد."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "گزارش با موفقیت به روز شد"
@@ -21305,7 +21302,7 @@ msgstr "گزارش با موفقیت به روز شد"
msgid "Report was not saved (there were errors)"
msgstr "گزارش ذخیره نشد (خطاهایی وجود داشت)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر به نظر می رسد."
@@ -21341,7 +21338,7 @@ msgstr "گزارش ها"
msgid "Reports & Masters"
msgstr "گزارش ها و مستندات"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "گزارشها از قبل در صف هستند"
@@ -21780,7 +21777,7 @@ msgstr "مجوزهای نقش"
msgid "Role Permissions Manager"
msgstr "مدیر مجوزهای نقش"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "مدیر مجوزهای نقش"
@@ -21814,7 +21811,7 @@ msgstr ""
msgid "Role and Level"
msgstr "نقش و سطح"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "نقش بر اساس نوع کاربری {0} تنظیم شده است"
@@ -22207,12 +22204,12 @@ msgstr "شنبه"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22239,7 +22236,7 @@ msgstr "ذخیره به عنوان"
msgid "Save Customizations"
msgstr "سفارشی سازی ها را ذخیره کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "ذخیره گزارش"
@@ -22258,7 +22255,7 @@ msgstr "سند را ذخیره کنید."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22306,7 +22303,7 @@ msgstr "کد QR را اسکن کرده و کد نمایش داده شده را
msgid "Schedule"
msgstr "زمانبندی"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "زمانبندی ارسال در"
@@ -22615,7 +22612,7 @@ msgstr "تنظیمات امنیتی"
msgid "See all Activity"
msgstr "مشاهده تمام فعالیت ها"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "مشاهده تمام گزارش های گذشته"
@@ -22683,8 +22680,8 @@ msgstr "انتخاب کردن"
msgid "Select All"
msgstr "انتخاب همه"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22750,7 +22747,7 @@ msgstr "برای تعیین اینکه کدام مجوزهای کاربر برا
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "فیلد را انتخاب کنید"
@@ -22821,7 +22818,7 @@ msgid "Select Page"
msgstr "Page را انتخاب کنید"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Print Format را انتخاب کنید"
@@ -22913,13 +22910,13 @@ msgstr "حداقل 1 رکورد برای چاپ انتخاب کنید"
msgid "Select atleast 2 actions"
msgstr "حداقل 2 عمل را انتخاب کنید"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "مورد فهرست را انتخاب کنید"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "چندین مورد از فهرست را انتخاب کنید"
@@ -23035,7 +23032,7 @@ msgstr "در حال حاضر ارسال"
msgid "Send Print as PDF"
msgstr "ارسال چاپ به صورت PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "ارسال رسید خواندن"
@@ -23098,7 +23095,7 @@ msgstr "سوالات خود را به این آدرس ایمیل ارسال کن
msgid "Send login link"
msgstr "ارسال لینک ورود"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "یک کپی برای من بفرست"
@@ -23215,7 +23212,7 @@ msgstr "جداکننده"
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Sequence Id"
-msgstr "شناسه دنباله"
+msgstr "شناسه توالی"
#. Label of the naming_series_options (Text) field in DocType 'Document Naming
#. Settings'
@@ -23260,7 +23257,7 @@ msgstr "IP سرور"
msgid "Server Script"
msgstr "اسکریپت سرور"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "اسکریپت های سرور غیرفعال هستند. لطفاً اسکریپت های سرور را از پیکربندی بنچ فعال کنید."
@@ -23299,11 +23296,11 @@ msgstr "تنظیمات پیشفرض نشست"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "پیشفرضهای نشست"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "پیشفرضهای نشست ذخیره شد"
@@ -23339,7 +23336,7 @@ msgstr "تنظیم"
msgid "Set Banner from Image"
msgstr "تنظیم بنر از تصویر"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "تنظیم نمودار"
@@ -23365,7 +23362,7 @@ msgstr "فیلترها را تنظیم کنید"
msgid "Set Filters for {0}"
msgstr "تنظیم فیلترها برای {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23537,7 +23534,7 @@ msgstr "راهاندازی سیستم شما"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23583,7 +23580,7 @@ msgstr "راهاندازی > کاربر"
msgid "Setup > User Permissions"
msgstr "راهاندازی > مجوزهای کاربر"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "تنظیم ایمیل خودکار"
@@ -23786,7 +23783,7 @@ msgstr "نمایش انتخابگر زبان"
msgid "Show Line Breaks after Sections"
msgstr "نمایش خطوط شکسته بعد از بخش ها"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23862,7 +23859,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "نمایش برچسب ها"
@@ -24036,7 +24033,7 @@ msgstr "نوار کناری و نظرات"
msgid "Sign Up and Confirmation"
msgstr "ثبت نام و تایید"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "ثبت نام غیرفعال است"
@@ -24838,7 +24835,7 @@ msgstr "زیر دامنه"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "موضوع"
@@ -24877,7 +24874,7 @@ msgstr "صف ارسال"
msgid "Submit"
msgstr "ارسال"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "ارسال"
@@ -24935,7 +24932,7 @@ msgstr "برای تکمیل این مرحله این سند را ارسال کن
msgid "Submit this document to confirm"
msgstr "برای تایید این سند را ارسال کنید"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} سند ارسال شود؟"
@@ -25084,7 +25081,7 @@ msgstr "پیشنهاد بهینهسازی"
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "نام کاربری پیشنهادی: {0}"
@@ -25627,7 +25624,7 @@ msgstr "هشدارهای الگو"
msgid "Templates"
msgstr "قالب ها"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "موقتا غیر فعال می باشد"
@@ -25891,11 +25888,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "پیوند بازنشانی گذرواژه منقضی شده است"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است"
@@ -25972,7 +25969,7 @@ msgstr "هیچ رویداد پیش رویی برای شما وجود ندارد.
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "هیچ {0} برای این {1} وجود ندارد، چرا یکی را شروع نمیکنید!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:"
@@ -26001,7 +25998,7 @@ msgstr "در حال حاضر چیز جدیدی برای نشان دادن شما
msgid "There is some problem with the file url: {0}"
msgstr "آدرس فایل مشکلی دارد: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:"
@@ -26025,7 +26022,7 @@ msgstr "خطاهایی وجود داشت"
msgid "There were errors while creating the document. Please try again."
msgstr "هنگام ایجاد سند خطاهایی وجود داشت. لطفا دوباره تلاش کنید."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "هنگام ارسال ایمیل خطاهایی وجود داشت. لطفا دوباره تلاش کنید."
@@ -26198,7 +26195,7 @@ msgstr "این ارائه دهنده موقعیت جغرافیایی هنوز پ
msgid "This goes above the slideshow."
msgstr "این بالاتر از نمایش اسلاید است."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کنید و سپس گزارش جدیدی ایجاد کنید."
@@ -26254,7 +26251,7 @@ msgstr "این ممکن است در چندین صفحه چاپ شود"
msgid "This month"
msgstr "این ماه"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26262,7 +26259,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "این گزارش در {0} ایجاد شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "این گزارش در {0} ایجاد شد."
@@ -26328,7 +26325,7 @@ msgstr "با این کار این تور بازنشانی میشود و به
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr " این کار بلافاصله کار را خاتمه می دهد و ممکن است خطرناک باشد، مطمئن هستید؟"
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "گاز گرفت"
@@ -26676,7 +26673,7 @@ msgstr "برای صادر کردن این مرحله به عنوان JSON، آن
msgid "To generate password click {0}"
msgstr "برای ایجاد رمز عبور، روی {0} کلیک کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "برای دریافت گزارش به روز شده، روی {0} کلیک کنید."
@@ -26751,7 +26748,7 @@ msgstr "تغییر نمای شبکهای"
msgid "Toggle Sidebar"
msgstr "تغییر وضعیت نوار کناری"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "تغییر وضعیت نوار کناری"
@@ -26813,7 +26810,7 @@ msgstr "تغییرات بسیار زیادی در پایگاه داده در ی
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید"
@@ -26875,9 +26872,9 @@ msgstr "بالا سمت راست"
msgid "Topic"
msgstr "موضوع"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "جمع"
@@ -27047,7 +27044,7 @@ msgstr "انتقال ها"
msgid "Translatable"
msgstr "قابل ترجمه"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27080,6 +27077,11 @@ msgstr "ترجمه"
msgid "Translations"
msgstr "ترجمه ها"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27417,11 +27419,11 @@ msgstr ""
msgid "Unchanged"
msgstr "بدون تغییر"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "واگرد"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "واگرد آخرین اقدام"
@@ -27430,7 +27432,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "لغو دنبال کردن"
@@ -27501,7 +27503,7 @@ msgstr "خوانده نشده"
msgid "Unread Notification Sent"
msgstr "اعلان خوانده نشده ارسال شد"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "پرسمان ناامن SQL"
@@ -27515,7 +27517,7 @@ msgstr "همه را لغو انتخاب کنید"
msgid "Unshared"
msgstr "اشتراک گذاری نشده است"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "لغو اشتراک"
@@ -27535,7 +27537,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "لغو اشتراک شده"
@@ -27944,7 +27946,7 @@ msgstr "کاربر نمیتواند ایجاد کند"
msgid "User Cannot Search"
msgstr "کاربر نمیتواند جستجو کند"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28050,12 +28052,12 @@ msgstr "مجوز کاربر"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "مجوزهای کاربر"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "مجوزهای کاربر"
@@ -28156,15 +28158,15 @@ msgstr "کاربری با آدرس ایمیل {0} وجود ندارد"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "کاربر با ایمیل: {0} در سیستم وجود ندارد. لطفاً از «ادمین سیستم» بخواهید که کاربر را برای شما ایجاد کند."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "کاربر {0} قابل حذف نیست"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "کاربر {0} را نمیتوان غیرفعال کرد"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "کاربر {0} را نمیتوان تغییر نام داد"
@@ -28185,7 +28187,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr "کاربر {0} درخواست حذف داده ها را داده است"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "کاربر {0} جعل هویت به عنوان {1}"
@@ -28214,7 +28216,7 @@ msgstr "URI اطلاعات کاربر"
msgid "Username"
msgstr "نام کاربری"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "نام کاربری {0} از قبل وجود دارد"
@@ -28487,7 +28489,7 @@ msgstr "نما"
msgid "View All"
msgstr "مشاهده همه"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28774,6 +28776,7 @@ msgstr "نمایش وب"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29039,11 +29042,11 @@ msgstr "URL خوش آمدید"
msgid "Welcome Workspace"
msgstr "محیط کار خوش آمدید"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "ایمیل خوش آمدگویی ارسال شد"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "به {0} خوش آمدید"
@@ -29397,7 +29400,7 @@ msgstr "فیلدهای محور Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "فیلد Y"
@@ -29458,7 +29461,7 @@ msgstr "زرد"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "بله"
@@ -29533,7 +29536,7 @@ msgstr "شما مجاز به برونبُرد {} doctype نیستید"
msgid "You are not allowed to print this report"
msgstr "شما مجاز به چاپ این گزارش نیستید"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید"
@@ -29648,7 +29651,7 @@ msgstr "میتوانید یکی از موارد زیر را انتخاب کن
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "اگر چندین کاربر از یک شبکه وارد سیستم شوند، میتوانید مقدار بالایی را در اینجا تنظیم کنید."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "میتوانید فیلترهای گزارش خود را تغییر دهید."
@@ -29733,7 +29736,7 @@ msgstr "شما مجوز کافی برای تکمیل عمل را ندارید"
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "شما اجازه دسترسی به {0}: {1} را ندارید."
@@ -29929,7 +29932,7 @@ msgstr "شما این سند را لغو دنبال کردید"
msgid "You viewed this"
msgstr "شما این را مشاهده کردید"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29970,11 +29973,11 @@ msgstr "حساب شما قفل شده است و پس از {0} ثانیه از س
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "تخصیص شما در {0} {1} توسط {2} حذف شده است"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "مرورگر شما از عنصر صدا پشتیبانی نمیکند."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "مرورگر شما از عنصر ویدیو پشتیبانی نمیکند."
@@ -30853,7 +30856,7 @@ msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3}
msgid "{0} Report"
msgstr "گزارش {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} گزارش ها"
@@ -31024,7 +31027,7 @@ msgstr "{0} ساعت"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} قبلاً مقدار پیشفرض را برای {1} اختصاص داده است."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} مکالمه را در {1} {2} ترک کرده است"
@@ -31195,11 +31198,11 @@ msgstr "{0} تنظیم شده است"
msgid "{0} is within {1}"
msgstr "{0} در محدوده {1} است"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} مورد انتخاب شد"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} به عنوان شما جعل شده است. این دلیل را آوردند: {1}"
@@ -31316,7 +31319,7 @@ msgstr "{0} رکورد حذف شد"
#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr "{0} رکورد صادر خواهد شد"
+msgstr "{0} رکورد برونبُرد خواهد شد"
#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
@@ -31335,7 +31338,7 @@ msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد"
msgid "{0} row #{1}: "
msgstr "{0} ردیف #{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} با موفقیت ذخیره شد"
@@ -31377,7 +31380,7 @@ msgstr "{0} این سند را ارسال کرد {1}"
msgid "{0} subscribers added"
msgstr "{0} مشترک اضافه شد"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} دریافت ایمیل هایی از این نوع را متوقف کنید"
@@ -31564,7 +31567,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} روی حالت {2} تنظیم شده است"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} در مقابل {2}"
diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po
index f7bf5e61c1..0bd967bb70 100644
--- a/frappe/locale/fr.po
+++ b/frappe/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:15\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:49\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 jour"
msgid "1 Google Calendar Event synced."
msgstr "1 événement Google Agenda synchronisé."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -627,11 +627,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Rapports et Pages principales"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -948,7 +943,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1014,10 +1008,10 @@ msgstr "L'action {0} a échoué sur {1} {2}. Voir {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Actions"
@@ -1079,8 +1073,8 @@ msgstr "Historique d'activité"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Ajouter"
@@ -1097,7 +1091,7 @@ msgstr "Ajouter / Mettre à jour"
msgid "Add A New Rule"
msgstr "Ajouter une nouvelle règle"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Ajouter une pièce jointe"
@@ -1121,7 +1115,7 @@ msgstr "Ajouter une bordure en haut"
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Ajouter un graphique au tableau de bord"
@@ -1130,8 +1124,8 @@ msgid "Add Child"
msgstr "Ajouter une Sous-Catégorie"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1192,7 +1186,7 @@ msgstr "Ajouter des participants"
msgid "Add Query Parameters"
msgstr "Ajouter des paramètres de requête"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1202,7 +1196,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Ajouter une Signature"
@@ -1225,12 +1219,12 @@ msgstr "Ajouter des Abonnés"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1337,7 +1331,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Ajouter au tableau de bord"
@@ -1492,11 +1486,11 @@ msgstr "Administration"
msgid "Administrator"
msgstr "Administrateur"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Administrateur Connecté"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "L'administrateur a accedé à {0} sur {1} avec l'Adresse IP {2}."
@@ -2040,7 +2034,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Déjà Inscrit"
@@ -2139,7 +2133,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr "Règles de nommage mises à jour."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Une erreur s'est produite lors de la définition des paramètres de session par défaut."
@@ -2315,7 +2309,7 @@ msgstr "Appliqué sur"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Appliquer la règle d'assignation"
@@ -2396,7 +2390,7 @@ msgstr "Archivé"
msgid "Archived Columns"
msgstr "Colonnes Archivées"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2428,7 +2422,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2500,7 +2494,7 @@ msgstr "Attribuer une condition"
msgid "Assign To"
msgstr "Attribuer À"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Attribuer À"
@@ -2657,7 +2651,7 @@ msgstr ""
msgid "Attach"
msgstr "Attacher"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Joindre l'Impression de Document"
@@ -3150,7 +3144,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "Cci"
@@ -3193,7 +3187,7 @@ msgstr "Image d'arrière-plan"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Travaux en Arrière-plan"
@@ -3798,7 +3792,7 @@ msgstr "ANNULÉ"
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -3989,7 +3983,7 @@ msgstr ""
msgid "Cancel"
msgstr "Annuler"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Annuler"
@@ -4007,7 +4001,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr "Annuler tous les documents"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Annuler les documents {0}?"
@@ -4269,7 +4263,7 @@ msgstr "Carte"
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Étiquette de la carte"
@@ -4408,7 +4402,7 @@ msgstr "Configuration du graphique"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nom du graphique"
@@ -4577,11 +4571,11 @@ msgstr "Ville"
msgid "Clear"
msgstr "Nettoyer"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4589,7 +4583,7 @@ msgstr ""
msgid "Clear All"
msgstr "Tout effacer"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4615,7 +4609,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr "Effacer les autorisations utilisateur"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4857,7 +4851,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Réduire"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tout réduire"
@@ -4912,7 +4906,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5162,7 +5156,7 @@ msgstr "Terminé"
msgid "Complete By"
msgstr "Terminé par"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Terminer l'Inscription"
@@ -5573,7 +5567,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Copier vers le presse-papiers"
@@ -5697,7 +5691,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5711,13 +5705,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Créer une carte"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Créer un graphique"
@@ -6181,12 +6175,12 @@ msgstr "Personnalisations pour {0} exportées vers:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Personnaliser"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Personnaliser"
@@ -6830,7 +6824,7 @@ msgstr "Différé"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6839,7 +6833,7 @@ msgstr "Différé"
msgid "Delete"
msgstr "Supprimer"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Supprimer"
@@ -6875,7 +6869,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6917,12 +6911,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr "Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Supprimer {0} éléments de façon permanente?"
@@ -7330,8 +7324,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Desactivé"
@@ -7340,7 +7334,7 @@ msgstr "Desactivé"
msgid "Disabled Auto Reply"
msgstr "Réponse automatique désactivée"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8092,7 +8086,7 @@ msgstr "Lien de téléchargement"
msgid "Download PDF"
msgstr "Télécharger au Format PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Télécharger le rapport"
@@ -8176,7 +8170,7 @@ msgid "Due Date Based On"
msgstr "Date d'échéance basée sur"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Dupliquer"
@@ -8291,9 +8285,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8305,7 +8299,7 @@ msgstr ""
msgid "Edit"
msgstr "modifier"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "modifier"
@@ -8340,11 +8334,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr "Modifier HTML Personnalisé"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "Modifier le DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Modifier le DocType"
@@ -8521,7 +8515,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Account Name"
msgstr "Nom du Compte Email"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "Compte Email ajouté plusieurs fois"
@@ -8663,7 +8657,7 @@ msgstr "File d'Attente Email"
msgid "Email Queue Recipient"
msgstr "Destinataire de la Liste d'Attente d'Emails"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8727,7 +8721,7 @@ msgstr "Option de Synchronisation d'Email"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "Modèle d'email"
@@ -8759,7 +8753,7 @@ msgstr "L'Email a été déplacé dans la corbeille"
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Email pas envoyé à {0} (désabonné / désactivé)"
@@ -8785,7 +8779,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "Les Emails sont mis en sourdine"
@@ -9010,8 +9004,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Activé"
@@ -9138,7 +9132,7 @@ msgstr "Entrez l'ID et le secret du client dans les paramètres Google."
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Entrez Email du(des) Destinataire(s)"
@@ -9452,7 +9446,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Temps d'exécution: {0} s"
@@ -9478,7 +9472,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Développer"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Développer Tout"
@@ -9539,13 +9533,13 @@ msgstr "Heure d'expiration de l'image du QR Code"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exporter"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exporter"
@@ -9903,8 +9897,8 @@ msgstr "Récupération des documents de recherche globale par défaut."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10474,7 +10468,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Suivre"
@@ -10666,7 +10660,7 @@ msgstr "Pour l\\'Utilisateur"
msgid "For Value"
msgstr "Pour la Valeur"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)."
@@ -10928,7 +10922,7 @@ msgstr "Vendredi"
msgid "From"
msgstr "À partir de"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "À partir de"
@@ -10944,7 +10938,7 @@ msgstr "A partir du"
msgid "From Date Field"
msgstr "Champ date"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "De type de document"
@@ -10995,7 +10989,7 @@ msgstr "Pleine largeur"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Une fonction"
@@ -11073,7 +11067,7 @@ msgstr "Général"
msgid "Generate Keys"
msgstr "Générer des clés"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Générer un nouveau rapport"
@@ -11081,7 +11075,7 @@ msgstr "Générer un nouveau rapport"
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11197,7 +11191,7 @@ msgstr "Raccourcis globaux"
msgid "Global Unsubscribe"
msgstr "Se Désabonner Globalement"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Aller"
@@ -11361,8 +11355,6 @@ msgstr "Google Contacts - Impossible de mettre à jour le contact dans Google Co
msgid "Google Contacts Id"
msgstr "Identifiant Google Contacts"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11399,6 +11391,7 @@ msgstr "Services Google"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11826,6 +11819,10 @@ msgstr "Caché"
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11939,7 +11936,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr "Masquer le Menu Standard"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12495,7 +12492,7 @@ msgstr "Champ de l'image doit être du type Image Jointe"
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12543,7 +12540,7 @@ msgstr "Implicite"
msgid "Import"
msgstr "Importer"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importer"
@@ -12771,11 +12768,15 @@ msgstr "Inclure le thème des applications"
msgid "Include Web View Link in Email"
msgstr "Envoyer le lien de la vue Web du document par e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Inclure l'indentation"
@@ -12933,7 +12934,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Insérer Après"
@@ -13124,7 +13125,7 @@ msgstr "Invalide"
msgid "Invalid \"depends_on\" expression"
msgstr "Expression \"depends_on\" non valide"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Expression "depend_on" non valide définie dans le filtre {0}"
@@ -13235,7 +13236,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13825,8 +13826,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Aller au champ"
@@ -14791,7 +14792,7 @@ msgstr "Filtre de liste"
msgid "List Settings"
msgstr "Paramètres de liste"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Paramètres de liste"
@@ -14863,7 +14864,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Chargement"
@@ -15572,7 +15573,7 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15609,7 +15610,7 @@ msgstr "Message envoyé"
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Message coupé"
@@ -16322,12 +16323,12 @@ msgstr "Modèle de barre de navigation"
msgid "Navbar Template Values"
msgstr "Valeurs du modèle de barre de navigation"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Naviguer dans la liste"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Naviguer dans la liste en haut"
@@ -16459,10 +16460,6 @@ msgstr "Nouveau Message depuis la Page Contact du Site Web"
msgid "New Name"
msgstr "Nouveau Nom"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Nouvelle Newsletter"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Nouvelle notification"
@@ -16563,7 +16560,7 @@ msgstr "Nouvelle valeur à définir"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16575,15 +16572,15 @@ msgstr "Nouvelle valeur à définir"
msgid "New {0}"
msgstr "Nouveau(elle) {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Nouveau {0} créé"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Nouveau {0} {1} ajouté au tableau de bord {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Nouveau {0} {1} créé"
@@ -16595,7 +16592,7 @@ msgstr "Nouveau {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "De nouvelles {} versions pour les applications suivantes sont disponibles"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16722,7 +16719,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Non"
@@ -16863,7 +16860,7 @@ msgstr "Aucun résultat"
msgid "No Results found"
msgstr "Aucun résultat trouvs"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16931,7 +16928,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr "Aucun contact lié au document"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Aucune donnée à exporter"
@@ -17123,7 +17120,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Non Autorisé"
@@ -17179,7 +17176,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "Non Autorisé"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17189,8 +17186,8 @@ msgstr ""
msgid "Not Published"
msgstr "Non Publié"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17223,7 +17220,7 @@ msgstr "Non Défini"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Valeurs Séparées par des Virgules non valides (Fichier CSV)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Image utilisateur non valide."
@@ -17458,7 +17455,7 @@ msgstr "Notifier si aucune réponse dans (en min)"
msgid "Notify users with a popup when they log in"
msgstr "Informer les utilisateurs avec un popup quand ils se connectent"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Maintenant"
@@ -17753,7 +17750,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17829,7 +17826,7 @@ msgstr "Seul l'Administrateur peut modifier"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Seul l'Administrateur peut enregistrer un rapport standard. Merci de renommer et sauvegarder."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Seul l'administrateur est autorisé à utiliser l'enregistreur"
@@ -17982,7 +17979,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Ouvrir un élément de la liste"
@@ -18037,7 +18034,7 @@ msgstr "L'Opérateur doit être parmi {0}"
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18228,7 +18225,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18587,11 +18584,11 @@ msgstr "Passif"
msgid "Password"
msgstr "Mot de Passe"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Réinitialisation du Mot de Passe"
@@ -18625,7 +18622,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18637,7 +18634,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -19008,7 +19005,7 @@ msgstr "Veuillez Dupliquer le thème de ce site Web pour le personnaliser."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Veuillez installer la bibliothèque ldap3 via pip pour utiliser la fonctionnalité ldap."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Veuillez définir le graphique"
@@ -19024,7 +19021,7 @@ msgstr "S'il vous plaît ajouter un sujet à votre email"
msgid "Please add a valid comment."
msgstr "Veuillez ajouter un commentaire valide."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Veuillez demander à votre administrateur de vérifier votre inscription"
@@ -19056,7 +19053,7 @@ msgstr "Veuillez vérifier les valeurs de filtre définies pour le tableau de bo
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Veuillez vérifier la valeur de "Extraire depuis" définie pour le champ {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Veuillez vérifier votre email pour validation"
@@ -19247,7 +19244,7 @@ msgstr "Veuillez d'abord sélectionner le type d'entité"
msgid "Please select Minimum Password Score"
msgstr "Veuillez sélectionner le Score Minimum du Mot de Passe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19305,7 +19302,7 @@ msgstr "Veuillez définir une Adresse Email"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Veuillez définir un mappage d'imprimante pour ce format d'impression dans les paramètres de l'imprimante."
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Veuillez définir des filtres"
@@ -19333,7 +19330,7 @@ msgstr "Veuillez configurer les SMS avant de les choisir comme méthode d'authen
msgid "Please setup a message first"
msgstr "Veuillez d'abord configurer un message"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19551,11 +19548,11 @@ msgstr "Utilisateur du rapport préparé"
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Rapport de préparation"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19620,7 +19617,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19691,16 +19688,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Impression"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Impression"
@@ -19770,7 +19767,7 @@ msgstr "Aide pour le Format d'Impression"
msgid "Print Format Type"
msgstr "Type de Format d'Impression"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19805,7 +19802,7 @@ msgstr "Cacher à l'Impression"
msgid "Print Hide If No Value"
msgstr "Cacher à l’Impression si Aucune Valeur"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Langue d’Impression"
@@ -19951,7 +19948,7 @@ msgstr "ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Continuer malgré tout"
@@ -20257,7 +20254,7 @@ msgstr "Rapport de Requête"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20454,7 +20451,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20530,7 +20527,7 @@ msgstr "Lu par le destinataire sur"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20550,7 +20547,7 @@ msgstr ""
msgid "Reason"
msgstr "Raison"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Reconstruire"
@@ -20696,12 +20693,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Le serveur de cache Redis ne fonctionne pas. Veuillez contacter l'administrateur / le support technique"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Refaire l'action"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Refaire l'action précédente"
@@ -20915,11 +20912,11 @@ msgid "Referrer"
msgstr "Référent"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20958,7 +20955,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "Actualisation..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Enregistré mais Désactivé"
@@ -21007,7 +21004,7 @@ msgstr "Reconnecté"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Recharger"
@@ -21038,7 +21035,7 @@ msgstr "Se Souvenir de la Dernière Valeur Sélectionnée"
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Me le rappeler"
@@ -21120,7 +21117,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21148,7 +21145,7 @@ msgstr ""
msgid "Reopen"
msgstr "Ré-ouvrir"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Répéter"
@@ -21338,7 +21335,7 @@ msgstr "Gestionnaire de Rapports"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Nom du Rapport"
@@ -21390,7 +21387,7 @@ msgstr "Le rapport ne contient aucune donnée, veuillez modifier les filtres ou
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Le rapport n'a pas de champs numériques, veuillez changer le nom du rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21402,7 +21399,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Rapport mis à jour avec succès"
@@ -21410,7 +21407,7 @@ msgstr "Rapport mis à jour avec succès"
msgid "Report was not saved (there were errors)"
msgstr "Le Rapport n'a pas été sauvegardé (il y a eu des erreurs)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Le rapport avec plus de 10 colonnes a une meilleure apparence en mode Paysage."
@@ -21446,7 +21443,7 @@ msgstr "Rapports"
msgid "Reports & Masters"
msgstr "Ecrans principaux et Rapports"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Rapports déjà en file d'attente"
@@ -21885,7 +21882,7 @@ msgstr "Autorisations du Rôle"
msgid "Role Permissions Manager"
msgstr "Gestionnaire d’Autorisations du Rôle"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Gestionnaire d’Autorisations du Rôle"
@@ -21919,7 +21916,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Rôle et Niveau"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22312,12 +22309,12 @@ msgstr "Samedi"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22344,7 +22341,7 @@ msgstr "Enregistrer Sous"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Enregistrer le rapport"
@@ -22363,7 +22360,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22411,7 +22408,7 @@ msgstr "Veuillez scanner le QR Code et entrer le code que vous recevez."
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22720,7 +22717,7 @@ msgstr "Paramètres de Sécurité"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Voir tous les rapports passés."
@@ -22788,8 +22785,8 @@ msgstr "Sélectionner"
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22855,7 +22852,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Sélectionner un champ"
@@ -22926,7 +22923,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Sélectionner le Format d'Impression"
@@ -23018,13 +23015,13 @@ msgstr "Sélectionner au moins 1 enregistrement pour l'impression"
msgid "Select atleast 2 actions"
msgstr "Sélectionnez au moins 2 actions"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Sélectionner un élément de la liste"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Sélectionner plusieurs éléments de liste"
@@ -23140,7 +23137,7 @@ msgstr "Envoyer Maintenant"
msgid "Send Print as PDF"
msgstr "Envoyer Imprimer en PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Envoyer Accusé de Réception"
@@ -23203,7 +23200,7 @@ msgstr "Envoyer une demande à cette adresse courriel"
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "M'Envoyer Une Copie"
@@ -23365,7 +23362,7 @@ msgstr "IP serveur"
msgid "Server Script"
msgstr "Script de serveur"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23404,11 +23401,11 @@ msgstr "Paramètres de session par défaut"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Session par défaut"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Session par défaut enregistrée"
@@ -23444,7 +23441,7 @@ msgstr "Définir"
msgid "Set Banner from Image"
msgstr "Définir la Bannière depuis l'Image"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23470,7 +23467,7 @@ msgstr "Définir les filtres"
msgid "Set Filters for {0}"
msgstr "Définir des filtres pour {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23642,7 +23639,7 @@ msgstr "Configuration de votre système"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23688,7 +23685,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Configuration Auto Email"
@@ -23891,7 +23888,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr "Afficher les Sauts de Ligne après Sections"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23967,7 +23964,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Voir les étiquettes"
@@ -24141,7 +24138,7 @@ msgstr "Barre Latérale et Commentaires"
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "L'inscription est désactivée"
@@ -24943,7 +24940,7 @@ msgstr "Sous-domaine"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Sujet"
@@ -24982,7 +24979,7 @@ msgstr ""
msgid "Submit"
msgstr "Valider"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Valider"
@@ -25040,7 +25037,7 @@ msgstr "Validez ce document pour terminer cette étape."
msgid "Submit this document to confirm"
msgstr "Valider ce document pour confirmer"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Valider {0} documents ?"
@@ -25189,7 +25186,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Nom d'Utilisateur Suggérée : {0}"
@@ -25732,7 +25729,7 @@ msgstr "Avertissements de modèles"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Temporairement désactivé"
@@ -25996,11 +25993,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -26077,7 +26074,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26106,7 +26103,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr "Il y a un problème avec l'url du fichier : {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26130,7 +26127,7 @@ msgstr "Il y a eu des erreurs"
msgid "There were errors while creating the document. Please try again."
msgstr "Il y avait des erreurs lors de la création du document. Veuillez réessayer."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Il y a eu des erreurs lors de l'envoi d’emails. Veuillez essayer à nouveau."
@@ -26303,7 +26300,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "Ceci va au-dessus du diaporama."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ceci est un rapport de fond. Veuillez définir les filtres appropriés, puis en générer un nouveau."
@@ -26359,7 +26356,7 @@ msgstr "Cela peut être imprimé sur plusieurs pages"
msgid "This month"
msgstr "Ce mois-ci"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26367,7 +26364,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "Ce rapport a été généré le {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Ce rapport a été généré {0}."
@@ -26433,7 +26430,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Étranglé"
@@ -26783,7 +26780,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Pour obtenir le rapport mis à jour, cliquez sur {0}."
@@ -26858,7 +26855,7 @@ msgstr "Afficher/Cacher la vue en grille"
msgid "Toggle Sidebar"
msgstr "Afficher/Cacher la barre latérale"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Afficher/Cacher la barre latérale"
@@ -26920,7 +26917,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Trop d'utilisateurs se sont inscrits récemment, du coup l’inscription est désactivée. Veuillez essayer à nouveau dans une heure"
@@ -26982,9 +26979,9 @@ msgstr ""
msgid "Topic"
msgstr "Sujet"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27152,7 +27149,7 @@ msgstr ""
msgid "Translatable"
msgstr "Traduisible"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27185,6 +27182,11 @@ msgstr "Traduction"
msgid "Translations"
msgstr "Traductions"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27522,11 +27524,11 @@ msgstr ""
msgid "Unchanged"
msgstr "Inchangé"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Annuler l'action"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Annuler l'action précédente"
@@ -27535,7 +27537,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Se désabonner"
@@ -27606,7 +27608,7 @@ msgstr "Non Lus"
msgid "Unread Notification Sent"
msgstr "Notification Non Lue Envoyée"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27620,7 +27622,7 @@ msgstr ""
msgid "Unshared"
msgstr "Non Partagé"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Se Désinscrire"
@@ -27640,7 +27642,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Désinscrit"
@@ -28049,7 +28051,7 @@ msgstr "L'utilisateur ne peut pas Créer"
msgid "User Cannot Search"
msgstr "L'utilisateur ne peut pas Rechercher"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28155,12 +28157,12 @@ msgstr "Autorisation de l'Utilisateur"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Autorisations des Utilisateurs"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Autorisations des Utilisateurs"
@@ -28261,15 +28263,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Utilisateur {0} ne peut pas être supprimé"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Utilisateur {0} ne peut pas être désactivé"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Utilisateur {0} ne peut pas être renommé"
@@ -28290,7 +28292,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr "L'utilisateur {0} a demandé la suppression des données."
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28319,7 +28321,7 @@ msgstr ""
msgid "Username"
msgstr "Nom d'Utilisateur"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Nom d'Utilisateur {0} existe déjà"
@@ -28592,7 +28594,7 @@ msgstr ""
msgid "View All"
msgstr "Tout voir"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28879,6 +28881,7 @@ msgstr "Vue Web"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29144,11 +29147,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Email de bienvenue envoyé"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Bienvenue sur {0}"
@@ -29502,7 +29505,7 @@ msgstr "Champs de l'Axe Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Champ Y"
@@ -29563,7 +29566,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Oui"
@@ -29638,7 +29641,7 @@ msgstr "Vous n'êtes pas autorisé à exporter {} doctype"
msgid "You are not allowed to print this report"
msgstr "Vous n'êtes pas autorisé à imprimer ce rapport"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Vous n'êtes pas autorisé à envoyer un email en relation avec ce document"
@@ -29753,7 +29756,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Vous pouvez essayer de modifier les filtres de votre rapport."
@@ -29838,7 +29841,7 @@ msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'a
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -30034,7 +30037,7 @@ msgstr "Vous avez non suivi ce document"
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30075,11 +30078,11 @@ msgstr "Votre compte a été verrouillé et reprendra après {0} secondes"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Votre devoir sur {0} {1} a été supprimé par {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30958,7 +30961,7 @@ msgstr ""
msgid "{0} Report"
msgstr "Rapport {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31129,7 +31132,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr "{0} a déjà attribué la valeur par défaut à {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} a quitté la conversation dans {1} {2}"
@@ -31300,11 +31303,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} articles sélectionnés"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31440,7 +31443,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} enregistré avec succès"
@@ -31482,7 +31485,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr "{0} abonnés ajoutés"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} pour arrêter de recevoir des emails de ce type"
@@ -31669,7 +31672,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} est passé au statut {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} contre {2}"
diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po
index 4d9023b565..c2b6fa5778 100644
--- a/frappe/locale/hr.po
+++ b/frappe/locale/hr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 Dan"
msgid "1 Google Calendar Event synced."
msgstr "Sinkroniziran je 1 događaj Google Kalendara."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 Izvješće"
@@ -708,11 +708,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Zdravo,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Izvješća & Pristup"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Upozorenje: Ovo polje generira sustav i može biti prebrisano budućim ažuriranjem. Promijenite ga koristeći {0} umjesto toga."
@@ -1031,7 +1026,6 @@ msgstr "Točan broj nije moguće preuzeti, kliknite ovdje za pregled svih dokume
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1097,10 +1091,10 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Radnje"
@@ -1162,8 +1156,8 @@ msgstr "Zapisnik Aktivnosti"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
@@ -1180,7 +1174,7 @@ msgstr "Dodaj / Ažuriraj"
msgid "Add A New Rule"
msgstr "Dodaj Novo Pravilo"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dodaj Prilog"
@@ -1204,7 +1198,7 @@ msgstr "Dodaj Obrub na Vrh"
msgid "Add Card to Dashboard"
msgstr "Dodaj Karticu na Nadzornu Ploču"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Dodaj Grafikon na Nadzornu Ploču"
@@ -1213,8 +1207,8 @@ msgid "Add Child"
msgstr "Dodaj Podređeni"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1275,7 +1269,7 @@ msgstr "Dodajte Sudionike"
msgid "Add Query Parameters"
msgstr "Dodaj Parametre Upita"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Dodaj Uloge"
@@ -1285,7 +1279,7 @@ msgstr "Dodaj Red"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Dodaj Potpis"
@@ -1308,12 +1302,12 @@ msgstr "Dodaj Pretplatnike"
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Dodaj Predložak"
@@ -1420,7 +1414,7 @@ msgid "Add tab"
msgstr "Dodaj karticu"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Dodaj na Nadzornu Ploču"
@@ -1575,11 +1569,11 @@ msgstr "Administracija"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Administrator je prijavljen"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}."
@@ -2123,7 +2117,7 @@ msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na
msgid "Allows skipping authorization if a user has active tokens."
msgstr "Omogućuje preskakanje autorizacije ako korisnik ima aktivne tokene."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Već Registrovan"
@@ -2222,7 +2216,7 @@ msgstr "Izmjena nije Dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila Izmjene Imenovanje ažurirana"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije"
@@ -2398,7 +2392,7 @@ msgstr "Primijenjeno na"
msgid "Apply"
msgstr "Primjeni"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Primijeni Pravilo Dodjele"
@@ -2479,7 +2473,7 @@ msgstr "Arhivirano"
msgid "Archived Columns"
msgstr "Arhivirane Kolone"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "Jeste li sigurni da želite izbrisati zadatke?"
@@ -2511,7 +2505,7 @@ msgstr "Jeste li sigurni da želite izbrisati karticu? Svi odjeljci zajedno s po
msgid "Are you sure you want to discard the changes?"
msgstr "Jeste li sigurni da želite odbaciti promjene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "Jeste li sigurni da želite generisati novi izvještaj?"
@@ -2583,7 +2577,7 @@ msgstr "Dodijeli Uslov"
msgid "Assign To"
msgstr "Dodijeli"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodijeli"
@@ -2740,7 +2734,7 @@ msgstr "Barem jedno polje vrste nadređenog dokumenta je obavezno"
msgid "Attach"
msgstr "Priloži"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Priloži Ispis Dokumenta"
@@ -3233,7 +3227,7 @@ msgstr "B9"
msgid "BCC"
msgstr "BCC"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3276,7 +3270,7 @@ msgstr "Pozadinska Slika"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Poslovi u Pozadini"
@@ -3881,7 +3875,7 @@ msgstr "OTKAZANO"
msgid "CC"
msgstr "CC"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -4072,7 +4066,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji."
msgid "Cancel"
msgstr "Otkaži"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Otkaži"
@@ -4090,7 +4084,7 @@ msgstr "Otkaži"
msgid "Cancel All Documents"
msgstr "Otkaži Sve Dokumente"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Otkaži {0} dokumenta?"
@@ -4352,7 +4346,7 @@ msgstr "Numerička Kartica"
msgid "Card Break"
msgstr "Prijelom Kartice"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Oznaka Kartice"
@@ -4491,7 +4485,7 @@ msgstr "Konfiguracija Grafikona"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Naziv Grafikona"
@@ -4660,11 +4654,11 @@ msgstr "Grad/Mjesto"
msgid "Clear"
msgstr "Očisti"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Očisti & Dodaj Šablon"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Očisti & Dodaj Šablon"
@@ -4672,7 +4666,7 @@ msgstr "Očisti & Dodaj Šablon"
msgid "Clear All"
msgstr "Obriši Sve"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Obriši Dodjelu"
@@ -4698,7 +4692,7 @@ msgstr "Očisti Zapisnike Nakon (dana)"
msgid "Clear User Permissions"
msgstr "Obriši Korisničke Dozvole"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "Obrišite poruku e-pošte i dodajte šablon"
@@ -4940,7 +4934,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sklopi Sve"
@@ -4995,7 +4989,7 @@ msgstr "Sklopivo Zavisi Od (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5245,7 +5239,7 @@ msgstr "Završeno"
msgid "Complete By"
msgstr "Završeno Do"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Završi Registraciju"
@@ -5656,7 +5650,7 @@ msgstr "Kopiraj ugrađen kod"
msgid "Copy error to clipboard"
msgstr "Greška pri kopiranju u međuspremnik"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Kopiraj u Međuspremnik"
@@ -5780,7 +5774,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5794,13 +5788,13 @@ msgstr "Kreiraj & Nastavi"
msgid "Create Address"
msgstr "Kreiraj Adresu"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Kreiraj Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Kreiraj Grafikon"
@@ -6264,12 +6258,12 @@ msgstr "Prilagođavanja za {0} eksportirana u:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Prilagodi"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Prilagodi"
@@ -6913,7 +6907,7 @@ msgstr "Odgođeno"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6922,7 +6916,7 @@ msgstr "Odgođeno"
msgid "Delete"
msgstr "Izbriši"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Izbriši"
@@ -6958,7 +6952,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Izbriši Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Izbriši i Generiši Novi"
@@ -7000,12 +6994,12 @@ msgstr "Izbriši karticu"
msgid "Delete this record to allow sending to this email address"
msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Trajno izbriši stavku {0}?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Trajno izbriši {0} stavke?"
@@ -7413,8 +7407,8 @@ msgstr "Onemogući Prijave"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Onemogućeno"
@@ -7423,7 +7417,7 @@ msgstr "Onemogućeno"
msgid "Disabled Auto Reply"
msgstr "Automatski Odgovor Onemogućen"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8178,7 +8172,7 @@ msgstr "Link Preuzimanja"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Preuzmi izvještaj"
@@ -8262,7 +8256,7 @@ msgid "Due Date Based On"
msgstr "Krajnji Rok na osnovu"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Kopiraj"
@@ -8377,9 +8371,9 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8391,7 +8385,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8426,11 +8420,11 @@ msgstr "Uredi Prilagođeni Blok"
msgid "Edit Custom HTML"
msgstr "Uredi Prilagođeni HTML"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "Uredi DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Uredi DocType"
@@ -8607,7 +8601,7 @@ msgstr "Birač Elementa"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8642,7 +8636,7 @@ msgstr "Račun e-pošte je onemogućen."
msgid "Email Account Name"
msgstr "Ime Računa e-pošte"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "Račun e-pošte je dodan više puta"
@@ -8749,7 +8743,7 @@ msgstr "Red Čekanja e-pošte"
msgid "Email Queue Recipient"
msgstr "Primatelj e-pošte Reda Čekanja"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "Brisanje Reda Čekanja e-pošte prekinuto je zbog previše grešaka."
@@ -8813,7 +8807,7 @@ msgstr "Opcija Sinhronizacije e-pošte"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "Šablon e-pošte"
@@ -8845,7 +8839,7 @@ msgstr "E-pošta je premještena u smeće"
msgid "Email is mandatory to create User Email"
msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "E-pošta nije poslana na {0} (otkazana / onemogućena)"
@@ -8871,7 +8865,7 @@ msgstr "E-pošta Povučena"
msgid "Emails are already being pulled from this account."
msgstr "E-pošta se već povlači s ovog računa."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "E-pošta je prigušena"
@@ -9097,8 +9091,8 @@ msgstr "Omogućite praćenje web stranice u aplikaciji"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Omogućeno"
@@ -9225,7 +9219,7 @@ msgstr "Unesi Id klijenta i Tajnu klijenta u Google Postavke."
msgid "Enter Code displayed in OTP App."
msgstr "Unesi kod prikazan u OTP aplikaciji."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Unesi Primaoca(e) e-pošte"
@@ -9539,7 +9533,7 @@ msgstr "Izvršava se Kod"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Vrijeme izvršenja: {0} sek"
@@ -9565,7 +9559,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Rasklopi Sve"
@@ -9626,13 +9620,13 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Izvezi"
@@ -9990,8 +9984,8 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10561,7 +10555,7 @@ msgid "Folio"
msgstr "Folio"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Prati"
@@ -10754,7 +10748,7 @@ msgstr "Za Korisnika"
msgid "For Value"
msgstr "Za Vrijednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
@@ -11016,7 +11010,7 @@ msgstr "Petak"
msgid "From"
msgstr "Od"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Od"
@@ -11032,7 +11026,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -11083,7 +11077,7 @@ msgstr "Puna Širina"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkcija"
@@ -11161,7 +11155,7 @@ msgstr "Općenito"
msgid "Generate Keys"
msgstr "Generiši Ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Generiši Novi Izvještaj"
@@ -11169,7 +11163,7 @@ msgstr "Generiši Novi Izvještaj"
msgid "Generate Random Password"
msgstr "Generiši Nasumičnu Lozinku"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11285,7 +11279,7 @@ msgstr "Globalne Prečice"
msgid "Global Unsubscribe"
msgstr "Globalno Otkazivanje Pretplate"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Idi"
@@ -11449,8 +11443,6 @@ msgstr "Google Kontakti - Nije moguće ažurirati kontakt u Google Kontaktima {0
msgid "Google Contacts Id"
msgstr "Id Google Kontakata"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Disk"
@@ -11487,6 +11479,7 @@ msgstr "Google Servisi"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11914,6 +11907,10 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena Polja"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr "Skriveni stupci uključuju: {0}"
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12027,7 +12024,7 @@ msgstr "Sakrij Bočnu Traku, Meni i Komentare"
msgid "Hide Standard Menu"
msgstr "Sakrij Standardni Meni"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Sakrij Oznake"
@@ -12583,7 +12580,7 @@ msgstr "Polje za sliku mora biti tipa Priloži Sliku"
msgid "Image link '{0}' is not valid"
msgstr "Veza slike '{0}' nije važeća"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Slika optimizovana"
@@ -12631,7 +12628,7 @@ msgstr "Implicitno"
msgid "Import"
msgstr "Uvezi"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Uvezi"
@@ -12859,11 +12856,15 @@ msgstr "Uključite Teme iz Aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi Web Pregled vezu u e-poštu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Uključi Filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr "Uključi skrivene stupce"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Uključi Uvlačenje"
@@ -13021,7 +13022,7 @@ msgstr "Umetni Iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Umetni Poslije"
@@ -13212,7 +13213,7 @@ msgstr "Nevažeći"
msgid "Invalid \"depends_on\" expression"
msgstr "Nevažeći izraz \"depends_on\""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}"
@@ -13323,7 +13324,7 @@ msgstr "Nevažeće Nadjačavanje"
msgid "Invalid Parameters."
msgstr "Nevažeći Parametri."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13913,8 +13914,8 @@ msgstr "Posao se ne izvodi."
msgid "Join video conference with {0}"
msgstr "Pridruži se video konferenciji sa {0}"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Skoči na polje"
@@ -14879,7 +14880,7 @@ msgstr "Filter Liste"
msgid "List Settings"
msgstr "Postavke Liste"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Postavke Liste"
@@ -14951,7 +14952,7 @@ msgstr "Učitaj više"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Učitava se"
@@ -15660,7 +15661,7 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15697,7 +15698,7 @@ msgstr "Poruka Poslata"
msgid "Message Type"
msgstr "Tip Poruke"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Poruka je isječena"
@@ -16412,12 +16413,12 @@ msgstr "Šablon Navigacijske Trake"
msgid "Navbar Template Values"
msgstr "Vrijednosti Šablona Navigacijske Trake"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Kreći se po listi prema dolje"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Kreći se po listi prema gore"
@@ -16549,10 +16550,6 @@ msgstr "Nova Pruka sa Kontaktne Web Stranice"
msgid "New Name"
msgstr "Novo Ime"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Novi Bilten"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Novo Obavještenje"
@@ -16655,7 +16652,7 @@ msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16667,15 +16664,15 @@ msgstr "Nova vrijednost koju treba postaviti"
msgid "New {0}"
msgstr "Novi {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Novi {0} Kreiran"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Novi {0} {1} kreiran"
@@ -16687,7 +16684,7 @@ msgstr "Novi {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
@@ -16814,7 +16811,7 @@ msgstr "Dalje na klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16955,7 +16952,7 @@ msgstr "Nema Rezultata"
msgid "No Results found"
msgstr "Nema Rezultata"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "Nisu Navedene Uloge"
@@ -17023,7 +17020,7 @@ msgstr "Još nema dodanih kontakata."
msgid "No contacts linked to document"
msgstr "Nema kontakata povezanih s dokumentom"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Nema podataka za izvoz"
@@ -17215,7 +17212,7 @@ msgstr "Normalizovane Kopije"
msgid "Normalized Query"
msgstr "Normalizovani Upit"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Nije Dozvoljeno"
@@ -17271,7 +17268,7 @@ msgstr "Nemože se Nulirati"
msgid "Not Permitted"
msgstr "Nije Dozvoljeno"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "Nije Dozvoljeno čitati {0}"
@@ -17281,8 +17278,8 @@ msgstr "Nije Dozvoljeno čitati {0}"
msgid "Not Published"
msgstr "Nije Objavljeno"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17315,7 +17312,7 @@ msgstr "Nije Postavljeno"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Nije važeća Korisnička slika."
@@ -17550,7 +17547,7 @@ msgstr "Obavijesti ako nema odgovora za (u minutama)"
msgid "Notify users with a popup when they log in"
msgstr "Obavijestite korisnike skočnim prozorom kada se prijave"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Sad"
@@ -17845,7 +17842,7 @@ msgstr "Na ili Poslije"
msgid "On or Before"
msgstr "Na ili Prije"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "{0}, {1} je napisao:"
@@ -17921,7 +17918,7 @@ msgstr "Samo Administrator može uređivati"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Samo Administrator može spremiti standardni izvještaj. Preimenuj i spremi."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Samo Administrator može koristiti Snimač"
@@ -18074,7 +18071,7 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorite stavku liste"
@@ -18129,7 +18126,7 @@ msgstr "Operator mora biti jedan od {0}"
msgid "Optimize"
msgstr "Optimiziraj"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Optimiziranje slike u toku..."
@@ -18320,7 +18317,7 @@ msgstr "ZAKRPA"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18679,11 +18676,11 @@ msgstr "Pasivno"
msgid "Password"
msgstr "Lozinka"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "E-pošta s lozinkom poslana"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Poništavanje Lozinke"
@@ -18717,7 +18714,7 @@ msgstr "Nedostaje Lozinka za Račun e-pošte"
msgid "Password not found for {0} {1} {2}"
msgstr "Lozinka nije pronađena za {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
@@ -18729,7 +18726,7 @@ msgstr "Lozinka postavljena"
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
@@ -19100,7 +19097,7 @@ msgstr "Kopiraj ovu Temu Web Stranice kako biste je prilagodili."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcionalnost."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Postavi Grafikon"
@@ -19116,7 +19113,7 @@ msgstr "Dodaj predmet e-pošti"
msgid "Please add a valid comment."
msgstr "Dodaj relevantan komentar."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Zamoli administratora da potvrdi vašu registraciju"
@@ -19148,7 +19145,7 @@ msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Provjeri e-poštu za potvrdu"
@@ -19339,7 +19336,7 @@ msgstr "Odaberi Tip Entiteta"
msgid "Please select Minimum Password Score"
msgstr "Odaberi Minimalnu Vrijednost Lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
@@ -19397,7 +19394,7 @@ msgstr "Postavi adresu e-pošte"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Postavi filtere"
@@ -19425,7 +19422,7 @@ msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičn
msgid "Please setup a message first"
msgstr "Postavi Poruku"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Podesi standard odlazni račun e-pošte iz Podešavanja > Račun e-pošte"
@@ -19643,11 +19640,11 @@ msgstr "Korisnik Pripremljenog Izvještaja"
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Priprema Izvještaja"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Priloži šablon poruci e-pošte"
@@ -19712,7 +19709,7 @@ msgstr "Pregled {0}"
msgid "Preview type"
msgstr "Pregled Tip"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Pregled:"
@@ -19783,16 +19780,16 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Ispiši"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Ispiši"
@@ -19862,7 +19859,7 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr "Format Ispisa nije pronađen"
@@ -19897,7 +19894,7 @@ msgstr "Sakrij"
msgid "Print Hide If No Value"
msgstr "Sakrij ispis ako nema vrijednost"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Jezik Ispisa"
@@ -20043,7 +20040,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Svejedno Nastavi"
@@ -20349,7 +20346,7 @@ msgstr "Izvještaj Upita"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analiza Upita završena. Provjeri predložene indekse."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
@@ -20546,7 +20543,7 @@ msgstr "Od:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "Od: {0}"
@@ -20622,7 +20619,7 @@ msgstr "Čitanje Primatelja Omogućeno"
msgid "Read mode"
msgstr "Način Čitanja"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Pročitaj dokumentaciju da biste saznali više"
@@ -20642,7 +20639,7 @@ msgstr "Realno Vrijeme (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Obnovi"
@@ -20788,12 +20785,12 @@ msgstr "Preusmjeravanja"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis server ne radi. Kontaktiraj Administratora/Tehničku podršku"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Ponovi"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Ponovi posljednju radnju"
@@ -21007,11 +21004,11 @@ msgid "Referrer"
msgstr "Preporučitelj"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21050,7 +21047,7 @@ msgstr "Osvježava se"
msgid "Refreshing..."
msgstr "Osvježavanje u toku..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Registrovan, ali onemogućen"
@@ -21099,7 +21096,7 @@ msgstr "Ponovno povezano"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Ponovo Učitaj"
@@ -21130,7 +21127,7 @@ msgstr "Zapamti Posljednju Odabranu Vrijednost"
msgid "Remind At"
msgstr "Podsjeti"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Podsjeti Me"
@@ -21212,7 +21209,7 @@ msgstr "Uklonjeno"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21240,7 +21237,7 @@ msgstr "Prikaži oznake lijevo i vrijednosti desno u ovom odjeljku"
msgid "Reopen"
msgstr "Ponovo otvori"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Ponovi"
@@ -21430,7 +21427,7 @@ msgstr "Upravitelj izvještaja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Naziv Izvještaja"
@@ -21482,7 +21479,7 @@ msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvj
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
@@ -21494,7 +21491,7 @@ msgstr "Granica Izvještaja Dostignuta"
msgid "Report timed out."
msgstr "Izvještaj je istekao."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Izvještaj je uspješno ažuriran"
@@ -21502,7 +21499,7 @@ msgstr "Izvještaj je uspješno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izvještaj nije spremljen (bilo je grešaka)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada."
@@ -21538,7 +21535,7 @@ msgstr "Izvještaji"
msgid "Reports & Masters"
msgstr "Izvještaji & Masters"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Izvještaji su već u redu čekanja"
@@ -21977,7 +21974,7 @@ msgstr "Dozvole Uloge"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
@@ -22011,7 +22008,7 @@ msgstr "Replikacija Uloge"
msgid "Role and Level"
msgstr "Uloga i Nivo"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema tipu korisnika {0}"
@@ -22404,12 +22401,12 @@ msgstr "Subota"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22436,7 +22433,7 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Spremi Izvještaj"
@@ -22455,7 +22452,7 @@ msgstr "Spremi dokument."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22503,7 +22500,7 @@ msgstr "Skenirajte QR Kod i unesi prikazani rezultirajući kod."
msgid "Schedule"
msgstr "Raspored"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Raspored Slanja"
@@ -22812,7 +22809,7 @@ msgstr "Sigurnosne Postavke"
msgid "See all Activity"
msgstr "Pogledaj Sve Aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izvještaje."
@@ -22880,8 +22877,8 @@ msgstr "Odaberi"
msgid "Select All"
msgstr "Odaberi sve"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22947,7 +22944,7 @@ msgstr "Odaberi Tipove Dokumenata da postavite koje se korisničke dozvole koris
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Odaberi Polje"
@@ -23018,7 +23015,7 @@ msgid "Select Page"
msgstr "Odaberi Stranicu"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Odaberi Ispis Format"
@@ -23110,13 +23107,13 @@ msgstr "Odaberi najmanje jedan zapis za ispis"
msgid "Select atleast 2 actions"
msgstr "Odaberi najmanje dvije radnje"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Odaberi Artikal Liste"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Odaberi artikle više listi"
@@ -23232,7 +23229,7 @@ msgstr "Pošalji Sad"
msgid "Send Print as PDF"
msgstr "Pošalji Ispis kao PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Pošalji Potvrdu o Čitanju"
@@ -23295,7 +23292,7 @@ msgstr "Pošaljite upite na ovu adresu e-pošte"
msgid "Send login link"
msgstr "Pošalji Vezu Prijave"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Pošalji Mi Kopiju"
@@ -23457,7 +23454,7 @@ msgstr "IP Servera"
msgid "Server Script"
msgstr "Server Skripta"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije."
@@ -23496,11 +23493,11 @@ msgstr "Standard Postavke Sesije"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Standard Sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
@@ -23536,7 +23533,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi baner sa slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Potavi grafikon"
@@ -23562,7 +23559,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -23758,7 +23755,7 @@ msgstr "Postavljanje vašeg sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23804,7 +23801,7 @@ msgstr "Postavljanje> Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -24007,7 +24004,7 @@ msgstr "Prikaži Birač Jezika"
msgid "Show Line Breaks after Sections"
msgstr "Prikaži Prijelome Reda nakon Sekcije"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Prikaži Veze"
@@ -24083,7 +24080,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Prikaži ključ za društvenu prijavu kao autorizacijski poslužitelj"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Prikaži Oznake"
@@ -24257,7 +24254,7 @@ msgstr "Bočna Traka i Komentari"
msgid "Sign Up and Confirmation"
msgstr "Prijava i Potvrda"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Prijava je onemogućena"
@@ -25059,7 +25056,7 @@ msgstr "Poddomena"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Predmet"
@@ -25098,7 +25095,7 @@ msgstr "Red Podnošenja"
msgid "Submit"
msgstr "Rezerviši"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Rezerviši"
@@ -25156,7 +25153,7 @@ msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
msgid "Submit this document to confirm"
msgstr "Pošalji ovaj dokument da potvrdite"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Pošalji {0} dokumenata?"
@@ -25305,7 +25302,7 @@ msgstr "Predloži Optimizacije"
msgid "Suggested Indexes"
msgstr "Predloženi Indeksi"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Predloženo Korisničko Ime: {0}"
@@ -25848,7 +25845,7 @@ msgstr "Šablon Upozorenja"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Privremeno Onemogućeno"
@@ -26120,11 +26117,11 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod "
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "Veza za poništavanje lozinke je istekla"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
@@ -26201,7 +26198,7 @@ msgstr "Nema predstojećih događaja za vas."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "U redu čekanja već postoji {0} s istim filterima:"
@@ -26230,7 +26227,7 @@ msgstr "Trenutno nema ništa novo za pokazati."
msgid "There is some problem with the file url: {0}"
msgstr "Postoji neki problem sa urlom datoteke: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "Postoji {0} s istim filterima već u redu čekanja:"
@@ -26254,7 +26251,7 @@ msgstr "Bilo je grešaka"
msgid "There were errors while creating the document. Please try again."
msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo."
@@ -26431,7 +26428,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo ide iznad projekcije slajdova."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
@@ -26487,7 +26484,7 @@ msgstr "Ovo se može ispisati na više stranica"
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
@@ -26495,7 +26492,7 @@ msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživa
msgid "This report was generated on {0}"
msgstr "Ovaj izvještaj je generisan {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Ovaj izvještaj je generisan {0}."
@@ -26561,7 +26558,7 @@ msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jes
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? "
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Prigušeno"
@@ -26915,7 +26912,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok
msgid "To generate password click {0}"
msgstr "Za generiranje lozinke kliknite {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}."
@@ -26990,7 +26987,7 @@ msgstr "Uključi Prikaz Mreže"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
@@ -27052,7 +27049,7 @@ msgstr "Previše promjena u bazi podataka u jednoj akciji."
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Previše pozadinskih poslova u čekanju ({0}). Pokušaj ponovno nakon nekog vremena."
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena"
@@ -27114,9 +27111,9 @@ msgstr "Vrh Desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Ukupno"
@@ -27286,7 +27283,7 @@ msgstr "Prelazi"
msgid "Translatable"
msgstr "Prevodivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27319,6 +27316,11 @@ msgstr "Prevod"
msgid "Translations"
msgstr "Prevodi"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr "Prevoditelj"
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27657,11 +27659,11 @@ msgstr "Neuhvaćena Iznimka"
msgid "Unchanged"
msgstr "Nepromijenjeno"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Poništi"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
@@ -27670,7 +27672,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr "Neizbjegnuti navodnici u nizu: {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Prestani Pratiti"
@@ -27743,7 +27745,7 @@ msgstr "Nepročitano"
msgid "Unread Notification Sent"
msgstr "Nepročitana Obavijest Poslana"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
@@ -27757,7 +27759,7 @@ msgstr "Poništi Odabir Svih"
msgid "Unshared"
msgstr "Nedijeljeno"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Otkaži Pretplatu"
@@ -27777,7 +27779,7 @@ msgstr "Parametri Otkazivanja"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Otkazano"
@@ -28186,7 +28188,7 @@ msgstr "Korisnik Nemože Kreirati"
msgid "User Cannot Search"
msgstr "Korisnik Nemože Pretraživati"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Korisnik Promijenjen"
@@ -28292,12 +28294,12 @@ msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke Dozvole"
@@ -28398,15 +28400,15 @@ msgstr "Korisnik sa adresom e-pošte {0} ne postoji"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Korisnik sa e-poštom: {0} ne postoji u sistemu. Zamoli 'Administratora Sistema' da kreira korisnika za vas."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} se ne može izbrisati"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} se ne može onemogućiti"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} se ne može preimenovati"
@@ -28427,7 +28429,7 @@ msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora."
msgid "User {0} has requested for data deletion"
msgstr "Korisnik {0} je zatražio brisanje podataka"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} predstavljen kao {1}"
@@ -28456,7 +28458,7 @@ msgstr "URI informacija Korisnika"
msgid "Username"
msgstr "Korisničko Ime"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Korisničko Ime {0} već postoji"
@@ -28729,7 +28731,7 @@ msgstr "Prikaz"
msgid "View All"
msgstr "Prikaži Sve"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Prikaži Trag"
@@ -29016,6 +29018,7 @@ msgstr "Web Prikaz"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29281,11 +29284,11 @@ msgstr "URL Dobrodošlice"
msgid "Welcome Workspace"
msgstr "Početni Radni Prostor"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "E-pošta Dobrodošlice poslana"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Dobrodošli u {0}"
@@ -29639,7 +29642,7 @@ msgstr "Polja Ose Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y Polje"
@@ -29700,7 +29703,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29775,7 +29778,7 @@ msgstr "Nije vam dozvoljeno da izvezete {} doctype"
msgid "You are not allowed to print this report"
msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom"
@@ -29890,7 +29893,7 @@ msgstr "Možete odabrati jedan od sljedećih,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati promijeniti filtere vašeg izvještaja."
@@ -29975,7 +29978,7 @@ msgstr "Nemate dovoljno dozvola da dovršite radnju"
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dopuštenje za pristup polju: {0}"
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -30171,7 +30174,7 @@ msgstr "Prestali ste pratiti ovaj dokument"
msgid "You viewed this"
msgstr "Prikazali ste ovo"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem."
@@ -30212,11 +30215,11 @@ msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Vašu dodjelu {0} {1} je uklonio {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Vaš pretraživač ne podržava audio element."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Vaš pretraživač ne podržava video element."
@@ -31095,7 +31098,7 @@ msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
msgid "{0} Report"
msgstr "{0} Izvještaj"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} Izvještaji"
@@ -31266,7 +31269,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodijelio(la) standard vrijednost za {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} je napustio(la) konverzaciju u {1} {2}"
@@ -31437,11 +31440,11 @@ msgstr "{0} je postavljeno"
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} artikala odabrano"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}"
@@ -31577,7 +31580,7 @@ msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
msgid "{0} row #{1}: "
msgstr "{0} red #{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} uspješno spremljen"
@@ -31619,7 +31622,7 @@ msgstr "{0} je podnio ovaj dokument {1}"
msgid "{0} subscribers added"
msgstr "{0} pretplatnika je dodano"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} da prestanete primati e-poštu ovog tipa"
@@ -31806,7 +31809,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} je postavljeno na stanje {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} naspram {2}"
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index d547839d89..87ea1a2d8a 100644
--- a/frappe/locale/hu.po
+++ b/frappe/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr ""
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr "Módosítás nem engedélyezett"
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr ""
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9432,13 +9426,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -10837,7 +10831,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr ""
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr ""
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19663,7 +19660,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/it.po b/frappe/locale/it.po
index 0ad00da242..6d0fd6c7dd 100644
--- a/frappe/locale/it.po
+++ b/frappe/locale/it.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr ""
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr ""
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr ""
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9432,13 +9426,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -10837,7 +10831,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr ""
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr ""
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19663,7 +19660,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po
index 41a584984d..b50ba1409f 100644
--- a/frappe/locale/nl.po
+++ b/frappe/locale/nl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr "1 dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Agenda-evenement gesynchroniseerd."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 rapport"
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Acties"
@@ -976,8 +970,8 @@ msgstr "Activiteitenlogboek"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Toevoegen"
@@ -994,7 +988,7 @@ msgstr "Toevoegen / bijwerken"
msgid "Add A New Rule"
msgstr "Voeg een nieuwe regel toe"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Voeg bijlage toe"
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Grafiek toevoegen aan dashboard"
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr "Onderliggende toevoegen"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr "Voeg deelnemers toe"
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Handtekening toevoegen"
@@ -1122,12 +1116,12 @@ msgstr "Abonnees toevoegen"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Toevoegen aan dashboard"
@@ -1389,11 +1383,11 @@ msgstr "Toediening"
msgid "Administrator"
msgstr "Beheerder"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Toewijzingsregel toepassen"
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Toevoegen Document Print"
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr ""
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr ""
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9432,13 +9426,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -10837,7 +10831,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr ""
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr ""
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19663,7 +19660,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index 1759a701ce..a74b2c56da 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -537,11 +537,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -858,7 +853,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -924,10 +918,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr ""
@@ -989,8 +983,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1007,7 +1001,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1031,7 +1025,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1040,8 +1034,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1102,7 +1096,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1112,7 +1106,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1135,12 +1129,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1247,7 +1241,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1402,11 +1396,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1949,7 +1943,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2048,7 +2042,7 @@ msgstr "Zmiana niedozwolona"
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2224,7 +2218,7 @@ msgstr "Data zastosowania"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2305,7 +2299,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2337,7 +2331,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2409,7 +2403,7 @@ msgstr "Przypisz warunek"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2566,7 +2560,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3059,7 +3053,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3102,7 +3096,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3707,7 +3701,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "DW"
@@ -3898,7 +3892,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3916,7 +3910,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4178,7 +4172,7 @@ msgstr "Karta"
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4316,7 +4310,7 @@ msgstr "Konfiguracja wykresu"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nazwa wykresu"
@@ -4485,11 +4479,11 @@ msgstr "Miasto/Miejscowość"
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4497,7 +4491,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4523,7 +4517,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4765,7 +4759,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4820,7 +4814,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5070,7 +5064,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5479,7 +5473,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5603,7 +5597,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5617,13 +5611,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6087,12 +6081,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6736,7 +6730,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6745,7 +6739,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6781,7 +6775,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6823,12 +6817,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7236,8 +7230,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7246,7 +7240,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7998,7 +7992,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8082,7 +8076,7 @@ msgid "Due Date Based On"
msgstr "Termin wykonania oparty na"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr ""
@@ -8197,9 +8191,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8211,7 +8205,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8246,11 +8240,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8427,7 +8421,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8462,7 +8456,7 @@ msgstr ""
msgid "Email Account Name"
msgstr "Nazwa konta e-mail"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8569,7 +8563,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8633,7 +8627,7 @@ msgstr "Opcja synchronizacji poczty elektronicznej"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8665,7 +8659,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8691,7 +8685,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8916,8 +8910,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9044,7 +9038,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9358,7 +9352,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9384,7 +9378,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9445,13 +9439,13 @@ msgstr "Czas wygaśnięcia strony z obrazem QR Code"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9809,8 +9803,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10380,7 +10374,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10572,7 +10566,7 @@ msgstr ""
msgid "For Value"
msgstr "Dla wartości"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10834,7 +10828,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -10850,7 +10844,7 @@ msgstr ""
msgid "From Date Field"
msgstr "Od pola daty"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10901,7 +10895,7 @@ msgstr "Pełna szerokość"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10979,7 +10973,7 @@ msgstr ""
msgid "Generate Keys"
msgstr "Generuj klucze"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10987,7 +10981,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11103,7 +11097,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr "Globalny Wyrejestrowanie"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11267,8 +11261,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr "Identyfikator kontaktów Google"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11305,6 +11297,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11732,6 +11725,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11845,7 +11842,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr "Ukryj standardowego menu"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12401,7 +12398,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12449,7 +12446,7 @@ msgstr "Bezwarunkowy"
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12677,11 +12674,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12839,7 +12840,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13030,7 +13031,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13141,7 +13142,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13731,8 +13732,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14697,7 +14698,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14769,7 +14770,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15478,7 +15479,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15515,7 +15516,7 @@ msgstr "Widomość wysłana"
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16228,12 +16229,12 @@ msgstr "Szablon paska nawigacyjnego"
msgid "Navbar Template Values"
msgstr "Wartości szablonu paska nawigacyjnego"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16365,10 +16366,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16469,7 +16466,7 @@ msgstr "Wstawiam nową wartość"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16481,15 +16478,15 @@ msgstr "Wstawiam nową wartość"
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16501,7 +16498,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16628,7 +16625,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16769,7 +16766,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16837,7 +16834,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17029,7 +17026,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17085,7 +17082,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17095,8 +17092,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17129,7 +17126,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17364,7 +17361,7 @@ msgstr "Informuj jeśli Tematy bez do (w min)"
msgid "Notify users with a popup when they log in"
msgstr "Informuj użytkownikom popup podczas logowania"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17659,7 +17656,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17735,7 +17732,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17888,7 +17885,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17943,7 +17940,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18134,7 +18131,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18493,11 +18490,11 @@ msgstr "Nieaktywny"
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18531,7 +18528,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18543,7 +18540,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18914,7 +18911,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18930,7 +18927,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18962,7 +18959,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19153,7 +19150,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19211,7 +19208,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19239,7 +19236,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19457,11 +19454,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19526,7 +19523,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19597,16 +19594,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19676,7 +19673,7 @@ msgstr "Format Drukuj Pomoc"
msgid "Print Format Type"
msgstr "Drukuj Typ Formatu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19711,7 +19708,7 @@ msgstr "Ukryj Druk"
msgid "Print Hide If No Value"
msgstr "Wydrukuj \"Ukryte\" jeżeli nie została podana wartość"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19857,7 +19854,7 @@ msgstr "Protip: Dodaj Reference: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20163,7 +20160,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20360,7 +20357,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20436,7 +20433,7 @@ msgstr "Odczytany przez odbiorcę"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20456,7 +20453,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20602,12 +20599,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20821,11 +20818,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20864,7 +20861,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20913,7 +20910,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20944,7 +20941,7 @@ msgstr "Pamiętaj ostatnio wybrane wartości"
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21026,7 +21023,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21054,7 +21051,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21244,7 +21241,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21296,7 +21293,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21308,7 +21305,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21316,7 +21313,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21352,7 +21349,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21791,7 +21788,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21825,7 +21822,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Rola i Poziom"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22218,12 +22215,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22250,7 +22247,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22269,7 +22266,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22317,7 +22314,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22626,7 +22623,7 @@ msgstr "Ustawienia Zabezpieczeń"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22694,8 +22691,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22761,7 +22758,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22832,7 +22829,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22924,13 +22921,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23046,7 +23043,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr "Wyślij Druk w formacie PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23109,7 +23106,7 @@ msgstr "Wyślij zapytania na te adresy e-mail"
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23271,7 +23268,7 @@ msgstr "IP serwera"
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23310,11 +23307,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23350,7 +23347,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr "Ustaw baner z obrazka"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23376,7 +23373,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23548,7 +23545,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23594,7 +23591,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23797,7 +23794,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr "Pokaż podziały wiersza po sekcji"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23873,7 +23870,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24047,7 +24044,7 @@ msgstr "Pasek boczny i Komentarze"
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24849,7 +24846,7 @@ msgstr "Subdomena"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -24888,7 +24885,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24946,7 +24943,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25095,7 +25092,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25638,7 +25635,7 @@ msgstr "Ostrzeżenia szablonu"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25902,11 +25899,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25983,7 +25980,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26012,7 +26009,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26036,7 +26033,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26209,7 +26206,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "Występuje ponad slideshow"
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26265,7 +26262,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26273,7 +26270,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26339,7 +26336,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26687,7 +26684,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26762,7 +26759,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26824,7 +26821,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26886,9 +26883,9 @@ msgstr ""
msgid "Topic"
msgstr "Temat"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27056,7 +27053,7 @@ msgstr "Przejścia"
msgid "Translatable"
msgstr "Przetłumaczalny"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27089,6 +27086,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27426,11 +27428,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27439,7 +27441,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27510,7 +27512,7 @@ msgstr "Niewykształcony"
msgid "Unread Notification Sent"
msgstr "Nieprzeczytane Powiadomienie Wysłano"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27524,7 +27526,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27544,7 +27546,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27953,7 +27955,7 @@ msgstr "Użytkownik nie może stworzyć"
msgid "User Cannot Search"
msgstr "Użytkownik nie może szukać"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28059,12 +28061,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28165,15 +28167,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28194,7 +28196,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28223,7 +28225,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28496,7 +28498,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28783,6 +28785,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29048,11 +29051,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29406,7 +29409,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29467,7 +29470,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29542,7 +29545,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29657,7 +29660,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29742,7 +29745,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29938,7 +29941,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29979,11 +29982,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30862,7 +30865,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31033,7 +31036,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31204,11 +31207,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31344,7 +31347,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31386,7 +31389,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31573,7 +31576,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po
index 65b3c0aa64..da2f7913fc 100644
--- a/frappe/locale/pt.po
+++ b/frappe/locale/pt.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Ações"
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr "Anexar"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr ""
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr "Cancelar"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Cancelar"
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr "Claro"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr "Eliminar"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Eliminar"
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Duplicar"
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Editar"
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Ativado"
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9432,13 +9426,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportar"
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr "De"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "De"
@@ -10837,7 +10831,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr ""
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Não"
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr ""
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19663,7 +19660,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Assunto"
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Sim"
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "A sua tarefa em {0} {1} foi removida por {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} itens selecionados"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} guardado com sucesso"
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index dd5c3f7772..144f3b0b53 100644
--- a/frappe/locale/pt_BR.po
+++ b/frappe/locale/pt_BR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Ações"
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Adicionar"
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr "Adicionar Sub-item"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr "Adicione Participantes"
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr "Administrador"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr "Aplicado em"
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr "Atribuir condição"
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr ""
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr "Cartão"
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr "Configuração de Gráfico"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nome do gráfico"
@@ -4472,11 +4466,11 @@ msgstr "Cidade/Município"
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Recolher Todos"
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr "Concluído"
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr "Excluir"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Excluir"
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Desativado"
@@ -7233,7 +7227,7 @@ msgstr "Desativado"
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr "Data de vencimento baseada em"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Duplicar"
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr "Editar"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Editar"
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir Todos"
@@ -9432,13 +9426,13 @@ msgstr "Tempo de expiração da página de imagem de código QR"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr "Por valor"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr "De"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "De"
@@ -10837,7 +10831,7 @@ msgstr "Data De"
msgid "From Date Field"
msgstr "Do campo de data"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr "Largura completa"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr "Gerar Chaves"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr "Cancelar Inscrição Global"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr "Implícito"
msgid "Import"
msgstr "Importar"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importar"
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr "Mensagem Enviada"
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr "Novo valor a ser definido"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr "Novo valor a ser definido"
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Não"
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Nenhum dado para exportar"
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Não Desejados"
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "Não Permitido"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr "Informar se não for respondido em (minutos)"
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr "Passivo"
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Impressão"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Impressão"
@@ -19663,7 +19660,7 @@ msgstr "Ajuda sobre Formatos de Impressão"
msgid "Print Format Type"
msgstr "Tipo do Formato de Impressão"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr "Ocultar Impressão"
msgid "Print Hide If No Value"
msgstr "Ocultar Impressão se não Preenchido"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr "Lido por destinatário ativado"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr "Motivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr "Religado"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr "Lembrar última seleção"
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr "Reabrir"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr "Relatórios"
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Função e Nível"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr "Configurações de Segurança"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr "Selecionar"
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr "Enviar Agora"
msgid "Send Print as PDF"
msgstr "Enviar impressão como PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr "IP do servidor"
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr "Mostrar quebras de linha após seções"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr "Subdomínio"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Assunto"
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr "Enviar"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Enviar"
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr "Avisos do modelo"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr "Tópico"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr "Transições"
msgid "Translatable"
msgstr "Traduzível"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr "Não lida"
msgid "Unread Notification Sent"
msgstr "Notificação de mensagem não lida enviada"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr "Não Compartilhado"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr "O Usuário não pode criar"
msgid "User Cannot Search"
msgstr "O Usuário não pode pesquisar"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr "Visão"
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Bem-vindo Ao {0}"
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index a99f360f1d..1f6526c0ee 100644
--- a/frappe/locale/ru.po
+++ b/frappe/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr ""
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr ""
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr ""
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9432,13 +9426,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -10837,7 +10831,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr ""
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr ""
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19663,7 +19660,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "Перевести данные"
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
index cd3f61f349..2d0d68650b 100644
--- a/frappe/locale/sr.po
+++ b/frappe/locale/sr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-17 20:14\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 дан"
msgid "1 Google Calendar Event synced."
msgstr "1 догађај из Google Calendar-а је синхронизован."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 извештај"
@@ -709,11 +709,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Здраво,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Извештаји & Мастер подаци"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Упозорење: Ово поље је генерисано од стране система и може бити замењено будућим ажурирањем. Измените га користећи {0}."
@@ -1031,7 +1026,6 @@ msgstr "Тачан број није могуће преузети, кликни
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1097,10 +1091,10 @@ msgstr "Радње {0} није успела на {1} {2}. Прегледајт
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Радње"
@@ -1162,8 +1156,8 @@ msgstr "Дневник активности"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Додај"
@@ -1180,7 +1174,7 @@ msgstr "Додај / Ажурирај"
msgid "Add A New Rule"
msgstr "Додај ново правило"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Додај прилог"
@@ -1204,7 +1198,7 @@ msgstr "Додај ивицу на врху"
msgid "Add Card to Dashboard"
msgstr "Додај картицу на контролну таблу"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Додај графикон на контролну таблу"
@@ -1213,8 +1207,8 @@ msgid "Add Child"
msgstr "Додај зависни елемент"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1275,7 +1269,7 @@ msgstr "Додај кориснике"
msgid "Add Query Parameters"
msgstr "Додај параметре упита"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Додај улоге"
@@ -1285,7 +1279,7 @@ msgstr "Додај ред"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Додај потпис"
@@ -1308,12 +1302,12 @@ msgstr "Додај претплатнике"
msgid "Add Tags"
msgstr "Додај ознаке"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Додај ознаке"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Додај шаблон"
@@ -1420,7 +1414,7 @@ msgid "Add tab"
msgstr "Додај картицу"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Додај на контролну таблу"
@@ -1575,11 +1569,11 @@ msgstr "Администрација"
msgid "Administrator"
msgstr "Администратор"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Администратор пријављен"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Администратор је приступио {0} дана {1} путем IP адресе {2}."
@@ -2123,7 +2117,7 @@ msgstr "Омогућава да се омогућени URL кључа за пр
msgid "Allows skipping authorization if a user has active tokens."
msgstr "Омогућава прескакање ауторизације уколико корисник већ има активне токене."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Већ регистрован"
@@ -2222,7 +2216,7 @@ msgstr "Измена није дозвољена"
msgid "Amendment naming rules updated."
msgstr "Правила именовања измена ажурирана."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије"
@@ -2398,7 +2392,7 @@ msgstr "Примењено на"
msgid "Apply"
msgstr "Примени"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Примени правило доделе"
@@ -2479,7 +2473,7 @@ msgstr "Архивирано"
msgid "Archived Columns"
msgstr "Архивиране колоне"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "Да ли сте сигурни да желите да очистите додељене задатке?"
@@ -2511,7 +2505,7 @@ msgstr "Да ли сте сигурни да желите да обришете
msgid "Are you sure you want to discard the changes?"
msgstr "Да ли сте сигурни да желите да одбаците промене?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "Да ли сте сигурни да желите да генеришете нови извештај?"
@@ -2583,7 +2577,7 @@ msgstr "Додели услов"
msgid "Assign To"
msgstr "Додели"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Додели"
@@ -2740,7 +2734,7 @@ msgstr "Барем једно поље матичне врсте докумен
msgid "Attach"
msgstr "Приложи"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Приложи штампану верзију документа"
@@ -3233,7 +3227,7 @@ msgstr "Б9"
msgid "BCC"
msgstr "BCC"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3276,7 +3270,7 @@ msgstr "Слика позадине"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Позадински задаци"
@@ -3882,7 +3876,7 @@ msgstr "ОТКАЗАНО"
msgid "CC"
msgstr "CC"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -4073,7 +4067,7 @@ msgstr "Не може се преименовати из {0} у {1} јер {0}
msgid "Cancel"
msgstr "Откажи"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Откажи"
@@ -4091,7 +4085,7 @@ msgstr "Откажи све"
msgid "Cancel All Documents"
msgstr "Откажи све документе"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Откажи {0} документа?"
@@ -4353,7 +4347,7 @@ msgstr "Картица"
msgid "Card Break"
msgstr "Прелом картице"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Ознака картице"
@@ -4492,7 +4486,7 @@ msgstr "Конфигурација дијаграма"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Назив дијаграма"
@@ -4661,11 +4655,11 @@ msgstr "Град/Насељено место"
msgid "Clear"
msgstr "Очисти"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Очисти и додај шаблон"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Очисти и додај шаблон"
@@ -4673,7 +4667,7 @@ msgstr "Очисти и додај шаблон"
msgid "Clear All"
msgstr "Очисти све"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Очисти додељене задатке"
@@ -4699,7 +4693,7 @@ msgstr "Очисти евиденције након (дана)"
msgid "Clear User Permissions"
msgstr "Очисти корисничке дозволе"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "Очисти имејл поруке и додај шаблон"
@@ -4941,7 +4935,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Сажми"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Сажми све"
@@ -4996,7 +4990,7 @@ msgstr "Може се сажети зависи од (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5246,7 +5240,7 @@ msgstr "Завршено"
msgid "Complete By"
msgstr "Завршено од стране"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Заврши регистрацију"
@@ -5657,7 +5651,7 @@ msgstr "Копирај embed code"
msgid "Copy error to clipboard"
msgstr "Копирај грешку у међуспремник"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Копирај у међуспремник"
@@ -5781,7 +5775,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5795,13 +5789,13 @@ msgstr "Креирај и настави"
msgid "Create Address"
msgstr "Креирај адресу"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Креирај картицу"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Креирај графикон"
@@ -6265,12 +6259,12 @@ msgstr "Прилагођавање за {0} су извезена:
{1}
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Прилагоди"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Прилагоди"
@@ -6914,7 +6908,7 @@ msgstr "Кашњење"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6923,7 +6917,7 @@ msgstr "Кашњење"
msgid "Delete"
msgstr "Обриши"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Обриши"
@@ -6959,7 +6953,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Обриши картицу"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Обриши и генериши нови"
@@ -7001,12 +6995,12 @@ msgstr "Обриши картицу"
msgid "Delete this record to allow sending to this email address"
msgstr "Обриши овај запис да би омогућио слање на ову имејл адресу"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Трајно обриши {0} ставку?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Трајно обриши {0} ставке?"
@@ -7414,8 +7408,8 @@ msgstr "Онемогући пријављивања"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Онемогућено"
@@ -7424,7 +7418,7 @@ msgstr "Онемогућено"
msgid "Disabled Auto Reply"
msgstr "Онемогући аутоматски одговор"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8179,7 +8173,7 @@ msgstr "Преузми линк"
msgid "Download PDF"
msgstr "Преузми PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Преузми извештај"
@@ -8263,7 +8257,7 @@ msgid "Due Date Based On"
msgstr "Датум доспећа заснован на"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Дупликат"
@@ -8378,9 +8372,9 @@ msgstr "ИЗЛАЗ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8392,7 +8386,7 @@ msgstr "ИЗЛАЗ"
msgid "Edit"
msgstr "Уреди"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Уреди"
@@ -8427,11 +8421,11 @@ msgstr "Уреди прилагођени блок"
msgid "Edit Custom HTML"
msgstr "Уреди прилагођени HTML"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "Уреди DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Уреди DocType"
@@ -8608,7 +8602,7 @@ msgstr "Избор елемента"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8643,7 +8637,7 @@ msgstr "Имејл налог онемогућен."
msgid "Email Account Name"
msgstr "Назив имејл налога"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "Имејл налог је додат више пута"
@@ -8750,7 +8744,7 @@ msgstr "Ред чекања за имејлове"
msgid "Email Queue Recipient"
msgstr "Прималац у реду чекања за имејлове"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "Брисање реда чекања за имејлове је прекинуто због превише неуспешних покушаја."
@@ -8814,7 +8808,7 @@ msgstr "Опција за синхронизацију имејла"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "Имејл шаблон"
@@ -8846,7 +8840,7 @@ msgstr "Имејл је премештен у отпад"
msgid "Email is mandatory to create User Email"
msgstr "Имејл је обавезан за креирање корисничког имејла"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Имејл није послат {0} (отказана претплата / онемогућено)"
@@ -8872,7 +8866,7 @@ msgstr "Имејлови преузети"
msgid "Emails are already being pulled from this account."
msgstr "Имејлови се већ преузимају са овог налога."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "Имејлови су утишани"
@@ -9098,8 +9092,8 @@ msgstr "Омогући праћење веб-сајта унутар аплик
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Омогућено"
@@ -9226,7 +9220,7 @@ msgstr "Унесите клијентски ИД и тајну клијента
msgid "Enter Code displayed in OTP App."
msgstr "Унесите шифру приказану у апликацији за једнократну лозинку."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Унесите примаоце имејла"
@@ -9540,7 +9534,7 @@ msgstr "Извршавање кода"
msgid "Executing..."
msgstr "Извршавање..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Време извршавања: {0} секунди"
@@ -9566,7 +9560,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Прошири"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Прошири све"
@@ -9627,13 +9621,13 @@ msgstr "Време истека страница са QR кодом"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Извоз"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Извоз"
@@ -9991,8 +9985,8 @@ msgstr "Преузми подразумеване документе за гло
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10562,7 +10556,7 @@ msgid "Folio"
msgstr "Фолио"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Прати"
@@ -10755,7 +10749,7 @@ msgstr "За корисника"
msgid "For Value"
msgstr "За вредност"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "За поређење, користите >5, <10 или =324. За опсеге, користите 5:10 (за вредности између 5 и 10)."
@@ -11017,7 +11011,7 @@ msgstr "Петак"
msgid "From"
msgstr "Од"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Од"
@@ -11033,7 +11027,7 @@ msgstr "Датум почетка"
msgid "From Date Field"
msgstr "Поље за датум почетка"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Од врсте документа"
@@ -11084,7 +11078,7 @@ msgstr "Пуна ширина"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Функција"
@@ -11162,7 +11156,7 @@ msgstr "Опште"
msgid "Generate Keys"
msgstr "Генериши кључеве"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Генериши нови извештај"
@@ -11170,7 +11164,7 @@ msgstr "Генериши нови извештај"
msgid "Generate Random Password"
msgstr "Генериши насумичну лозинку"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Генериши URL за праћење"
@@ -11286,7 +11280,7 @@ msgstr "Глобалне пречице"
msgid "Global Unsubscribe"
msgstr "Глобално отказивање претплате"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Крени"
@@ -11450,8 +11444,6 @@ msgstr "Google Contacts - Није могуће ажурирати контак
msgid "Google Contacts Id"
msgstr "Google Contacts Ид"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
@@ -11488,6 +11480,7 @@ msgstr "Google Services"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11915,6 +11908,10 @@ msgstr "Сакривено"
msgid "Hidden Fields"
msgstr "Сакривена поља"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12028,7 +12025,7 @@ msgstr "Сакриј бочну траку, мени и коментаре"
msgid "Hide Standard Menu"
msgstr "Сакриј стандардни мени"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Сакриј ознаке"
@@ -12584,7 +12581,7 @@ msgstr "Поље слике мора бити врсте Приложи слик
msgid "Image link '{0}' is not valid"
msgstr "Линк слике '{0}' није важећи"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Слика је оптимизована"
@@ -12632,7 +12629,7 @@ msgstr "Имплицитно"
msgid "Import"
msgstr "Увоз"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Увоз"
@@ -12860,11 +12857,15 @@ msgstr "Укључи тему из апликација"
msgid "Include Web View Link in Email"
msgstr "Укључи линк ка веб-приказу у имејлу"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Укључи филтере"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Укључи индентацију"
@@ -13022,7 +13023,7 @@ msgstr "Унеси изнад"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Унеси након"
@@ -13213,7 +13214,7 @@ msgstr "Неважеће"
msgid "Invalid \"depends_on\" expression"
msgstr "Неважећи \"depends_on\" израз"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Неважећи \"depends_on\" израз постављен у филтеру {0}"
@@ -13324,7 +13325,7 @@ msgstr "Неважећа измена"
msgid "Invalid Parameters."
msgstr "Неважећи параметри."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13914,8 +13915,8 @@ msgstr "Задатак није покренут."
msgid "Join video conference with {0}"
msgstr "Придружи се видео-конференцији са {0}"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Иди на поље"
@@ -14880,7 +14881,7 @@ msgstr "Филтер листе"
msgid "List Settings"
msgstr "Подешавање листе"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Подешавање листе"
@@ -14952,7 +14953,7 @@ msgstr "Учита више"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Учитавање"
@@ -15661,7 +15662,7 @@ msgstr "Спајање је могуће само између групе и г
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15698,7 +15699,7 @@ msgstr "Порука послата"
msgid "Message Type"
msgstr "Врста поруке"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Порука је скраћена"
@@ -16413,12 +16414,12 @@ msgstr "Шаблон навигационе траке"
msgid "Navbar Template Values"
msgstr "Вредности шаблона навигационе траке"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Помери листу према доле"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Помери листу према горе"
@@ -16550,10 +16551,6 @@ msgstr "Нова порука са контакт странице веб-сај
msgid "New Name"
msgstr "Нови назив"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Нови билтен"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Ново обавештење"
@@ -16656,7 +16653,7 @@ msgstr "Нова вредност треба да буде постављена"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16668,15 +16665,15 @@ msgstr "Нова вредност треба да буде постављена"
msgid "New {0}"
msgstr "Нови {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Нови {0} креиран"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Нови {0} {1} додат у контролну таблу {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Нови {0} {1} креиран"
@@ -16688,7 +16685,7 @@ msgstr "Нови {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Нови {} верзије за следеће апликација су доступне"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "Новокреирани корисник {0} нема омогућене улоге."
@@ -16815,7 +16812,7 @@ msgstr "Следеће на клик"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Не"
@@ -16956,7 +16953,7 @@ msgstr "Нема резултата"
msgid "No Results found"
msgstr "Ниједан резултат није пронађен"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "Улоге нису наведене"
@@ -17024,7 +17021,7 @@ msgstr "Ниједан контакт није још увек додат."
msgid "No contacts linked to document"
msgstr "Ниједан контакт није повезан са документом"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Нема података за извоз"
@@ -17216,7 +17213,7 @@ msgstr "Нормализоване копије"
msgid "Normalized Query"
msgstr "Нормализовани упити"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Није дозвољено"
@@ -17272,7 +17269,7 @@ msgstr "Не може бити празно"
msgid "Not Permitted"
msgstr "Није дозвољено"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "Није дозвољено за читање {0}"
@@ -17282,8 +17279,8 @@ msgstr "Није дозвољено за читање {0}"
msgid "Not Published"
msgstr "Није објављено"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17316,7 +17313,7 @@ msgstr "Није постављено"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Неважећи Comma Separated Value (CSV фајл)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Неважећа слика корисника."
@@ -17551,7 +17548,7 @@ msgstr "Обавести уколико није одговорено (у мин
msgid "Notify users with a popup when they log in"
msgstr "Обавести кориснике путем искачућег прозора када се пријаве"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Сада"
@@ -17846,7 +17843,7 @@ msgstr "На или након"
msgid "On or Before"
msgstr "На или пре"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "На {0}, {1} је написао/ла:"
@@ -17922,7 +17919,7 @@ msgstr "Искључиво администратор може да уређуј
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Искључиво администратор може сачувати стандардни извештај. Молимо Вас да преименујете и сачувате."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Искључиво администратор може да користи алат за снимање"
@@ -18075,7 +18072,7 @@ msgstr "Отвори конзолу"
msgid "Open in a new tab"
msgstr "Отвори у новој картици"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Отворене ставке"
@@ -18130,7 +18127,7 @@ msgstr "Оператор мора бити један од следећих {0}"
msgid "Optimize"
msgstr "Оптимизуј"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Оптимизација слике..."
@@ -18321,7 +18318,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18680,11 +18677,11 @@ msgstr "Пасиван"
msgid "Password"
msgstr "Лозинка"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "Имејл са лозинком послат"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Ресетовање лозинке"
@@ -18718,7 +18715,7 @@ msgstr "Лозинка није унета у имејл налогу"
msgid "Password not found for {0} {1} {2}"
msgstr "Лозинка није пронађена за {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Упутство за ресетовање лозинке је послато на имејл корисника {}"
@@ -18730,7 +18727,7 @@ msgstr "Лозинка постављена"
msgid "Password size exceeded the maximum allowed size"
msgstr "Величина лозинке премашује дозвољену границу"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "Величине лозинке премашује дозвољену границу."
@@ -19101,7 +19098,7 @@ msgstr "Молимо Вас да дуплирате ову тему веб-са
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Молимо Вас да инсталирате ldap3 библиотеку путем пип-а да бисте користили ldap функционалност."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Молимо Вас да поставите графикон"
@@ -19117,7 +19114,7 @@ msgstr "Молимо Вас да додате наслов у Ваш имејл"
msgid "Please add a valid comment."
msgstr "Молимо Вас да додате валидан коментар."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Молимо Вас да затражите од администратора да верификује Вашу регистрацију"
@@ -19149,7 +19146,7 @@ msgstr "Молимо Вас да проверите вредности филт
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Молимо Вас да проверите вредности поља \"Преузми из\" постављених за поље {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Молимо Вас да проверите свој имејл за верификацију"
@@ -19340,7 +19337,7 @@ msgstr "Молимо Вас да прво изаберете врсту енти
msgid "Please select Minimum Password Score"
msgstr "Молимо Вас да одаберете минималну оцену јачине лозинке"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Молимо Вас да изаберете X и Y поља"
@@ -19398,7 +19395,7 @@ msgstr "Молимо Вас да поставите имејл адресу"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Молимо Вас да поставите мапирање штампача за овај формат штампе у подешавањима штампе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Молимо Вас да поставите филтере"
@@ -19426,7 +19423,7 @@ msgstr "Молимо Вас да поставите SMS пре него што
msgid "Please setup a message first"
msgstr "Молимо Вас да прво поставите поруку"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Молимо Вас да поставите подразумевани излазни имејл налог из Подешавања > Имејл налог"
@@ -19644,11 +19641,11 @@ msgstr "Корисник припремљеног извештаја"
msgid "Prepared report render failed"
msgstr "Приказ припремљеног извештаја није успео"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Припрема извештаја"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Додај шаблон на почетак имејл поруке"
@@ -19713,7 +19710,7 @@ msgstr "Преглед на {0}"
msgid "Preview type"
msgstr "Врста прегледа"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Преглед:"
@@ -19784,16 +19781,16 @@ msgstr "Примарни кључ за DocType {0} не може бити про
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Штампа"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Штампа"
@@ -19863,7 +19860,7 @@ msgstr "Помоћ за формат штампе"
msgid "Print Format Type"
msgstr "Врста формата штампе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr "Формат штампе није пронађен"
@@ -19898,7 +19895,7 @@ msgstr "Сакриј штампу"
msgid "Print Hide If No Value"
msgstr "Сакриј штампу уколико нема вредности"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Језик штампе"
@@ -20044,7 +20041,7 @@ msgstr "Савет: Додаје Reference: {{ reference_doctype }} {{ ref
msgid "Proceed"
msgstr "Настави"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Ипак настави"
@@ -20350,7 +20347,7 @@ msgstr "Извештај по упиту"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Анализа упита завршена. Погледајте предложене индексе."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Упит мора бити врсте SELECT или read-only WITH type."
@@ -20547,7 +20544,7 @@ msgstr "Re:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "Re: {0}"
@@ -20623,7 +20620,7 @@ msgstr "Прочитао прималац на"
msgid "Read mode"
msgstr "Режим читања"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Прочитајте документацију за више информација"
@@ -20643,7 +20640,7 @@ msgstr "У реалном времену (SocketIO)"
msgid "Reason"
msgstr "Разлог"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Обнови"
@@ -20789,12 +20786,12 @@ msgstr "Преусмеравања"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis cache сервер није покренут. Молимо Вас да контактирате администратор / техничку подршку"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Врати"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Врати последњу радњу"
@@ -21008,11 +21005,11 @@ msgid "Referrer"
msgstr "Извор приступа"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21051,7 +21048,7 @@ msgstr "Освежавање"
msgid "Refreshing..."
msgstr "Освежавање..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Регистровано, али онемогућено"
@@ -21100,7 +21097,7 @@ msgstr "Поново повезано"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Поновно учитавање"
@@ -21131,7 +21128,7 @@ msgstr "Запамти последњу изабрану вредност"
msgid "Remind At"
msgstr "Подсетник у"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Подсети ме"
@@ -21213,7 +21210,7 @@ msgstr "Уклоњено"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21241,7 +21238,7 @@ msgstr "Приказивања ознака са леве стране и вре
msgid "Reopen"
msgstr "Поново отвори"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Понови"
@@ -21431,7 +21428,7 @@ msgstr "Менаџер извештавања"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Назив извештаја"
@@ -21483,7 +21480,7 @@ msgstr "Извештај нема података, молимо Вас да и
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Извештај нема нумеричких поља, молимо Вас да промените назив извештаја"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Извештај је покренут, кликните да бисте погледали статус"
@@ -21495,7 +21492,7 @@ msgstr "Достигнуто је ограничење извештаја"
msgid "Report timed out."
msgstr "Извештај је истекао."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Извештај је успешно ажуриран"
@@ -21503,7 +21500,7 @@ msgstr "Извештај је успешно ажуриран"
msgid "Report was not saved (there were errors)"
msgstr "Извештај није сачуван (догодиле су се грешке)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Извештај са више од 10 колона изгледа боље у пејзажном режиму."
@@ -21539,7 +21536,7 @@ msgstr "Извештаји"
msgid "Reports & Masters"
msgstr "Извештаји и мастер подаци"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Извештаји су већ у реду"
@@ -21978,7 +21975,7 @@ msgstr "Дозволе улога"
msgid "Role Permissions Manager"
msgstr "Менаџер дозвола улога"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Менаџер дозвола улога"
@@ -22012,7 +22009,7 @@ msgstr "Репликација улога"
msgid "Role and Level"
msgstr "Улога и ниво"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Улога је постављена према врсти корисника {0}"
@@ -22405,12 +22402,12 @@ msgstr "Субота"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22437,7 +22434,7 @@ msgstr "Сачувај као"
msgid "Save Customizations"
msgstr "Сачувај прилагођавања"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Сачувај извештај"
@@ -22456,7 +22453,7 @@ msgstr "Сачувај документ."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22504,7 +22501,7 @@ msgstr "Скенирај QR код и унеси приказани код."
msgid "Schedule"
msgstr "Распоред"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Заказати слање у"
@@ -22813,7 +22810,7 @@ msgstr "Подешавања безбедности"
msgid "See all Activity"
msgstr "Погледај све активности"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Погледај све претходне извештаје."
@@ -22881,8 +22878,8 @@ msgstr "Изабери"
msgid "Select All"
msgstr "Изабери све"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22948,7 +22945,7 @@ msgstr "Изаберите врсте докумената како бисте
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Изабери поље"
@@ -23019,7 +23016,7 @@ msgid "Select Page"
msgstr "Изабери страницу"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Изабери формат штампе"
@@ -23111,13 +23108,13 @@ msgstr "Изабери бар један запис за штампање"
msgid "Select atleast 2 actions"
msgstr "Изабери бар 2 радње"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Изабери ставку из листе"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Изабери више ставки из листе"
@@ -23233,7 +23230,7 @@ msgstr "Пошаљи сада"
msgid "Send Print as PDF"
msgstr "Пошаљи као PDF за штампу"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Пошаљи потврду о читању"
@@ -23296,7 +23293,7 @@ msgstr "Пошаљи упите на ову имејл адресу"
msgid "Send login link"
msgstr "Пошаљи линк за пријаву"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Пошаљи ми копију"
@@ -23458,7 +23455,7 @@ msgstr "ИП адреса сервера"
msgid "Server Script"
msgstr "Серверска скрипта"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Серверска скрипта је онемогућена. Молимо Вас да је омогућите у конфигурацији командне линије."
@@ -23497,11 +23494,11 @@ msgstr "Подешавање подразумеване сесије"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Подразумеване вредности сесије"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Подразумеване вредности сесије су сачуване"
@@ -23537,7 +23534,7 @@ msgstr "Постави"
msgid "Set Banner from Image"
msgstr "Постави банер из слике"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Постави графикон"
@@ -23563,7 +23560,7 @@ msgstr "Постави филтере"
msgid "Set Filters for {0}"
msgstr "Постави филтере за {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Постави ниво"
@@ -23759,7 +23756,7 @@ msgstr "Постављање система"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23805,7 +23802,7 @@ msgstr "Поставке > Корисник"
msgid "Setup > User Permissions"
msgstr "Поставке > Корисничке дозволе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Поставке аутоматског имејла"
@@ -24008,7 +24005,7 @@ msgstr "Прикажи избор језика"
msgid "Show Line Breaks after Sections"
msgstr "Прикажи прелом линије након одељка"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Прикажи линкове"
@@ -24084,7 +24081,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Прикажи кључ за пријављивање путем друштвених мрежа као ауторизациони сервер"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Прикажи ознаке"
@@ -24258,7 +24255,7 @@ msgstr "Бочна трака и коментари"
msgid "Sign Up and Confirmation"
msgstr "Регистрација и потврда"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Регистрација је онемогућена"
@@ -25060,7 +25057,7 @@ msgstr "Поддомен"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Наслов"
@@ -25099,7 +25096,7 @@ msgstr "Ред чекања за подношење"
msgid "Submit"
msgstr "Поднеси"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Поднеси"
@@ -25157,7 +25154,7 @@ msgstr "Поднесите овај документ да бисте заврш
msgid "Submit this document to confirm"
msgstr "Поднесите овај документ да бисте потврдили"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Поднеси {0} докумената?"
@@ -25306,7 +25303,7 @@ msgstr "Предложи оптимизације"
msgid "Suggested Indexes"
msgstr "Предложи индексе"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Предложено корисничко име: {0}"
@@ -25849,7 +25846,7 @@ msgstr "Упозорења у шаблону"
msgid "Templates"
msgstr "Шаблони"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Привремено онемогућено"
@@ -26121,11 +26118,11 @@ msgstr "Број пројекта добијен путем Google Cloud кон
"\"IAM & Admin\" > \"Settings\"\n"
""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "Линк за ресетовање лозинке је истекао"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи"
@@ -26202,7 +26199,7 @@ msgstr "Немате предстојећих догађаја."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Нема {0} за овај {1}, зашто не бисте започели један!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "Већ постоји {0} са истим филтерима у реду чекања:"
@@ -26231,7 +26228,7 @@ msgstr "Тренутно нема ничег новог да се прикаже
msgid "There is some problem with the file url: {0}"
msgstr "Дошло је до проблема са URL адресом фајла: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "Већ постоји {0} са истим филтерима у реду чекања:"
@@ -26255,7 +26252,7 @@ msgstr "Дошло је до грешака"
msgid "There were errors while creating the document. Please try again."
msgstr "Дошло је до грешака приликом креирања документа. Молимо Вас да покушате поново."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Дошло је до грешке приликом слања имејла. Молимо Вас да покушате поново."
@@ -26432,7 +26429,7 @@ msgstr "Овај провајдер геолокације још увек ни
msgid "This goes above the slideshow."
msgstr "Ово се приказује изнад презентације."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај."
@@ -26488,7 +26485,7 @@ msgstr "Ово може бити одштампано на више страни
msgid "This month"
msgstr "Овај месец"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}."
@@ -26496,7 +26493,7 @@ msgstr "Овај извештај садржи {0} редова и превел
msgid "This report was generated on {0}"
msgstr "Овај извештај је генерисан на {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Овај извештај је генерисан {0}."
@@ -26562,7 +26559,7 @@ msgstr "Ово ће ресетовати обилазак и приказати
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Ово ће тренутно прекинути задатак и може бити ризично, да ли сте сигурни? "
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Загушено"
@@ -26916,7 +26913,7 @@ msgstr "Да бисте извршили извоз овог корака као
msgid "To generate password click {0}"
msgstr "За генерисање лозинке кликните {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "За ажурирани извештај кликните на {0}."
@@ -26991,7 +26988,7 @@ msgstr "Пребаци у приказ мреже"
msgid "Toggle Sidebar"
msgstr "Пребаци бочну траку"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Пребаци бочну траку"
@@ -27053,7 +27050,7 @@ msgstr "Превише промена базе податка у једној р
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Превише задатака у позадини у реду чекања ({0}). Молимо Вас да покушате поново касније."
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Превише корисника се регистровало у последње време, стога је регистрација привремено онемогућена. Покушајте поново за сат времена"
@@ -27115,9 +27112,9 @@ msgstr "Горе десно"
msgid "Topic"
msgstr "Тема"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Укупно"
@@ -27287,7 +27284,7 @@ msgstr "Транизиција"
msgid "Translatable"
msgstr "Могуће превођење"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "Преведи податке"
@@ -27320,6 +27317,11 @@ msgstr "Превод"
msgid "Translations"
msgstr "Преводи"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27658,11 +27660,11 @@ msgstr "Неухваћени изузетак"
msgid "Unchanged"
msgstr "Неизмењено"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Поништи"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Поништи последњу радњу"
@@ -27671,7 +27673,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr "Наводници нису правилно избегнути у текстуалном изразу: {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Заустави праћење"
@@ -27744,7 +27746,7 @@ msgstr "Непрочитано"
msgid "Unread Notification Sent"
msgstr "Послата обавештења о непрочитаним"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Несигуран SQL упит"
@@ -27758,7 +27760,7 @@ msgstr "Поништи одабир свега"
msgid "Unshared"
msgstr "Није подељено"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Отказивање претплате"
@@ -27778,7 +27780,7 @@ msgstr "Параметри отказивања претплате"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Отказана претплата"
@@ -28187,7 +28189,7 @@ msgstr "Корисник не може да креира"
msgid "User Cannot Search"
msgstr "Корисник не може да претражује"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Корисник промењен"
@@ -28293,12 +28295,12 @@ msgstr "Корисничка дозвола"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Корисничке дозволе"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Корисничке дозволе"
@@ -28399,15 +28401,15 @@ msgstr "Корисник са имејл адресом {0} не постоји"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Корисник са имејлом: {0} не постоји у систему. Молимо Вас да контактирате 'Систем администратора' да креира корисника за Вас."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Корисник {0} не може бити обрисан"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Корисник {0} не може бити онемогућен"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Корисник {0} не може бити преименован"
@@ -28428,7 +28430,7 @@ msgstr "Корисник {0} нема дозволу да креира радн
msgid "User {0} has requested for data deletion"
msgstr "Корисник {0} је затражио брисање података"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "Корисник {0} се представља као {1}"
@@ -28457,7 +28459,7 @@ msgstr "URI са подацима о кориснику"
msgid "Username"
msgstr "Корисничко име"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Корисничко име {0} већ постоји"
@@ -28730,7 +28732,7 @@ msgstr "Приказ"
msgid "View All"
msgstr "Прикажи све"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Прикажи историју измена"
@@ -29017,6 +29019,7 @@ msgstr "Приказ на вебу"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29282,11 +29285,11 @@ msgstr "URL за добродошлицу"
msgid "Welcome Workspace"
msgstr "Добро дошли у радни простор"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Имејл добродошлице је послат"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Добро дошли у {0}"
@@ -29640,7 +29643,7 @@ msgstr "Поље Y осе"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y поље"
@@ -29701,7 +29704,7 @@ msgstr "Жута"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Да"
@@ -29776,7 +29779,7 @@ msgstr "Немате дозволу да извезете DocType {}"
msgid "You are not allowed to print this report"
msgstr "Немате дозволу да одштампате овај извештај"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Немате дозволу да пошаљете имејл везан за овај документ"
@@ -29891,7 +29894,7 @@ msgstr "Можете изабрати једну од следећих,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Можете поставити вишу вредност овде уколико се више корисника пријављује са исте мреже."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Можете покушати да промените филтере Вашег извештаја."
@@ -29976,7 +29979,7 @@ msgstr "Немате довољно дозвола да довршите ову
msgid "You do not have permission to access field: {0}"
msgstr "Немате дозволу за приступ пољу: {0}"
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "Немате дозволу за приступ {0}: {1}."
@@ -30172,7 +30175,7 @@ msgstr "Престали сте да пратите овај документ"
msgid "You viewed this"
msgstr "Прегледали сте ово"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Пријављени сте као други корисник на другој картици. Освежите ову страницу да бисте наставили рад у систему."
@@ -30213,11 +30216,11 @@ msgstr "Ваш налог је закључан и биће поново омо
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Ваша додела за {0} {1} је уклоњена од стране {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Ваш интернет претраживач не подржава звучни елемент."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Ваш интернет претраживач не подржава видео елемент."
@@ -31096,7 +31099,7 @@ msgstr "{0} није дозвољено мењати {1}, након што је
msgid "{0} Report"
msgstr "{0} извештај"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} извештаји"
@@ -31267,7 +31270,7 @@ msgstr "{0} х"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} је већ доделио подразумевану вредност за {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} је напустио разговор у {1} {2}"
@@ -31438,11 +31441,11 @@ msgstr "{0} је постављено"
msgid "{0} is within {1}"
msgstr "{0} је унутар {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "одабрано {0} ставки"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} се управо представио као Ви. Навео је следећи разлог: {1}"
@@ -31578,7 +31581,7 @@ msgstr "Улога {0} нема дозволе ни за једну врсту
msgid "{0} row #{1}: "
msgstr "{0} ред#{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} је успешно сачувано"
@@ -31620,7 +31623,7 @@ msgstr "{0} је поднео овај документ {1}"
msgid "{0} subscribers added"
msgstr "{0} претплатника додато"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} да бисте престали да примате имејл ове врсте"
@@ -31807,7 +31810,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} је постављено на стање {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} у односу на {2}"
diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po
index 4ea76cdb6a..90f6b66b1f 100644
--- a/frappe/locale/sr_CS.po
+++ b/frappe/locale/sr_CS.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-17 20:14\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 dan"
msgid "1 Google Calendar Event synced."
msgstr "1 događaj iz Google Calendar-a je sinhronizovan."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 izveštaj"
@@ -709,11 +709,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Zdravo,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Izveštaji & Master podaci"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Upozorenje: Ovo polje je generisano od strane sistema i može biti zamenjeno budućim ažuriranjem. Izmenite ga koristeći {0}."
@@ -1032,7 +1027,6 @@ msgstr "Tačan broj nije moguće preuzeti, kliknite ovde za pregled svih dokumen
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1098,10 +1092,10 @@ msgstr "Radnje {0} nije uspela na {1} {2}. Pregledajte je {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Radnje"
@@ -1163,8 +1157,8 @@ msgstr "Dnevnik aktivnosti"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
@@ -1181,7 +1175,7 @@ msgstr "Dodaj / Ažuriraj"
msgid "Add A New Rule"
msgstr "Dodaj novo pravilo"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dodaj prilog"
@@ -1205,7 +1199,7 @@ msgstr "Dodaj ivicu na vrhu"
msgid "Add Card to Dashboard"
msgstr "Dodaj karticu na kontrolnu tablu"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Dodaj grafikon na kontrolnu tablu"
@@ -1214,8 +1208,8 @@ msgid "Add Child"
msgstr "Dodaj zavisni element"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1276,7 +1270,7 @@ msgstr "Dodaj korisnike"
msgid "Add Query Parameters"
msgstr "Dodaj parametre upita"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Dodaj uloge"
@@ -1286,7 +1280,7 @@ msgstr "Dodaj red"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Dodaj potpis"
@@ -1309,12 +1303,12 @@ msgstr "Dodaj pretplatnike"
msgid "Add Tags"
msgstr "Dodaj oznake"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj oznake"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Dodaj šablon"
@@ -1421,7 +1415,7 @@ msgid "Add tab"
msgstr "Dodaj karticu"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Dodaj na kontrolnu tablu"
@@ -1576,11 +1570,11 @@ msgstr "Administracija"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Administrator prijavljen"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator je pristupio {0} dana {1} putem IP adrese {2}."
@@ -2124,7 +2118,7 @@ msgstr "Omogućava da se omogućeni osnovni URL ključa za prijavljivanje putem
msgid "Allows skipping authorization if a user has active tokens."
msgstr "Omogućava preskakanje autorizacije ukoliko korisnik već ima aktivne tokene."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Već registrovan"
@@ -2223,7 +2217,7 @@ msgstr "Izmena nije dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila imenovanja izmena ažurirana."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja podrazumevanih podešavanja sesije"
@@ -2399,7 +2393,7 @@ msgstr "Primenjeno na"
msgid "Apply"
msgstr "Primeni"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Primeni pravilo dodele"
@@ -2480,7 +2474,7 @@ msgstr "Arhivirano"
msgid "Archived Columns"
msgstr "Arhivirane kolone"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?"
@@ -2512,7 +2506,7 @@ msgstr "Da li ste sigurni da želite da obrišete karticu? Svi odeljci zajedno s
msgid "Are you sure you want to discard the changes?"
msgstr "Da li ste sigurni da želite da odbacite promene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "Da li ste sigurni da želite da generišete novi izveštaj?"
@@ -2584,7 +2578,7 @@ msgstr "Dodeli uslov"
msgid "Assign To"
msgstr "Dodeli"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodeli"
@@ -2741,7 +2735,7 @@ msgstr "Barem jedno polje matične vrste dokumenta je obavezno"
msgid "Attach"
msgstr "Priloži"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Priloži štampanu verziju dokumenta"
@@ -3234,7 +3228,7 @@ msgstr "B9"
msgid "BCC"
msgstr "BCC"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3277,7 +3271,7 @@ msgstr "Slika pozadine"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Pozadinski zadaci"
@@ -3883,7 +3877,7 @@ msgstr "OTKAZANO"
msgid "CC"
msgstr "CC"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "CC"
@@ -4074,7 +4068,7 @@ msgstr "Ne može se preimenovati iz {0} u {1} jer {0} ne postoji."
msgid "Cancel"
msgstr "Otkaži"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Otkaži"
@@ -4092,7 +4086,7 @@ msgstr "Otkaži sve"
msgid "Cancel All Documents"
msgstr "Otkaži sve dokumente"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Otkaži {0} dokumenta?"
@@ -4354,7 +4348,7 @@ msgstr "Kartica"
msgid "Card Break"
msgstr "Prelom kartice"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Oznaka kartice"
@@ -4493,7 +4487,7 @@ msgstr "Konfiguracija dijagrama"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Naziv dijagrama"
@@ -4662,11 +4656,11 @@ msgstr "Grad/Naseljeno mesto"
msgid "Clear"
msgstr "Očisti"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Očisti i dodaj šablon"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Očisti i dodaj šablon"
@@ -4674,7 +4668,7 @@ msgstr "Očisti i dodaj šablon"
msgid "Clear All"
msgstr "Očisti sve"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Očisti dodeljene zadatke"
@@ -4700,7 +4694,7 @@ msgstr "Očisti evidencije nakon (dana)"
msgid "Clear User Permissions"
msgstr "Očisti korisničke dozvole"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "Očisti imejl poruke i dodaj šablon"
@@ -4942,7 +4936,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sažmi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sažmi sve"
@@ -4997,7 +4991,7 @@ msgstr "Može se sažeti zavisi od (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5247,7 +5241,7 @@ msgstr "Završeno"
msgid "Complete By"
msgstr "Završeno od strane"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Završi registraciju"
@@ -5658,7 +5652,7 @@ msgstr "Kopiraj embeded code"
msgid "Copy error to clipboard"
msgstr "Kopiraj grešku u međuspremnik"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Kopiraj u međuspremnik"
@@ -5782,7 +5776,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5796,13 +5790,13 @@ msgstr "Kreiraj i nastavi"
msgid "Create Address"
msgstr "Kreiraj adresu"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Kreiraj karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Kreiraj grafikon"
@@ -6266,12 +6260,12 @@ msgstr "Prilagođavanje za {0} su izvezena:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Prilagodi"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Prilagodi"
@@ -6915,7 +6909,7 @@ msgstr "Kašnjenje"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6924,7 +6918,7 @@ msgstr "Kašnjenje"
msgid "Delete"
msgstr "Obriši"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Obriši"
@@ -6960,7 +6954,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Obriši karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Obriši i generiši novi"
@@ -7002,12 +6996,12 @@ msgstr "Obriši karticu"
msgid "Delete this record to allow sending to this email address"
msgstr "Obriši ovaj zapis da bi omogućio slanje na ovu imejl adresu"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Trajno obriši {0} stavku?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Trajno obriši {0} stavke?"
@@ -7415,8 +7409,8 @@ msgstr "Onemogući prijavljivanja"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Onemogućeno"
@@ -7425,7 +7419,7 @@ msgstr "Onemogućeno"
msgid "Disabled Auto Reply"
msgstr "Onemogući automatski odgovor"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8180,7 +8174,7 @@ msgstr "Preuzmi link"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Preuzmi izveštaj"
@@ -8264,7 +8258,7 @@ msgid "Due Date Based On"
msgstr "Datum dospeća zasnovan na"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Duplikat"
@@ -8379,9 +8373,9 @@ msgstr "IZLAZ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8393,7 +8387,7 @@ msgstr "IZLAZ"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8428,11 +8422,11 @@ msgstr "Uredi prilagođeni blok"
msgid "Edit Custom HTML"
msgstr "Uredi prilagođeni HTML"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "Uredi DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Uredi DocType"
@@ -8609,7 +8603,7 @@ msgstr "Izbor elementa"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8644,7 +8638,7 @@ msgstr "Imejl nalog onemogućen."
msgid "Email Account Name"
msgstr "Naziv imejl naloga"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "Imejl nalog je dodat više puta"
@@ -8751,7 +8745,7 @@ msgstr "Red čekanja za imejlove"
msgid "Email Queue Recipient"
msgstr "Primalac u redu čekanja za imejlove"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "Brisanje reda čekanja za imejlove je prekinuto zbog previše neuspešnih pokušaja."
@@ -8815,7 +8809,7 @@ msgstr "Opcija za sinhronizaciju imejla"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "Imejl šablon"
@@ -8847,7 +8841,7 @@ msgstr "Imejl je premešten u otpad"
msgid "Email is mandatory to create User Email"
msgstr "Imejl je obavezan za kreiranje korisničkog imejla"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Imejl nije poslat {0} (otkazana pretplata / onemogućeno)"
@@ -8873,7 +8867,7 @@ msgstr "Imejlovi preuzeti"
msgid "Emails are already being pulled from this account."
msgstr "Imejlovi se već preuzimaju sa ovog naloga."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "Imejlovi su utišani"
@@ -9099,8 +9093,8 @@ msgstr "Omogući praćenje veb-sajta unutar aplikacije"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Omogućeno"
@@ -9227,7 +9221,7 @@ msgstr "Unesite klijentski ID i tajnu klijenta u Google podešavanja."
msgid "Enter Code displayed in OTP App."
msgstr "Unesite šifru prikazanu u aplikaciji za jednokratnu lozinku."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Unesite primaoce imejla"
@@ -9541,7 +9535,7 @@ msgstr "Izvršavanje koda"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Vreme izvršavanja: {0} sekundi"
@@ -9567,7 +9561,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Proširi sve"
@@ -9628,13 +9622,13 @@ msgstr "Vreme isteka stranica sa QR kodom"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Izvoz"
@@ -9992,8 +9986,8 @@ msgstr "Preuzmi podrazumevane dokumente za globalnu pretragu."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10563,7 +10557,7 @@ msgid "Folio"
msgstr "Folio"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Prati"
@@ -10756,7 +10750,7 @@ msgstr "Za korisnika"
msgid "For Value"
msgstr "Za vrednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 or =324. Za opsege, koristite 5:10 (za vrednosti između 5 i 10)."
@@ -11018,7 +11012,7 @@ msgstr "Petak"
msgid "From"
msgstr "Od"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Od"
@@ -11034,7 +11028,7 @@ msgstr "Datum početka"
msgid "From Date Field"
msgstr "Polje za datum početka"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Od vrste dokumenta"
@@ -11085,7 +11079,7 @@ msgstr "Puna širina"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkcija"
@@ -11163,7 +11157,7 @@ msgstr "Opšte"
msgid "Generate Keys"
msgstr "Generiši ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Generiši novi izveštaj"
@@ -11171,7 +11165,7 @@ msgstr "Generiši novi izveštaj"
msgid "Generate Random Password"
msgstr "Generiši nasumičnu lozinku"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Generiši URL za praćenje"
@@ -11287,7 +11281,7 @@ msgstr "Globalne prečice"
msgid "Global Unsubscribe"
msgstr "Globalno otkazivanje pretplate"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Kreni"
@@ -11451,8 +11445,6 @@ msgstr "Google Contacts - Nije moguće ažurirati kontakt u Google Contacts {0},
msgid "Google Contacts Id"
msgstr "Google Contacts Id"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
@@ -11489,6 +11481,7 @@ msgstr "Google Services"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11916,6 +11909,10 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena polja"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12029,7 +12026,7 @@ msgstr "Sakrij bočnu traku, meni i komentare"
msgid "Hide Standard Menu"
msgstr "Sakrij standardni meni"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Sakrij oznake"
@@ -12585,7 +12582,7 @@ msgstr "Polje slike mora biti vrste Priloži sliku"
msgid "Image link '{0}' is not valid"
msgstr "Link slike '{0}' nije važeći"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Slika je optimizovana"
@@ -12633,7 +12630,7 @@ msgstr "Implicitno"
msgid "Import"
msgstr "Uvoz"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Uvoz"
@@ -12861,11 +12858,15 @@ msgstr "Uključi temu iz aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi link ka veb-prikazu u imejlu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Uključi filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Uključi indentaciju"
@@ -13023,7 +13024,7 @@ msgstr "Unesi iznad"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Unesi nakon"
@@ -13214,7 +13215,7 @@ msgstr "Nevažeće"
msgid "Invalid \"depends_on\" expression"
msgstr "Nevažeći \"depends_on\" izraz"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Nevažeći \"depends_on\" izraz postavljen u filteru {0}"
@@ -13325,7 +13326,7 @@ msgstr "Nevažeća izmena"
msgid "Invalid Parameters."
msgstr "Nevažeći parametri."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13915,8 +13916,8 @@ msgstr "Zadatak nije pokrenut."
msgid "Join video conference with {0}"
msgstr "Pridruži se video-konferenciji sa {0}"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Idi na polje"
@@ -14881,7 +14882,7 @@ msgstr "Filter liste"
msgid "List Settings"
msgstr "Podešavanje liste"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Podešavanje liste"
@@ -14953,7 +14954,7 @@ msgstr "Učita više"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Učitavanje"
@@ -15662,7 +15663,7 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora"
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15699,7 +15700,7 @@ msgstr "Poruka poslata"
msgid "Message Type"
msgstr "Vrsta poruke"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Poruka je skraćena"
@@ -16414,12 +16415,12 @@ msgstr "Šablon navigacione trake"
msgid "Navbar Template Values"
msgstr "Vrednosti šablona navigacione trake"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Pomeri listu prema dole"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Pomeri listu prema gore"
@@ -16551,10 +16552,6 @@ msgstr "Nova poruka sa kontakt stranice veb-sajta"
msgid "New Name"
msgstr "Novi naziv"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Novi bilten"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Novo obaveštenje"
@@ -16657,7 +16654,7 @@ msgstr "Nova vrednost treba da bude postavljena"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16669,15 +16666,15 @@ msgstr "Nova vrednost treba da bude postavljena"
msgid "New {0}"
msgstr "Novi {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Novi {0} kreiran"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Novi {0} {1} dodat u kontrolnu tablu {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Novi {0} {1} kreiran"
@@ -16689,7 +16686,7 @@ msgstr "Novi {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Novi {} verzije za sledeće aplikacija su dostupne"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
@@ -16816,7 +16813,7 @@ msgstr "Sledeće na klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16957,7 +16954,7 @@ msgstr "Nema rezultata"
msgid "No Results found"
msgstr "Nijedan rezultat nije pronađen"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "Uloge nisu navedene"
@@ -17025,7 +17022,7 @@ msgstr "Nijedan kontakt nije još uvek dodat."
msgid "No contacts linked to document"
msgstr "Nijedan kontakt nije povezan sa dokumentom"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Nema podataka za izvoz"
@@ -17217,7 +17214,7 @@ msgstr "Normalizovane kopije"
msgid "Normalized Query"
msgstr "Normalizovani upiti"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Nije dozvoljeno"
@@ -17273,7 +17270,7 @@ msgstr "Ne može biti prazno"
msgid "Not Permitted"
msgstr "Nije dozvoljeno"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "Nije dozvoljeno za čitanje {0}"
@@ -17283,8 +17280,8 @@ msgstr "Nije dozvoljeno za čitanje {0}"
msgid "Not Published"
msgstr "Nije objavljeno"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17317,7 +17314,7 @@ msgstr "Nije postavljeno"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Nevažeći Comma Separated Value (CSV fajl)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Nevažeća slika korisnika."
@@ -17552,7 +17549,7 @@ msgstr "Obavesti ukoliko nije odgovoreno (u minutima)"
msgid "Notify users with a popup when they log in"
msgstr "Obavesti korisnike putem iskačućeg prozora kada se prijave"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Sada"
@@ -17847,7 +17844,7 @@ msgstr "Na ili nakon"
msgid "On or Before"
msgstr "Na ili pre"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "Na {0}, {1} je napisao/la:"
@@ -17923,7 +17920,7 @@ msgstr "Isključivo administrator može da uređuje"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Isključivo administrator može sačuvati standardni izveštaj. Molimo Vas da preimenujete i sačuvate."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Isključivo administrator može da koristi alat za snimanje"
@@ -18076,7 +18073,7 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorene stavke"
@@ -18131,7 +18128,7 @@ msgstr "Operator mora biti jedan od sledećih {0}"
msgid "Optimize"
msgstr "Optimizuj"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Optimizacija slike..."
@@ -18322,7 +18319,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18681,11 +18678,11 @@ msgstr "Pasivan"
msgid "Password"
msgstr "Lozinka"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "Imejl sa lozinkom poslat"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Resetovanje lozinke"
@@ -18719,7 +18716,7 @@ msgstr "Lozinka nije uneta u imejl nalogu"
msgid "Password not found for {0} {1} {2}"
msgstr "Lozinka nije pronađena za {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}"
@@ -18731,7 +18728,7 @@ msgstr "Lozinka postavljena"
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke premašuje dozvoljenu granicu"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličine lozinke premašuje dozvoljenu granicu."
@@ -19102,7 +19099,7 @@ msgstr "Molimo Vas da duplirate ovu temu veb-sajta da biste je prilagodili."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Molimo Vas da instalirate Idap3 biblioteku putem pip-a da biste koristili Idap funkcionalnost."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Molimo Vas da postavite grafikon"
@@ -19118,7 +19115,7 @@ msgstr "Molimo Vas da dodate naslov u Vaš imejl"
msgid "Please add a valid comment."
msgstr "Molimo Vas da dodate validan komentar."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registraciju"
@@ -19150,7 +19147,7 @@ msgstr "Molimo Vas da proverite vrednosti filtera postavljene za grafikon za kon
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Molimo Vas da proverite vrednosti polja \"Preuzmi iz\" postavljenih za polje {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Molimo Vas da proverite svoj imejl za verifikaciju"
@@ -19341,7 +19338,7 @@ msgstr "Molimo Vas da prvo izaberete vrstu entiteta"
msgid "Please select Minimum Password Score"
msgstr "Molimo Vas da odaberete minimalnu ocenu jačine lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Molimo Vas da izaberete X i Y polja"
@@ -19399,7 +19396,7 @@ msgstr "Molimo Vas da postavite imejl adresu"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Molimo Vas da postavite mapiranje štampača za ovaj format štampe u podešavanjima štampe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Molimo Vas da postavite filtere"
@@ -19427,7 +19424,7 @@ msgstr "Molimo Vas da postavite SMS pre nego što ga postavite kao metod autenti
msgid "Please setup a message first"
msgstr "Molimo Vas da prvo postavite poruku"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Podešavanja > Imejl nalog"
@@ -19645,11 +19642,11 @@ msgstr "Korisnik pripremljenog izveštaja"
msgid "Prepared report render failed"
msgstr "Prikaz pripremljenog izveštaja nije uspeo"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Priprema izveštaja"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Dodaj šablon na početak imejl poruke"
@@ -19714,7 +19711,7 @@ msgstr "Pregled na {0}"
msgid "Preview type"
msgstr "Vrsta pregleda"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Pregled:"
@@ -19785,16 +19782,16 @@ msgstr "Primarni ključ za doctype {0} ne može biti promenjen jer sadrži posto
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Štampa"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Štampa"
@@ -19864,7 +19861,7 @@ msgstr "Pomoć za format štampe"
msgid "Print Format Type"
msgstr "Vrsta formata štampe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr "Format štampe nije pronađen"
@@ -19899,7 +19896,7 @@ msgstr "Sakrij štampu"
msgid "Print Hide If No Value"
msgstr "Sakrij štampu ukoliko nema vrednosti"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Jezik štampe"
@@ -20045,7 +20042,7 @@ msgstr "Savet: Dodaje Reference: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Ipak nastavi"
@@ -20351,7 +20348,7 @@ msgstr "Izveštaj po upitu"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analiza upita završena. Pogledajte predložene indekse."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Upit mora biti vrste SELECT ili read-only."
@@ -20548,7 +20545,7 @@ msgstr "Re:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "Re: {0}"
@@ -20624,7 +20621,7 @@ msgstr "Pročitao primalac na"
msgid "Read mode"
msgstr "Režim čitanja"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Pročitajte dokumentaciju za više informacija"
@@ -20644,7 +20641,7 @@ msgstr "U realnom vremenu (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Obnovi"
@@ -20790,12 +20787,12 @@ msgstr "Preusmeravanja"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis cache server nije pokrenut. Molimo Vas da kontaktirate administrator / tehničku podršku"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Vrati"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Vrati poslednju radnju"
@@ -21009,11 +21006,11 @@ msgid "Referrer"
msgstr "Izvor pristupa"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21052,7 +21049,7 @@ msgstr "Osvežavanje"
msgid "Refreshing..."
msgstr "Osvežavanje..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Registrovano, ali onemogućeno"
@@ -21101,7 +21098,7 @@ msgstr "Ponovo povezano"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Ponovno učitavanje"
@@ -21132,7 +21129,7 @@ msgstr "Zapamti poslednju izabranu vrednost"
msgid "Remind At"
msgstr "Podsetnik u"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Podseti me"
@@ -21214,7 +21211,7 @@ msgstr "Uklonjeno"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21242,7 +21239,7 @@ msgstr "Prikazivanja oznaka sa leve strane i vrednosti sa desne strane u ovom od
msgid "Reopen"
msgstr "Ponovo otvori"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Ponovi"
@@ -21432,7 +21429,7 @@ msgstr "Menadžer izveštavanja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Naziv izveštaja"
@@ -21484,7 +21481,7 @@ msgstr "Izveštaj nema podataka, molimo Vas da izmenite filtere ili promenite na
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izveštaj nema numeričkih polja, molimo Vas da promenite naziv izveštaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status"
@@ -21496,7 +21493,7 @@ msgstr "Dostignuto je ograničenje izveštaja"
msgid "Report timed out."
msgstr "Izveštaj je istekao."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Izveštaj je uspešno ažuriran"
@@ -21504,7 +21501,7 @@ msgstr "Izveštaj je uspešno ažuriran"
msgid "Report was not saved (there were errors)"
msgstr "Izveštaj nije sačuvan (dogodile su se greške)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Izveštaj sa više od 10 kolona izgleda bolje u pejzažnom režimu."
@@ -21540,7 +21537,7 @@ msgstr "Izveštaji"
msgid "Reports & Masters"
msgstr "Izveštaji i master podaci"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Izveštaji su već u redu"
@@ -21979,7 +21976,7 @@ msgstr "Dozvole uloga"
msgid "Role Permissions Manager"
msgstr "Menadžer dozvola uloga"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Menadžer dozvola uloga"
@@ -22013,7 +22010,7 @@ msgstr "Replikacija uloga"
msgid "Role and Level"
msgstr "Uloga i nivo"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema vrsti korisnika {0}"
@@ -22406,12 +22403,12 @@ msgstr "Subota"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22438,7 +22435,7 @@ msgstr "Sačuvaj kao"
msgid "Save Customizations"
msgstr "Sačuvaj prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Sačuvaj izveštaj"
@@ -22457,7 +22454,7 @@ msgstr "Sačuvaj dokument."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22505,7 +22502,7 @@ msgstr "Skeniraj QR kod i unesi prikazani kod."
msgid "Schedule"
msgstr "Raspored"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Zakazati slanje u"
@@ -22814,7 +22811,7 @@ msgstr "Podešavanja bezbednosti"
msgid "See all Activity"
msgstr "Pogledaj sve aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izveštaje."
@@ -22882,8 +22879,8 @@ msgstr "Izaberi"
msgid "Select All"
msgstr "Izaberi sve"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22949,7 +22946,7 @@ msgstr "Izaberite vrste dokumenata kako biste postavili koje korisničke dozvole
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Izaberi polje"
@@ -23020,7 +23017,7 @@ msgid "Select Page"
msgstr "Izaberi stranicu"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Izaberi format štampe"
@@ -23112,13 +23109,13 @@ msgstr "Izaberi bar jedan zapis za štampanje"
msgid "Select atleast 2 actions"
msgstr "Izaberi bar 2 radnje"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Izaberi stavku iz liste"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Izaberi više stavki iz liste"
@@ -23234,7 +23231,7 @@ msgstr "Pošalji sada"
msgid "Send Print as PDF"
msgstr "Pošalji kao PDF za štampu"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Pošalji potvrdu o čitanju"
@@ -23297,7 +23294,7 @@ msgstr "Pošalji upite na ovu imejl adresu"
msgid "Send login link"
msgstr "Pošalji link za prijavu"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Pošalji mi kopiju"
@@ -23459,7 +23456,7 @@ msgstr "IP adresa servera"
msgid "Server Script"
msgstr "Serverska skripta"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Serverska skripta je onemogućena. Molimo Vas da je omogućite u konfiguraciji komandne linije."
@@ -23498,11 +23495,11 @@ msgstr "Podešavanje podrazumevane sesije"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Podrazumevane vrednosti sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Podrazumevane vrednosti sesije su sačuvane"
@@ -23538,7 +23535,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi baner iz slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Postavi grafikon"
@@ -23564,7 +23561,7 @@ msgstr "Postavi filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Postavi nivo"
@@ -23760,7 +23757,7 @@ msgstr "Postavljanje sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23806,7 +23803,7 @@ msgstr "Postavke > Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavke > Korisničke dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavke automatskog imejla"
@@ -24009,7 +24006,7 @@ msgstr "Prikaži izbor jezika"
msgid "Show Line Breaks after Sections"
msgstr "Prikaži prelom linije nakon odeljka"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Prikaži linkove"
@@ -24085,7 +24082,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Prikaži ključ za prijavljivanje putem društvenih mreža kao autorizacioni server"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Prikaži oznake"
@@ -24259,7 +24256,7 @@ msgstr "Bočna traka i komentari"
msgid "Sign Up and Confirmation"
msgstr "Registracija i potvrda"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Registracija je onemogućena"
@@ -25061,7 +25058,7 @@ msgstr "Poddomen"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Naslov"
@@ -25100,7 +25097,7 @@ msgstr "Red čekanja za podnošenje"
msgid "Submit"
msgstr "Podnesi"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Podnesi"
@@ -25158,7 +25155,7 @@ msgstr "Podnesite ovaj dokument da biste završili ovaj korak."
msgid "Submit this document to confirm"
msgstr "Podnesite ovaj dokument da biste potvrdili"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Podnesi {0} dokumenata?"
@@ -25307,7 +25304,7 @@ msgstr "Predloži optimizacije"
msgid "Suggested Indexes"
msgstr "Predloži indekse"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Predloženo korisničko ime: {0}"
@@ -25850,7 +25847,7 @@ msgstr "Upozorenja u šablonu"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Privremeno onemogućeno"
@@ -26122,11 +26119,11 @@ msgstr "Broj projekta dobijen putem Google Cloud konzole, u odeljku "
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "Link za resetovanje lozinke je istekao"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "Link za resetovanje lozinke je već korišćen ili je nevažeći"
@@ -26203,7 +26200,7 @@ msgstr "Nemate predstojećih događaja."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ne biste započeli jedan!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
@@ -26232,7 +26229,7 @@ msgstr "Trenutno nema ničeg novog da se prikaže."
msgid "There is some problem with the file url: {0}"
msgstr "Došlo je do problema sa URL adresom fajla: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
@@ -26256,7 +26253,7 @@ msgstr "Došlo je do grešaka"
msgid "There were errors while creating the document. Please try again."
msgstr "Došlo je do grešaka prilikom kreiranja dokumenta. Molimo Vas da pokušate ponovo."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Došlo je do greške prilikom slanja imejla. Molimo Vas da pokušate ponovo."
@@ -26433,7 +26430,7 @@ msgstr "Ovaj provajder geolokacije još uvek nije podržan."
msgid "This goes above the slideshow."
msgstr "Ovo se prikazuje iznad prezentacije."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je izveštaj koji se generiše u pozadini. Postavite odgovarajuće filtere i zatim generišite novi izveštaj."
@@ -26489,7 +26486,7 @@ msgstr "Ovo može biti odštampano na više stranica"
msgid "This month"
msgstr "Ovaj mesec"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pretraživaču, umesto toga možete ga {1}."
@@ -26497,7 +26494,7 @@ msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pr
msgid "This report was generated on {0}"
msgstr "Ovaj izveštaj je generisan na {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Ovaj izveštaj je generisan {0}."
@@ -26563,7 +26560,7 @@ msgstr "Ovo će resetovati obilazak i prikazati je svim korisnicima. Da li ste s
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Ovo će trenutno prekinuti zadatak i može biti rizično, da li ste sigurni? "
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Zagušeno"
@@ -26917,7 +26914,7 @@ msgstr "Da biste izvršili izvoz ovog koraka kao JSON, povežite ga u dokumentu
msgid "To generate password click {0}"
msgstr "Za generisanje lozinke kliknite {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Za ažurirani izveštaj kliknite na {0}."
@@ -26992,7 +26989,7 @@ msgstr "Prebaci u prikaz mreže"
msgid "Toggle Sidebar"
msgstr "Prebaci bočnu traku"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Prebaci bočnu traku"
@@ -27054,7 +27051,7 @@ msgstr "Previše promena baze podatka u jednoj radnji."
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Previše zadataka u pozadini u redu čekanja ({0}). Molimo Vas da pokušate ponovo kasnije."
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Previše korisnika se registrovalo u poslednje vreme, stoga je registracija privremeno onemogućena. Pokušajte ponovo za sat vremena"
@@ -27116,9 +27113,9 @@ msgstr "Gore desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Ukupno"
@@ -27288,7 +27285,7 @@ msgstr "Tranizicija"
msgid "Translatable"
msgstr "Moguće prevođenje"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "Prevedi podatke"
@@ -27321,6 +27318,11 @@ msgstr "Prevod"
msgid "Translations"
msgstr "Prevodi"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27659,11 +27661,11 @@ msgstr "Neuhvaćeni izuzetak"
msgid "Unchanged"
msgstr "Neizmenjeno"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Poništi"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Poništi poslednju radnju"
@@ -27672,7 +27674,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr "Navodnici nisu pravilno izbegnuti u tekstualnom izrazu: {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Zaustavi praćenje"
@@ -27744,7 +27746,7 @@ msgstr "Nepročitano"
msgid "Unread Notification Sent"
msgstr "Poslata obaveštenja o nepročitanim"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
@@ -27758,7 +27760,7 @@ msgstr "Poništi odabir svega"
msgid "Unshared"
msgstr "Nije podeljeno"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Otkazivanje pretplate"
@@ -27778,7 +27780,7 @@ msgstr "Parametri otkazivanja pretplate"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Otkazana pretplata"
@@ -28187,7 +28189,7 @@ msgstr "Korisnik ne može da kreira"
msgid "User Cannot Search"
msgstr "Korisnik ne može da pretražuje"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Korisnik promenjen"
@@ -28293,12 +28295,12 @@ msgstr "Korisnička dozvola"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Korisničke dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke dozvole"
@@ -28399,15 +28401,15 @@ msgstr "Korisnik sa imejl adresom {0} ne postoji"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Korisnik sa imejlom: {0} ne postoji u sistemu. Molimo Vas da kontaktirate 'Sistem administratora' da kreira korisnika za Vas."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} ne može biti obrisan"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} ne može biti onemogućen"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} ne može biti preimenovan"
@@ -28428,7 +28430,7 @@ msgstr "Korisnik {0} nema dozvolu da kreira radni prostor."
msgid "User {0} has requested for data deletion"
msgstr "Korisnik {0} je zatražio brisanje podataka"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} se predstavlja kao {1}"
@@ -28457,7 +28459,7 @@ msgstr "URI sa podacima o korisniku"
msgid "Username"
msgstr "Korisničko ime"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Korisničko ime {0} već postoji"
@@ -28730,7 +28732,7 @@ msgstr "Prikaz"
msgid "View All"
msgstr "Prikaži sve"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Prikaži istoriju izmena"
@@ -29017,6 +29019,7 @@ msgstr "Prikaz na vebu"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29282,11 +29285,11 @@ msgstr "URL za dobrodošlicu"
msgid "Welcome Workspace"
msgstr "Dobro došli u radni prostor"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Imejl dobrodošlice je poslat"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Dobro došli u {0}"
@@ -29640,7 +29643,7 @@ msgstr "Polje Y ose"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y polje"
@@ -29701,7 +29704,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29776,7 +29779,7 @@ msgstr "Nemate dozvolu da izvezete doctype {}"
msgid "You are not allowed to print this report"
msgstr "Nemate dozvolu da odštampate ovaj izveštaj"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Nemate dozvolu da pošaljete imejl vezan za ovaj dokument"
@@ -29891,7 +29894,7 @@ msgstr "Možete izabrati jednu od sledećih,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Možete postaviti višu vrednost ovde ukoliko se više korisnika prijavljuje sa iste mreže."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati da promenite filtere Vašeg izveštaja."
@@ -29976,7 +29979,7 @@ msgstr "Nemate dovoljno dozvola da dovršite ovu radnju"
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dozvolu za pristup polju: {0}"
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -30172,7 +30175,7 @@ msgstr "Prestali ste da pratite ovaj dokument"
msgid "You viewed this"
msgstr "Pregledali ste ovo"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Prijavljeni ste kao drugi korisnik na drugoj kartici. Osvežite ovu stranicu da biste nastavili rad u sistemu."
@@ -30213,11 +30216,11 @@ msgstr "Vaš nalog je zaključan i biće ponovo omogućen nakon {0} sekundi"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Vaša dodela za {0} {1} je uklonjena od strane {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Vaš internet pretraživač ne podržava zvučni element."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Vaš internet pretraživač ne podržava video element."
@@ -31096,7 +31099,7 @@ msgstr "{0} nije dozvoljeno menjati {1}, nakon što je podneto od {2} za {3}"
msgid "{0} Report"
msgstr "{0} izveštaj"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} izveštaji"
@@ -31267,7 +31270,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodelio podrazumevanu vrednost za {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} je napustio razgovor u {1} {2}"
@@ -31438,11 +31441,11 @@ msgstr "{0} je postavljeno"
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "odabrano {0} stavki"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} se upravo predstavio kao Vi. Naveo je sledeći razlog: {1}"
@@ -31578,7 +31581,7 @@ msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta"
msgid "{0} row #{1}: "
msgstr "{0} red#{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} je uspešno sačuvano"
@@ -31620,7 +31623,7 @@ msgstr "{0} je podneo ovaj dokument {1}"
msgid "{0} subscribers added"
msgstr "{0} pretplatnika dodato"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} da biste prestali da primate imejl ove vrste"
@@ -31807,7 +31810,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} je postavljeno na stanje {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} u odnosu na {2}"
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index c2a363a9a7..2072a76fdc 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-17 20:13\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr "1 dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender Händelse Synkroniserad."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 Rapport"
@@ -706,11 +706,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Hej,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Rapporter & Inställningar"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Varning: Detta fält är system genererad och kan skrivas över av framtida uppdateringar. Ändra det med {0} istället."
@@ -1029,7 +1024,6 @@ msgstr "Exakt antal kan inte hämtas, klicka här för att se alla dokument"
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1095,10 +1089,10 @@ msgstr "Åtgärd {0} misslyckades {1} {2}. Visa {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Åtgärder"
@@ -1160,8 +1154,8 @@ msgstr "Aktivitet Logg"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Lägg till"
@@ -1178,7 +1172,7 @@ msgstr "Lägg till / Uppdatera"
msgid "Add A New Rule"
msgstr "Lägg till Ny Regel"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Lägg till Bilaga"
@@ -1202,7 +1196,7 @@ msgstr "Lägg till Kant Längst Upp"
msgid "Add Card to Dashboard"
msgstr "Lägg till i Översikt Panel"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Lägg till Diagram i Översikt Panel"
@@ -1211,8 +1205,8 @@ msgid "Add Child"
msgstr "Lägg till Underval"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1273,7 +1267,7 @@ msgstr "Lägg till Deltagare"
msgid "Add Query Parameters"
msgstr "Lägg till Fråge Parametrar"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Lägg till Roller"
@@ -1283,7 +1277,7 @@ msgstr "Lägg till Rad "
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Lägg till Signatur"
@@ -1306,12 +1300,12 @@ msgstr "Lägg till Prenumeranter"
msgid "Add Tags"
msgstr "Lägg till Taggar"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Lägg till Taggar"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Lägg till Mall"
@@ -1418,7 +1412,7 @@ msgid "Add tab"
msgstr "Lägg till flik"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Lägg till i Översikt Panel"
@@ -1573,11 +1567,11 @@ msgstr "Administration"
msgid "Administrator"
msgstr "Administratör"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Administratör Inloggad"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administratör loggade in {0} {1} via IP Adress {2}."
@@ -2121,7 +2115,7 @@ msgstr "Tillåter att aktiverad Social Inloggning Nyckel Bas URL visas som aukto
msgid "Allows skipping authorization if a user has active tokens."
msgstr "Tillåter hoppa över auktorisering om användare har aktiva tokens."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Redan Registrerad"
@@ -2220,7 +2214,7 @@ msgstr "Ändring Ej Tillåten"
msgid "Amendment naming rules updated."
msgstr "Ändring Namngivning Regler uppdaterad."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Fel inträffade vid konfiguration av Session Standard"
@@ -2396,7 +2390,7 @@ msgstr "Tillämpad På"
msgid "Apply"
msgstr "Tillämpa"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Tillämpa Tilldelning Regel"
@@ -2477,7 +2471,7 @@ msgstr "Arkiverad"
msgid "Archived Columns"
msgstr "Arkiverade Kolumner"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "Är du säker på att du vill ta bort tilldelningar?"
@@ -2509,7 +2503,7 @@ msgstr "Är du säker på att du vill ta bort flik? Alla avsnitt och fält i fli
msgid "Are you sure you want to discard the changes?"
msgstr "Är du säker på att du vill ignorera ändringar?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "Är du säker på att du vill skapa ny rapport?"
@@ -2581,7 +2575,7 @@ msgstr "Tilldela Villkor"
msgid "Assign To"
msgstr "Tilldela till"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tilldela till"
@@ -2738,7 +2732,7 @@ msgstr "Minst ett fält av Överordnad Dokument Typ erfordras"
msgid "Attach"
msgstr "Bifoga"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Bifoga Dokument Utskrift"
@@ -3231,7 +3225,7 @@ msgstr "B9"
msgid "BCC"
msgstr "Hemlig Kopia Till"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "Hemlig Kopia Till"
@@ -3274,7 +3268,7 @@ msgstr "Bakgrund Bild"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Bakgrund Jobb"
@@ -3880,7 +3874,7 @@ msgstr "ANNULLERAD"
msgid "CC"
msgstr "Kopia Till"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "Kopia Till"
@@ -4071,7 +4065,7 @@ msgstr "Kan inte byta namn på {0} till {1} eftersom {0} inte finns."
msgid "Cancel"
msgstr "Annullera"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Annullera"
@@ -4089,7 +4083,7 @@ msgstr "Annullera"
msgid "Cancel All Documents"
msgstr "Annullera Alla Dokument"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Annullera {0} dokument?"
@@ -4351,7 +4345,7 @@ msgstr "Kort"
msgid "Card Break"
msgstr "Kort Brytning"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Kort Titel"
@@ -4490,7 +4484,7 @@ msgstr "Diagram Inställningar"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Diagram Namn"
@@ -4659,11 +4653,11 @@ msgstr "Stad/Ort"
msgid "Clear"
msgstr "Rensa"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Rensa & Lägg till Mall"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Rensa & Lägg till Mall"
@@ -4671,7 +4665,7 @@ msgstr "Rensa & Lägg till Mall"
msgid "Clear All"
msgstr "Rensa Alla"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Rensa Tilldelning"
@@ -4697,7 +4691,7 @@ msgstr "Rensa Logg Efter (dagar)"
msgid "Clear User Permissions"
msgstr "Rensa Användare Rättigheter"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "Rensa e-post meddelande och lägg till mall"
@@ -4939,7 +4933,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Fäll In"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Fäll In Alla"
@@ -4994,7 +4988,7 @@ msgstr "Infällbar beror på (JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5244,7 +5238,7 @@ msgstr "Klar"
msgid "Complete By"
msgstr "Klar Senast"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Slutför Registrering"
@@ -5655,7 +5649,7 @@ msgstr "Kopiera inbäddningskod"
msgid "Copy error to clipboard"
msgstr "Kopiera fel till urklipp"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Kopiera till Urklipp"
@@ -5779,7 +5773,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5793,13 +5787,13 @@ msgstr "Skapa & Fortsätt"
msgid "Create Address"
msgstr "Skapa Adress"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Skapa Kort"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Skapa Diagram"
@@ -6263,12 +6257,12 @@ msgstr "Anpassningar för {0} som exporterades till:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Anpassa"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Anpassa"
@@ -6912,7 +6906,7 @@ msgstr "Försenad"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6921,7 +6915,7 @@ msgstr "Försenad"
msgid "Delete"
msgstr "Ta bort"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Ta bort"
@@ -6957,7 +6951,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Ta bort Flik"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Ta bort och Skapa Ny"
@@ -6999,12 +6993,12 @@ msgstr "Ta bort flik"
msgid "Delete this record to allow sending to this email address"
msgstr "Ta bort denna post för att tillåta utskick till denna E-post"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Ta bort {0} Post permanent?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Ta bort {0} Poster permanent?"
@@ -7412,8 +7406,8 @@ msgstr "Inaktivera Registrering"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Inaktiverad"
@@ -7422,7 +7416,7 @@ msgstr "Inaktiverad"
msgid "Disabled Auto Reply"
msgstr "Inaktiverad Autosvar"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8177,7 +8171,7 @@ msgstr "Nedladdning Länk"
msgid "Download PDF"
msgstr "Ladda ner PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Ladda ner Rapport"
@@ -8261,7 +8255,7 @@ msgid "Due Date Based On"
msgstr "Förfallo Datum Baserad På"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Kopiera"
@@ -8376,9 +8370,9 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8390,7 +8384,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Redigera"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Redigera"
@@ -8425,11 +8419,11 @@ msgstr "Redigera Anpassad Avsnitt"
msgid "Edit Custom HTML"
msgstr "Redigera Anpassad HTML"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "Redigera DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Redigera DocType"
@@ -8606,7 +8600,7 @@ msgstr "Element Väljare"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8641,7 +8635,7 @@ msgstr "E-post Konto Inaktiverad"
msgid "Email Account Name"
msgstr "E-post Konto Namn"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "E-post Konto lagt till flera gånger"
@@ -8748,7 +8742,7 @@ msgstr "E-post Kö"
msgid "Email Queue Recipient"
msgstr "E-post Kö Mottagare"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "E-post Kö spolning avbröts på grund av för många fel."
@@ -8812,7 +8806,7 @@ msgstr "E-post Synkronisering Alternativ"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "E-post Mall"
@@ -8844,7 +8838,7 @@ msgstr "E-post är flyttad till papperskorg"
msgid "Email is mandatory to create User Email"
msgstr "E-post erfordras för att skapa Användare E-post"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "E-post inte skickad till {0} (avregistrerad / inaktiverad)"
@@ -8870,7 +8864,7 @@ msgstr "E-post Hämtade"
msgid "Emails are already being pulled from this account."
msgstr "E-post meddelanden hämtas redan från detta konto."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "E-post är dämpad"
@@ -9096,8 +9090,8 @@ msgstr "Aktivera Webbplats Spårning i App"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Aktiverad"
@@ -9224,7 +9218,7 @@ msgstr "Ange Klient ID och Klient Hemlighet i Google Inställningar."
msgid "Enter Code displayed in OTP App."
msgstr "Ange kod som visad i OTP App."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Ange E-post Mottagare"
@@ -9538,7 +9532,7 @@ msgstr "Exekverar Kod"
msgid "Executing..."
msgstr "Kör..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Exekvering Tid: {0} sek"
@@ -9564,7 +9558,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandera"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandera Alla"
@@ -9625,13 +9619,13 @@ msgstr "Förfallo Tid för QR Kod Bild Sida"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Export"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Export"
@@ -9989,8 +9983,8 @@ msgstr "Hämtar standard Global Sökning dokument."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10560,7 +10554,7 @@ msgid "Folio"
msgstr "Folio"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Följ"
@@ -10752,7 +10746,7 @@ msgstr "För Användare"
msgid "For Value"
msgstr "För Värde"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "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)."
@@ -11014,7 +11008,7 @@ msgstr "Fredag"
msgid "From"
msgstr "Från"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Från"
@@ -11030,7 +11024,7 @@ msgstr "Från Datum"
msgid "From Date Field"
msgstr "Från Datum"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Från DocType"
@@ -11081,7 +11075,7 @@ msgstr "Full Bredd"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funktion"
@@ -11159,7 +11153,7 @@ msgstr "Allmän"
msgid "Generate Keys"
msgstr "Skapa Nycklar"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Skapa Ny Rapport"
@@ -11167,7 +11161,7 @@ msgstr "Skapa Ny Rapport"
msgid "Generate Random Password"
msgstr "Skapa Slumpmässig Lösenord"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "Skapa Spårning URL"
@@ -11283,7 +11277,7 @@ msgstr "Globala Genvägar"
msgid "Global Unsubscribe"
msgstr "Globalt Avregistrering"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Gå"
@@ -11447,8 +11441,6 @@ msgstr "Google Kontakter - kunde inte uppdatera kontakt i Google Kontakter {0},
msgid "Google Contacts Id"
msgstr "Google Kontakter ID"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
@@ -11485,6 +11477,7 @@ msgstr "Google"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11912,6 +11905,10 @@ msgstr "Dold "
msgid "Hidden Fields"
msgstr "Dolda fält"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr "Dolda kolumner inkluderar: {0}"
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12025,7 +12022,7 @@ msgstr "Dölj Sidofält, Meny och Kommentarer"
msgid "Hide Standard Menu"
msgstr "Dölj Standard Meny"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Dölj Taggar"
@@ -12581,7 +12578,7 @@ msgstr "Bild Fält måste vara av typ Bifoga Bild"
msgid "Image link '{0}' is not valid"
msgstr "Bild Länk \"{0}\" är inte giltig"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Bild Optimerad"
@@ -12629,7 +12626,7 @@ msgstr "Implicit"
msgid "Import"
msgstr "Importera"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importera"
@@ -12857,11 +12854,15 @@ msgstr "Inkludera Tema från Appar"
msgid "Include Web View Link in Email"
msgstr "Inkludera Länk till Webbvy i E-post"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Inkludera Filter"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr "Inkludera dolda kolumner"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Inkludera Fördjupning"
@@ -13019,7 +13020,7 @@ msgstr "Infoga \tOvan"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Infoga Efter"
@@ -13210,7 +13211,7 @@ msgstr "Ogiltig"
msgid "Invalid \"depends_on\" expression"
msgstr "Ogiltig 'depends_on' uttryck"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ogiltig uttryck 'beroende på' i filter {0}"
@@ -13321,7 +13322,7 @@ msgstr "Ogiltig Åsidosättning"
msgid "Invalid Parameters."
msgstr "Ogiltiga Parametrar"
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13911,8 +13912,8 @@ msgstr "Jobb Inaktiv"
msgid "Join video conference with {0}"
msgstr "Anslut till Videokonferens med {0}"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Hoppa till Fält"
@@ -14877,7 +14878,7 @@ msgstr "Lista Filter"
msgid "List Settings"
msgstr "Lista Inställningar"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Lista Inställningar"
@@ -14949,7 +14950,7 @@ msgstr "Läs in mer"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Laddar"
@@ -15658,7 +15659,7 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15695,7 +15696,7 @@ msgstr "Meddelande Skickad"
msgid "Message Type"
msgstr "Meddelande Typ"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Meddelande Urlippt"
@@ -16410,12 +16411,12 @@ msgstr "Toppfält Mall"
msgid "Navbar Template Values"
msgstr "Toppfält Mall Värden"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navigera lista ner"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navigera lista upp"
@@ -16547,10 +16548,6 @@ msgstr "Ny Meddelande från Webbplats Kontakt Sida"
msgid "New Name"
msgstr "Ny Namn"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Ny Nyhetsbrev"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Ny Avisering"
@@ -16653,7 +16650,7 @@ msgstr "Ny värde att ange"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16665,15 +16662,15 @@ msgstr "Ny värde att ange"
msgid "New {0}"
msgstr "Ny {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Ny {0} skapad"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Ny {0} {1} har lagts till i Översikt Panel {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Ny {0} {1} skapad"
@@ -16685,7 +16682,7 @@ msgstr "Ny {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Nya {} versioner för följande appar finns tillgängliga"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "Nyskapad användare {0} har inga roller aktiverade."
@@ -16812,7 +16809,7 @@ msgstr "Nästa på Klick"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nej"
@@ -16953,7 +16950,7 @@ msgstr "Inga Träffar"
msgid "No Results found"
msgstr "Inga Träffar"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "Inga Roller Specificerade"
@@ -17021,7 +17018,7 @@ msgstr "Inga kontakter upplagda än."
msgid "No contacts linked to document"
msgstr "Inga Kontakter länkade till dokument"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Ingen Data att exportera"
@@ -17213,7 +17210,7 @@ msgstr "Normaliserade Kopior"
msgid "Normalized Query"
msgstr "Normaliserad Fråga"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Ej Tillåtet"
@@ -17269,7 +17266,7 @@ msgstr "Ej Nollställbar"
msgid "Not Permitted"
msgstr "Inte Tillåtet"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "Ej Tillåtet att läsa {0}"
@@ -17279,8 +17276,8 @@ msgstr "Ej Tillåtet att läsa {0}"
msgid "Not Published"
msgstr "Ej Publicerad"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17313,7 +17310,7 @@ msgstr "Ej Angiven"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Ej giltig Komma Separerad Värde (CSV Fil)"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Ej giltig Användare Bild."
@@ -17548,7 +17545,7 @@ msgstr "Avisera om Obesvarade för (i minuter)"
msgid "Notify users with a popup when they log in"
msgstr "Avisera Användare med Meddelande vid första Inloggning"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Nu"
@@ -17843,7 +17840,7 @@ msgstr "På eller efter"
msgid "On or Before"
msgstr "På eller före"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "{0}, {1} skrev"
@@ -17919,7 +17916,7 @@ msgstr "Endast Administratör kan redigera"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Endast Administratör kan spara standard rapport. Byt namn och spara."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Endast Administratör får använda Inspelare"
@@ -18072,7 +18069,7 @@ msgstr "Öppna konsol"
msgid "Open in a new tab"
msgstr "Öppna i ny flik"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Öppna List Post"
@@ -18127,7 +18124,7 @@ msgstr "Operatören måste vara en av {0}"
msgid "Optimize"
msgstr "Optimera"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Optimerar bild..."
@@ -18318,7 +18315,7 @@ msgstr "PATCH"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18677,11 +18674,11 @@ msgstr "Passiv"
msgid "Password"
msgstr "Lösenord"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "Lösenord skickat via E-post"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Lösenord Återställning"
@@ -18715,7 +18712,7 @@ msgstr "Lösenord saknas i E-post Konto"
msgid "Password not found for {0} {1} {2}"
msgstr "Lösenord hittades inte för {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Instruktioner för återställning av lösenord är skickade till {}'s e-post"
@@ -18727,7 +18724,7 @@ msgstr "Lösenord angiven"
msgid "Password size exceeded the maximum allowed size"
msgstr "Lösenord längd överskred maximum tillåten längd."
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "Lösenord längd överskred maximum tillåten längd."
@@ -19098,7 +19095,7 @@ msgstr "Kopiera Webbplats Tema för att anpassa."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Installera ldap3 bibliotek via pip3 för att använda ldap funktion."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Skapa Diagram"
@@ -19114,7 +19111,7 @@ msgstr "Lägg till ämne i E-post"
msgid "Please add a valid comment."
msgstr "Lägg till giltig kommentar."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Be Administratör att verifiera din registrering"
@@ -19146,7 +19143,7 @@ msgstr "Kontrollera filter värden angivna för Översikt Panel Diagram: {}"
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Kontrollera värde för uppsättning 'Hämta från' för fält {0}"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Kontrollera din E-post för verifiering"
@@ -19337,7 +19334,7 @@ msgstr "Välj Entitet Typ"
msgid "Please select Minimum Password Score"
msgstr "Välj Minsta Lösenord Värde"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Välj X och Y fält"
@@ -19395,7 +19392,7 @@ msgstr "Ange E-postadress"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Ange skrivare mappning för detta utskrift format i Utskrift Inställningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Ange Filter"
@@ -19423,7 +19420,7 @@ msgstr "Konfigurera SMS före du anger den som Autentisering Sätt via SMS Inst
msgid "Please setup a message first"
msgstr "Försäljning Order Meddelande"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Ange Standard E-post Konto från Inställningar > E-post > E-post Konto"
@@ -19641,11 +19638,11 @@ msgstr "Förberedd Rapport Användare"
msgid "Prepared report render failed"
msgstr "Förberedd Rapport Misslyckad"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Förbereder Rapport"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Lägg mall före e-post meddelande"
@@ -19710,7 +19707,7 @@ msgstr "Förhandsgranskning på {0}"
msgid "Preview type"
msgstr "Förhandsgranskning typ"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Förhandsgranska:"
@@ -19781,16 +19778,16 @@ msgstr "Primär nyckel för doctype {0} kan inte ändras eftersom det finns befi
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Utskrift"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Utskrift"
@@ -19860,7 +19857,7 @@ msgstr "Utskrift Format Hjälp"
msgid "Print Format Type"
msgstr "Utskrift Format Typ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr "Utskriftsformat hittades inte"
@@ -19895,7 +19892,7 @@ msgstr "Dölj"
msgid "Print Hide If No Value"
msgstr "Dölj Utskrift om Ingen Värde"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Utskrift Språk"
@@ -20041,7 +20038,7 @@ msgstr "Tips: Lägg Referens: {{ reference_doctype }} {{ reference_name }}
msgid "Proceed"
msgstr "Fortsätt"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Fortsätt Ändå"
@@ -20347,7 +20344,7 @@ msgstr "Dataförfråga Rapport"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Frågeanalys klar. Kontrollera föreslagna index."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Dataförfråga måste vara av typen SELECT eller skrivskyddad WITH."
@@ -20544,7 +20541,7 @@ msgstr "Sv:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "Sv: {0}"
@@ -20620,7 +20617,7 @@ msgstr "Läst av Mottagare(Datum)"
msgid "Read mode"
msgstr "Läs läge "
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Läs dokumentation för att reda på mer"
@@ -20640,7 +20637,7 @@ msgstr "Realtid (SocketIO)"
msgid "Reason"
msgstr "Anledning"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Uppdatera"
@@ -20786,12 +20783,12 @@ msgstr "Omdirigeringar"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis server är inte igång . Kontakta Administratör / Teknisk support"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "Återskapa"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Återskapa senaste åtgärd"
@@ -21005,11 +21002,11 @@ msgid "Referrer"
msgstr "Referens"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21048,7 +21045,7 @@ msgstr "Uppdaterar"
msgid "Refreshing..."
msgstr "Uppdaterar..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Registrerad men inaktiverad"
@@ -21097,7 +21094,7 @@ msgstr "Omlänkad"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Ladda om"
@@ -21128,7 +21125,7 @@ msgstr "Kom ihåg Senast Valda Värde"
msgid "Remind At"
msgstr "Påminn Mig"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Påminn mig"
@@ -21210,7 +21207,7 @@ msgstr "Borttagen"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21238,7 +21235,7 @@ msgstr "Rendera etikett till vänster och värde till höger i detta sektion"
msgid "Reopen"
msgstr "Öppna Igen"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Upprepa"
@@ -21428,7 +21425,7 @@ msgstr "Rapport Ansvarig"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Rapport Namn"
@@ -21480,7 +21477,7 @@ msgstr "Rapport har ingen data, ändra filter eller ändra rapport namn"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Rapport har inga numeriska fält, ändra rapport namn"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Rapport initierad, klicka för att se status"
@@ -21492,7 +21489,7 @@ msgstr "Rapport gräns nådd"
msgid "Report timed out."
msgstr "Rapport förföll."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Rapport är uppdaterad"
@@ -21500,7 +21497,7 @@ msgstr "Rapport är uppdaterad"
msgid "Report was not saved (there were errors)"
msgstr "Rapport är inte sparad (det fanns fel)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Rapport med mer än 10 kolumner ser bättre ut i Liggande Läge."
@@ -21536,7 +21533,7 @@ msgstr "Rapporter"
msgid "Reports & Masters"
msgstr "Rapporter & Inställningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Rapporter redan i Kö"
@@ -21975,7 +21972,7 @@ msgstr "Roll Behörigheter"
msgid "Role Permissions Manager"
msgstr "Roll Behörigheter Hanterare"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Roll Behörigheter Hanterare"
@@ -22009,7 +22006,7 @@ msgstr "Rollreplikering"
msgid "Role and Level"
msgstr "Roll och Nivå"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Rollen angiven enligt användare typ {0}"
@@ -22402,12 +22399,12 @@ msgstr "Lördag"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22434,7 +22431,7 @@ msgstr "Spara Som"
msgid "Save Customizations"
msgstr "Spara Anpassningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Spara Rapport"
@@ -22453,7 +22450,7 @@ msgstr "Spara Dokument ==>"
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22501,7 +22498,7 @@ msgstr "Skanna QR Kod och ange resulterande koden som visas."
msgid "Schedule"
msgstr "Schema"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Datum och Tid att Skicka"
@@ -22810,7 +22807,7 @@ msgstr "Säkerhet Inställningar"
msgid "See all Activity"
msgstr "Visa All Aktivitet"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Visa alla tidigare rapporter."
@@ -22878,8 +22875,8 @@ msgstr "Välj i Listan"
msgid "Select All"
msgstr "Välj Alla"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22945,7 +22942,7 @@ msgstr "Välj Dokument Typer för att ange vilka användarbehörigheter som anv
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Välj Fält"
@@ -23016,7 +23013,7 @@ msgid "Select Page"
msgstr "Välj Sida"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Välj Utskrift Mall"
@@ -23108,13 +23105,13 @@ msgstr "Välj minst en post för utskrift"
msgid "Select atleast 2 actions"
msgstr "Välj minst två åtgärder"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Välj List Artikel"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Välj flera List Artiklar"
@@ -23230,7 +23227,7 @@ msgstr "Skicka Nu"
msgid "Send Print as PDF"
msgstr "Skicka Utskrift som PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Skicka Läskvitto"
@@ -23293,7 +23290,7 @@ msgstr "Skicka Förfrågningar till denna E-post"
msgid "Send login link"
msgstr "Skicka Inloggning Länk"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Skicka Kopia till mig"
@@ -23455,7 +23452,7 @@ msgstr "Server IP"
msgid "Server Script"
msgstr "Server Skript"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Server Skript är inaktiverad. Aktivera Server Skript från bench."
@@ -23494,11 +23491,11 @@ msgstr "Session Standard Inställningar"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Session Inställningar"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Session Inställningar Sparade"
@@ -23534,7 +23531,7 @@ msgstr "Ange"
msgid "Set Banner from Image"
msgstr "Ange Banderoll från Bild"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Skapa Diagram"
@@ -23560,7 +23557,7 @@ msgstr "Ange Filter"
msgid "Set Filters for {0}"
msgstr "Ange Filter för {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Ange Nivå"
@@ -23756,7 +23753,7 @@ msgstr "Konfigurerar System"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23802,7 +23799,7 @@ msgstr "Inställningar > Användare"
msgid "Setup > User Permissions"
msgstr "Inställningar > Användar Behörigheter"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Automatisk E-post Rapport"
@@ -24005,7 +24002,7 @@ msgstr "Visa Språk Väljare"
msgid "Show Line Breaks after Sections"
msgstr "Visa Rad Brytningar efter Sektioner"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Visa Länkar"
@@ -24081,7 +24078,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr "Visa Social Inloggningsnyckel som Auktorisering Server"
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Visa Taggar"
@@ -24255,7 +24252,7 @@ msgstr "Sidofält och Kommentarer"
msgid "Sign Up and Confirmation"
msgstr "Registrering och Bekräftelse"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Registrering är inaktiverad"
@@ -25057,7 +25054,7 @@ msgstr "Underdomän"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Ämne"
@@ -25096,7 +25093,7 @@ msgstr "Godkännande Kö"
msgid "Submit"
msgstr "Godkänn"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Godkänn"
@@ -25154,7 +25151,7 @@ msgstr "Godkänn detta dokument för att slutföra detta steg."
msgid "Submit this document to confirm"
msgstr "Tryck på Spara/Godkänn för att genomföra."
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Godkänn {0} dokument?"
@@ -25303,7 +25300,7 @@ msgstr "Föreslå Optimeringar"
msgid "Suggested Indexes"
msgstr "Föreslagen Indexering"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Föreslagen Användarnamn: {0}"
@@ -25846,7 +25843,7 @@ msgstr "Mall Varningar"
msgid "Templates"
msgstr "Mallar"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Tillfälligt Inaktiverad"
@@ -26114,11 +26111,11 @@ msgstr "Projekt Nummer erhålln från Google Cloud Console under "
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "Länk för återställning av lösenord har upphört att gälla"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "Länk för återställning av lösenord har antingen använts tidigare eller är ogiltig"
@@ -26195,7 +26192,7 @@ msgstr "Det finns inga kommande händelser för dig."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Det finns inga {0} för denna {1}, varför startar du inte en!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter redan i kö:"
@@ -26224,7 +26221,7 @@ msgstr "Det finns inget nytt att visa dig just nu."
msgid "There is some problem with the file url: {0}"
msgstr "Det finns problem med fil url: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter som redan finns i kö:"
@@ -26248,7 +26245,7 @@ msgstr "Det fanns fel"
msgid "There were errors while creating the document. Please try again."
msgstr "Det fanns fel när dokument skapades . Försök igen."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Det fanns fel när e-post skickades. Försök igen."
@@ -26424,7 +26421,7 @@ msgstr "Denna geolokalisering leverantör stöds inte ännu."
msgid "This goes above the slideshow."
msgstr "Text ovanför Bildspel."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Detta är bakgrund rapport. Ange lämplig filter och skapa ny rapport."
@@ -26480,7 +26477,7 @@ msgstr "Detta kan skrivas ut på flera sidor"
msgid "This month"
msgstr "Nuvarande Månad"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i webbläsare. Du kan {1} denna rapport istället."
@@ -26488,7 +26485,7 @@ msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i w
msgid "This report was generated on {0}"
msgstr "Rapport skapades {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Denna rapport skapades {0}."
@@ -26554,7 +26551,7 @@ msgstr "Detta återställer Formulär Tur och visar den för alla användare. Ä
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Detta avslutar jobb omedelbart och kan vara farligt, är du säker?"
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Strypt"
@@ -26906,7 +26903,7 @@ msgstr "För att exportera detta steget som JSON, länka det till Introduktion d
msgid "To generate password click {0}"
msgstr "För att generera lösenord klicka på {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Klicka på {0} att hämta uppdaterad rapport."
@@ -26981,7 +26978,7 @@ msgstr "Växla Rutnät Vy"
msgid "Toggle Sidebar"
msgstr "Växla Sidofält"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Växla Sidofält"
@@ -27043,7 +27040,7 @@ msgstr "För många ändringar i databas i en enda åtgärd."
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "För många bakgrundsjobb i kö ({0}). Försök igen efter en tid."
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Alltför många Användare registrerade sig nyligen, så registrering är inaktiverad. Försök igen om en timme"
@@ -27105,9 +27102,9 @@ msgstr "Topp Höger"
msgid "Topic"
msgstr "Ämne"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Totalt"
@@ -27277,7 +27274,7 @@ msgstr "Övergångar"
msgid "Translatable"
msgstr "Översättningbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "Översätt Data"
@@ -27310,6 +27307,11 @@ msgstr "Översättning"
msgid "Translations"
msgstr "Översättningar"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr "Översättare"
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27648,11 +27650,11 @@ msgstr "Ofångat Undantag"
msgid "Unchanged"
msgstr "Oförändrad"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Ångra"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Ångra Senaste Åtgärd"
@@ -27661,7 +27663,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr "Oescapede citattecken i sträng literal: {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Sluta Följa"
@@ -27734,7 +27736,7 @@ msgstr "Oläst"
msgid "Unread Notification Sent"
msgstr "Oläst Avisering Skickad"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Osäker SQL Fråga"
@@ -27748,7 +27750,7 @@ msgstr "Avmarkera Alla"
msgid "Unshared"
msgstr "Odelad"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Avregistrera"
@@ -27768,7 +27770,7 @@ msgstr "Avregistrering Parameter"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Avregistrerad"
@@ -28177,7 +28179,7 @@ msgstr "Användare kan inte Skapa"
msgid "User Cannot Search"
msgstr "Användare kan inte Söka"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Användare Ändrad"
@@ -28283,12 +28285,12 @@ msgstr "Användare Behörighet"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Användare Behörigheter"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Användare Behörigheter"
@@ -28389,15 +28391,15 @@ msgstr "Användare med E-post {0} finns inte"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Användare med E-post: {0} finns inte. Be 'System Administratör' om hjälp."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Användare {0} kan inte tas bort"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Användare {0} kan inte inaktiveras"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Användare {0} kan inte byta namn"
@@ -28418,7 +28420,7 @@ msgstr "Användare {0} har inte behörighet att skapa Arbetsyta."
msgid "User {0} has requested for data deletion"
msgstr "Användare {0} begärde radering av data"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "Användare {0} efterliknade som {1}"
@@ -28447,7 +28449,7 @@ msgstr "Användare Info URI"
msgid "Username"
msgstr "Användarnamn"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Användare Namn {0} finns redan"
@@ -28720,7 +28722,7 @@ msgstr "Visa"
msgid "View All"
msgstr "Visa Alla"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Visa Audit Spår"
@@ -29007,6 +29009,7 @@ msgstr "Webb Vy"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29272,11 +29275,11 @@ msgstr "Välkommen URL"
msgid "Welcome Workspace"
msgstr "Välkommen Arbetsyta"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Välkomst E-post skickad"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Välkommen till {0}"
@@ -29630,7 +29633,7 @@ msgstr "Y Axel Fält"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y Fält"
@@ -29691,7 +29694,7 @@ msgstr "Gul"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29766,7 +29769,7 @@ msgstr "Du har inte behörighet att exportera {} doctype"
msgid "You are not allowed to print this report"
msgstr "Du har inte behörighet att skriva ut denna rapport"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Du har inte behörighet att skicka e-post i kopplad till detta dokument"
@@ -29881,7 +29884,7 @@ msgstr "Välja en från följande,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Ange ett högt värde här om flera användare kommer att logga in från samma nätverk."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Du kan försöka ändra Filter i Rapport."
@@ -29966,7 +29969,7 @@ msgstr "Du har inte behörighet att slutföra åtgärd"
msgid "You do not have permission to access field: {0}"
msgstr "Du har inte åtkomstbehörighet till fält: {0}"
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "Du har inte behörighet att komma åt {0}: {1}."
@@ -30162,7 +30165,7 @@ msgstr "Du slutade följa detta dokument"
msgid "You viewed this"
msgstr "Du visade detta"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Inloggad som annan användare från annan flik. Uppdatera dennna sidan för att fortsätta använda system."
@@ -30203,11 +30206,11 @@ msgstr "Konto är låst och kommer att låsas upp efter {0} sekunder"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Din tilldelning {0} {1} togs bort av {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Webbläsare stöder inte ljud element."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Webbläsare stöder inte video element."
@@ -31086,7 +31089,7 @@ msgstr "{0} Ej Tillåtet att ändra {1} efter godkännande från {2} till {3}"
msgid "{0} Report"
msgstr "{0} Rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} Rapporter"
@@ -31257,7 +31260,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} är redan tilldelat standard värde för {1}."
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} har lämnat konversation i {1} {2}"
@@ -31428,11 +31431,11 @@ msgstr "{0} är angiven"
msgid "{0} is within {1}"
msgstr "{0} är inom {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} artiklar valda"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} efterliknade som du. De gav detta skäl: {1}"
@@ -31568,7 +31571,7 @@ msgstr "{0} roll har inte tillstånd på någon doctype"
msgid "{0} row #{1}: "
msgstr "{0} rad #{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} sparad"
@@ -31610,7 +31613,7 @@ msgstr "{0} godkände detta dokument {1}"
msgid "{0} subscribers added"
msgstr "{0} prenumeranter tillagda"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} för att sluta ta emot E-post meddelande av denna typ"
@@ -31797,7 +31800,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} är satt på tillstånd {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} mot {2}"
diff --git a/frappe/locale/th.po b/frappe/locale/th.po
index 3c26fdb13f..20a0efc090 100644
--- a/frappe/locale/th.po
+++ b/frappe/locale/th.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr "1 วัน"
msgid "1 Google Calendar Event synced."
msgstr "1 เหตุการณ์ Google Calendar ซิงค์แล้ว"
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 รายงาน"
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr ""
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการละทิ้งการเปลี่ยนแปลง?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการสร้างรายงานใหม่?"
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr "สำเนาถึง"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "สำเนาถึง"
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr "คัดลอกรหัสฝัง"
msgid "Copy error to clipboard"
msgstr "คัดลอกข้อผิดพลาดไปยังคลิปบอร์ด"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "คัดลอกไปยังคลิปบอร์ด"
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr "การปรับแต่งสำหรับ {0} ถูก
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "ปรับแต่ง"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "ปรับแต่ง"
@@ -6723,7 +6717,7 @@ msgstr "ล่าช้า"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr "ล่าช้า"
msgid "Delete"
msgstr "ลบ"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "ลบ"
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "ลบแท็บ"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "ลบและสร้างใหม่"
@@ -6810,12 +6804,12 @@ msgstr "ลบแท็บ"
msgid "Delete this record to allow sending to this email address"
msgstr "ลบบันทึกนี้เพื่ออนุญาตให้ส่งไปยังที่อยู่อีเมลนี้"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "ลบ {0} รายการอย่างถาวร?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "ลบ {0} รายการอย่างถาวร?"
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr "ดาวน์โหลดลิงก์"
msgid "Download PDF"
msgstr "ดาวน์โหลด PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "ดาวน์โหลดรายงาน"
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr "วันที่ครบกำหนดตาม"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "ซ้ำ"
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr "แก้ไข"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "แก้ไข"
@@ -8233,11 +8227,11 @@ msgstr "แก้ไขบล็อกที่กำหนดเอง"
msgid "Edit Custom HTML"
msgstr "แก้ไข HTML ที่กำหนดเอง"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "แก้ไข DocType"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "แก้ไข DocType"
@@ -8414,7 +8408,7 @@ msgstr "ตัวเลือกองค์ประกอบ"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr "บัญชีอีเมลถูกปิดใช้งาน"
msgid "Email Account Name"
msgstr "ชื่อบัญชีอีเมล"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "เพิ่มบัญชีอีเมลหลายครั้ง"
@@ -8556,7 +8550,7 @@ msgstr "คิวอีเมล"
msgid "Email Queue Recipient"
msgstr "ผู้รับคิวอีเมล"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "การล้างคิวอีเมลถูกยกเลิกเนื่องจากความล้มเหลวมากเกินไป"
@@ -8620,7 +8614,7 @@ msgstr "ตัวเลือกการซิงค์อีเมล"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "แม่แบบอีเมล"
@@ -8652,7 +8646,7 @@ msgstr "อีเมลถูกย้ายไปที่ถังขยะ"
msgid "Email is mandatory to create User Email"
msgstr "อีเมลเป็นสิ่งจำเป็นในการสร้างอีเมลผู้ใช้"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "ไม่ได้ส่งอีเมลถึง {0} (ยกเลิกการสมัคร / ปิดใช้งาน)"
@@ -8678,7 +8672,7 @@ msgstr "ดึงอีเมลแล้ว"
msgid "Emails are already being pulled from this account."
msgstr "กำลังดึงอีเมลจากบัญชีนี้อยู่แล้ว"
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "อีเมลถูกปิดเสียง"
@@ -8903,8 +8897,8 @@ msgstr "เปิดใช้งานการติดตามเว็บไ
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "เปิดใช้งานแล้ว"
@@ -9031,7 +9025,7 @@ msgstr "ป้อน Client Id และ Client Secret ในการตั้
msgid "Enter Code displayed in OTP App."
msgstr "ป้อนรหัสที่แสดงในแอป OTP"
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "ป้อนผู้รับอีเมล"
@@ -9345,7 +9339,7 @@ msgstr "กำลังดำเนินการโค้ด"
msgid "Executing..."
msgstr "กำลังดำเนินการ..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "เวลาการดำเนินการ: {0} วินาที"
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "ขยาย"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "ขยายทั้งหมด"
@@ -9432,13 +9426,13 @@ msgstr "เวลาหมดอายุของหน้าภาพ QR Code"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "ส่งออก"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "ส่งออก"
@@ -9796,8 +9790,8 @@ msgstr "กำลังดึงเอกสารการค้นหาทั
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr "โฟลิโอ"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "ติดตาม"
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr "วันศุกร์"
msgid "From"
msgstr "จาก"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "จาก"
@@ -10837,7 +10831,7 @@ msgstr "จากวันที่"
msgid "From Date Field"
msgstr "ฟิลด์จากวันที่"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "จากประเภทเอกสาร"
@@ -10888,7 +10882,7 @@ msgstr "ความกว้างเต็ม"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "ฟังก์ชัน"
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr "รายชื่อ Google - ไม่สามารถอัปเ
msgid "Google Contacts Id"
msgstr "รหัสรายชื่อ Google"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr "ซ่อน"
msgid "Hidden Fields"
msgstr "ฟิลด์ที่ซ่อนอยู่"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr "ซ่อนแถบด้านข้าง เมนู และค
msgid "Hide Standard Menu"
msgstr "ซ่อนเมนูมาตรฐาน"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "ซ่อนแท็ก"
@@ -12388,7 +12385,7 @@ msgstr "ฟิลด์ภาพต้องเป็นประเภทแน
msgid "Image link '{0}' is not valid"
msgstr "ลิงก์ภาพ '{0}' ไม่ถูกต้อง"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "ภาพถูกปรับแต่งแล้ว"
@@ -12436,7 +12433,7 @@ msgstr "โดยนัย"
msgid "Import"
msgstr "นำเข้า"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "นำเข้า"
@@ -12664,11 +12661,15 @@ msgstr "รวมธีมจากแอป"
msgid "Include Web View Link in Email"
msgstr "รวมลิงก์มุมมองเว็บในอีเมล"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "รวมตัวกรอง"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "รวมการเยื้อง"
@@ -12826,7 +12827,7 @@ msgstr "แทรกด้านบน"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "แทรกหลังจาก"
@@ -13017,7 +13018,7 @@ msgstr "ไม่ถูกต้อง"
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr "การแทนที่ไม่ถูกต้อง"
msgid "Invalid Parameters."
msgstr "พารามิเตอร์ไม่ถูกต้อง"
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr "การรวมสามารถทำได้เฉพาะระ
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr "ส่งข้อความแล้ว"
msgid "Message Type"
msgstr "ประเภทข้อความ"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "ข้อความถูกตัด"
@@ -16215,12 +16216,12 @@ msgstr "แม่แบบแถบนำทาง"
msgid "Navbar Template Values"
msgstr "ค่าของแม่แบบแถบนำทาง"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "เลื่อนรายการลง"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "เลื่อนรายการขึ้น"
@@ -16352,10 +16353,6 @@ msgstr "ข้อความใหม่จากหน้าติดต่อ
msgid "New Name"
msgstr "ชื่อใหม่"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "จดหมายข่าวใหม่"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "การแจ้งเตือนใหม่"
@@ -16456,7 +16453,7 @@ msgstr "ค่าที่จะตั้งใหม่"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr "ค่าที่จะตั้งใหม่"
msgid "New {0}"
msgstr "{0} ใหม่"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "สร้าง {0} ใหม่"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "เพิ่ม {0} {1} ใหม่ในแดชบอร์ด {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "สร้าง {0} {1} ใหม่"
@@ -16488,7 +16485,7 @@ msgstr "{0} ใหม่: {1}"
msgid "New {} releases for the following apps are available"
msgstr "มีการเผยแพร่ {} ใหม่สำหรับแอปต่อไปนี้"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "ผู้ใช้ที่สร้างใหม่ {0} ไม่มีบทบาทที่เปิดใช้งาน"
@@ -16615,7 +16612,7 @@ msgstr "ถัดไปเมื่อคลิก"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr "สำเนาที่ทำให้เป็นมาตรฐาน
msgid "Normalized Query"
msgstr "คำสั่งที่ทำให้เป็นมาตรฐาน"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "ไม่อนุญาต"
@@ -17072,7 +17069,7 @@ msgstr "ไม่สามารถเป็นค่าว่างได้"
msgid "Not Permitted"
msgstr "ไม่ได้รับอนุญาต"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}"
@@ -17082,8 +17079,8 @@ msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}"
msgid "Not Published"
msgstr "ไม่ได้เผยแพร่"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr "ไม่ได้ตั้งค่า"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "ไม่ใช่ค่า CSV (ไฟล์ CSV) ที่ถูกต้อง"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "ไม่ใช่ภาพผู้ใช้ที่ถูกต้อง"
@@ -17351,7 +17348,7 @@ msgstr "แจ้งหากไม่มีการตอบกลับ (ใ
msgid "Notify users with a popup when they log in"
msgstr "แจ้งผู้ใช้ด้วยป๊อปอัปเมื่อพวกเขาเข้าสู่ระบบ"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "ตอนนี้"
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr "เฉพาะผู้ดูแลระบบเท่านั้น
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถบันทึกรายงานมาตรฐานได้ โปรดเปลี่ยนชื่อและบันทึก"
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "อนุญาตให้เฉพาะผู้ดูแลระบบใช้เครื่องบันทึก"
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ
msgid "Optimize"
msgstr "เพิ่มประสิทธิภาพ"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "กำลังเพิ่มประสิทธิภาพภาพ..."
@@ -18121,7 +18118,7 @@ msgstr "แพตช์"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr "ไม่กระตือรือร้น"
msgid "Password"
msgstr "รหัสผ่าน"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "ส่งอีเมลรหัสผ่านแล้ว"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "รีเซ็ตรหัสผ่าน"
@@ -18518,7 +18515,7 @@ msgstr "ไม่มีรหัสผ่านในบัญชีอีเม
msgid "Password not found for {0} {1} {2}"
msgstr "ไม่พบรหัสผ่านสำหรับ {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "คำแนะนำการรีเซ็ตรหัสผ่านถูกส่งไปยังอีเมลของ {} แล้ว"
@@ -18530,7 +18527,7 @@ msgstr "ตั้งค่ารหัสผ่านแล้ว"
msgid "Password size exceeded the maximum allowed size"
msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต"
@@ -18901,7 +18898,7 @@ msgstr "โปรดทำสำเนาธีมเว็บไซต์นี
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "โปรดติดตั้งไลบรารี ldap3 ผ่าน pip เพื่อใช้ฟังก์ชัน ldap"
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "โปรดตั้งค่าแผนภูมิ"
@@ -18917,7 +18914,7 @@ msgstr "โปรดเพิ่มหัวข้อในอีเมลขอ
msgid "Please add a valid comment."
msgstr "โปรดเพิ่มความคิดเห็นที่ถูกต้อง"
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "โปรดขอให้ผู้ดูแลระบบของคุณตรวจสอบการลงทะเบียนของคุณ"
@@ -18949,7 +18946,7 @@ msgstr "โปรดตรวจสอบค่าตัวกรองที่
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "โปรดตรวจสอบอีเมลของคุณเพื่อการยืนยัน"
@@ -19140,7 +19137,7 @@ msgstr "โปรดเลือกประเภทเอนทิตีก่
msgid "Please select Minimum Password Score"
msgstr "โปรดเลือกคะแนนรหัสผ่านขั้นต่ำ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "โปรดเลือกฟิลด์ X และ Y"
@@ -19198,7 +19195,7 @@ msgstr "โปรดตั้งค่าที่อยู่อีเมล"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "โปรดตั้งค่าการแมปเครื่องพิมพ์สำหรับรูปแบบการพิมพ์นี้ในการตั้งค่าเครื่องพิมพ์"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "โปรดตั้งค่าตัวกรอง"
@@ -19226,7 +19223,7 @@ msgstr "โปรดตั้งค่า SMS ก่อนตั้งค่า
msgid "Please setup a message first"
msgstr "โปรดตั้งค่าข้อความก่อน"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "โปรดตั้งค่าบัญชีอีเมลขาออกเริ่มต้นจากการตั้งค่า > บัญชีอีเมล"
@@ -19444,11 +19441,11 @@ msgstr "ผู้ใช้รายงานที่เตรียมไว้
msgid "Prepared report render failed"
msgstr "การแสดงผลรายงานที่เตรียมไว้ล้มเหลว"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "กำลังเตรียมรายงาน"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "เพิ่มแม่แบบไปยังข้อความอีเมล"
@@ -19513,7 +19510,7 @@ msgstr "ดูตัวอย่างบน {0}"
msgid "Preview type"
msgstr "ประเภทดูตัวอย่าง"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "ดูตัวอย่าง:"
@@ -19584,16 +19581,16 @@ msgstr "คีย์หลักของประเภทเอกสาร {0
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "พิมพ์"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "พิมพ์"
@@ -19663,7 +19660,7 @@ msgstr "ความช่วยเหลือรูปแบบการพิ
msgid "Print Format Type"
msgstr "ประเภทรูปแบบการพิมพ์"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr "ซ่อนการพิมพ์"
msgid "Print Hide If No Value"
msgstr "ซ่อนการพิมพ์หากไม่มีค่า"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "ภาษาการพิมพ์"
@@ -19844,7 +19841,7 @@ msgstr "เคล็ดลับ: เพิ่ม อ้างอิง: {
msgid "Proceed"
msgstr "ดำเนินการต่อ"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "ดำเนินการต่ออยู่ดี"
@@ -20150,7 +20147,7 @@ msgstr "รายงานการค้นหา"
msgid "Query analysis complete. Check suggested indexes."
msgstr "การวิเคราะห์การค้นหาเสร็จสมบูรณ์ ตรวจสอบดัชนีที่แนะนำ"
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "การค้นหาต้องเป็นประเภท SELECT หรือ read-only WITH"
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr "เรียลไทม์ (SocketIO)"
msgid "Reason"
msgstr "เหตุผล"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "สร้างใหม่"
@@ -20589,12 +20586,12 @@ msgstr "เปลี่ยนเส้นทาง"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "เซิร์ฟเวอร์แคช Redis ไม่ทำงาน โปรดติดต่อผู้ดูแลระบบ/ฝ่ายสนับสนุนด้านเทคนิค"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "ทำซ้ำ"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "ทำซ้ำการกระทำล่าสุด"
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr "ผู้แนะนำ"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr "กำลังรีเฟรช"
msgid "Refreshing..."
msgstr "กำลังรีเฟรช..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "ลงทะเบียนแล้วแต่ปิดใช้งาน"
@@ -20900,7 +20897,7 @@ msgstr "ลิงก์ใหม่แล้ว"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "โหลดใหม่"
@@ -20931,7 +20928,7 @@ msgstr "จำค่าที่เลือกครั้งสุดท้า
msgid "Remind At"
msgstr "เตือนที่"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "เตือนฉัน"
@@ -21013,7 +21010,7 @@ msgstr "ลบแล้ว"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr "แสดงป้ายกำกับทางซ้ายและค
msgid "Reopen"
msgstr "เปิดใหม่"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "ทำซ้ำ"
@@ -21231,7 +21228,7 @@ msgstr "ผู้จัดการรายงาน"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "ชื่อรายงาน"
@@ -21283,7 +21280,7 @@ msgstr "รายงานไม่มีข้อมูล โปรดแก
msgid "Report has no numeric fields, please change the Report Name"
msgstr "รายงานไม่มีฟิลด์ตัวเลข โปรดเปลี่ยนชื่อรายงาน"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "เริ่มต้นรายงานแล้ว คลิกเพื่อดูสถานะ"
@@ -21295,7 +21292,7 @@ msgstr "ถึงขีดจำกัดรายงานแล้ว"
msgid "Report timed out."
msgstr "รายงานหมดเวลา"
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "อัปเดตรายงานเรียบร้อยแล้ว"
@@ -21303,7 +21300,7 @@ msgstr "อัปเดตรายงานเรียบร้อยแล้
msgid "Report was not saved (there were errors)"
msgstr "รายงานไม่ได้รับการบันทึก (มีข้อผิดพลาด)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "รายงานที่มีมากกว่า 10 คอลัมน์ดูดีกว่าในโหมดแนวนอน"
@@ -21339,7 +21336,7 @@ msgstr "รายงาน"
msgid "Reports & Masters"
msgstr "รายงานและมาสเตอร์"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "รายงานอยู่ในคิวแล้ว"
@@ -21778,7 +21775,7 @@ msgstr "สิทธิ์บทบาท"
msgid "Role Permissions Manager"
msgstr "ผู้จัดการสิทธิ์บทบาท"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "ผู้จัดการสิทธิ์บทบาท"
@@ -21812,7 +21809,7 @@ msgstr "การจำลองบทบาท"
msgid "Role and Level"
msgstr "บทบาทและระดับ"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "บทบาทถูกตั้งค่าตามประเภทผู้ใช้ {0}"
@@ -22205,12 +22202,12 @@ msgstr "วันเสาร์"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr "บันทึกเป็น"
msgid "Save Customizations"
msgstr "บันทึกการปรับแต่ง"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "บันทึกรายงาน"
@@ -22256,7 +22253,7 @@ msgstr "บันทึกเอกสาร"
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr "เลือกทั้งหมด"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr "เลือกหน้า"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "เลือกรูปแบบการพิมพ์"
@@ -22911,13 +22908,13 @@ msgstr "เลือกอย่างน้อย 1 รายการสำห
msgid "Select atleast 2 actions"
msgstr "เลือกอย่างน้อย 2 การกระทำ"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "เลือกรายการในรายการ"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "เลือกรายการในรายการหลายรายการ"
@@ -23033,7 +23030,7 @@ msgstr "ส่งเดี๋ยวนี้"
msgid "Send Print as PDF"
msgstr "ส่งพิมพ์เป็น PDF"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "ส่งใบตอบรับการอ่าน"
@@ -23096,7 +23093,7 @@ msgstr "ส่งคำถามไปยังที่อยู่อีเม
msgid "Send login link"
msgstr "ส่งลิงก์เข้าสู่ระบบ"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "ส่งสำเนาให้ฉัน"
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "ค่าเริ่มต้นของเซสชัน"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว"
@@ -23337,7 +23334,7 @@ msgstr "ตั้งค่า"
msgid "Set Banner from Image"
msgstr "ตั้งค่าแบนเนอร์จากภาพ"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "ตั้งค่าแผนภูมิ"
@@ -23363,7 +23360,7 @@ msgstr "ตั้งค่าตัวกรอง"
msgid "Set Filters for {0}"
msgstr "ตั้งค่าตัวกรองสำหรับ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "ตั้งค่าระดับ"
@@ -23535,7 +23532,7 @@ msgstr "กำลังตั้งค่าระบบของคุณ"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr "การตั้งค่า > ผู้ใช้"
msgid "Setup > User Permissions"
msgstr "การตั้งค่า > สิทธิ์ผู้ใช้"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "ตั้งค่าอีเมลอัตโนมัติ"
@@ -23784,7 +23781,7 @@ msgstr "แสดงตัวเลือกภาษา"
msgid "Show Line Breaks after Sections"
msgstr "แสดงการแบ่งบรรทัดหลังส่วน"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "แสดงลิงก์"
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "แสดงแท็ก"
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr "ซับโดเมน"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "หัวข้อ"
@@ -24875,7 +24872,7 @@ msgstr "คิวการส่ง"
msgid "Submit"
msgstr "ส่ง"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "ส่ง"
@@ -24933,7 +24930,7 @@ msgstr "ส่งเอกสารนี้เพื่อดำเนินก
msgid "Submit this document to confirm"
msgstr "ส่งเอกสารนี้เพื่อยืนยัน"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "ส่งเอกสาร {0} หรือไม่?"
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอายุแล้ว"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง"
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr "มีปัญหากับ URL ของไฟล์: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:"
@@ -26023,7 +26020,7 @@ msgstr "มีข้อผิดพลาด"
msgid "There were errors while creating the document. Please try again."
msgstr "เกิดข้อผิดพลาดขณะสร้างเอกสาร โปรดลองอีกครั้ง"
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "เกิดข้อผิดพลาดขณะส่งอีเมล โปรดลองอีกครั้ง"
@@ -26196,7 +26193,7 @@ msgstr "ผู้ให้บริการตำแหน่งทางภู
msgid "This goes above the slideshow."
msgstr "สิ่งนี้จะอยู่เหนือสไลด์โชว์"
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่"
@@ -26252,7 +26249,7 @@ msgstr "สิ่งนี้อาจถูกพิมพ์ในหลาย
msgid "This month"
msgstr "เดือนนี้"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน"
@@ -26260,7 +26257,7 @@ msgstr "รายงานนี้มี {0} แถวและใหญ่เ
msgid "This report was generated on {0}"
msgstr "รายงานนี้ถูกสร้างขึ้นเมื่อ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "รายงานนี้ถูกสร้างขึ้น {0}"
@@ -26326,7 +26323,7 @@ msgstr "สิ่งนี้จะรีเซ็ตทัวร์นี้แ
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr "เพื่อส่งออกขั้นตอนนี้เป็
msgid "To generate password click {0}"
msgstr "เพื่อสร้างรหัสผ่าน คลิก {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}"
@@ -26749,7 +26746,7 @@ msgstr "สลับมุมมองตาราง"
msgid "Toggle Sidebar"
msgstr "สลับแถบด้านข้าง"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "สลับแถบด้านข้าง"
@@ -26811,7 +26808,7 @@ msgstr "การเปลี่ยนแปลงฐานข้อมูลม
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "งานพื้นหลังที่คิวมากเกินไป ({0}) โปรดลองอีกครั้งหลังจากสักครู่"
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "ผู้ใช้จำนวนมากลงทะเบียนเมื่อเร็ว ๆ นี้ ดังนั้นการลงทะเบียนจึงถูกปิดใช้งาน โปรดลองอีกครั้งในหนึ่งชั่วโมง"
@@ -26873,9 +26870,9 @@ msgstr "ขวาบน"
msgid "Topic"
msgstr "หัวข้อ"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "รวม"
@@ -27043,7 +27040,7 @@ msgstr "การเปลี่ยนผ่าน"
msgid "Translatable"
msgstr "สามารถแปลได้"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "แปลข้อมูล"
@@ -27076,6 +27073,11 @@ msgstr "การแปล"
msgid "Translations"
msgstr "การแปล"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr "ข้อยกเว้นที่ไม่ได้จับ"
msgid "Unchanged"
msgstr "ไม่เปลี่ยนแปลง"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "เลิกทำ"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "เลิกทำการกระทำล่าสุด"
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "เลิกติดตาม"
@@ -27497,7 +27499,7 @@ msgstr "ยังไม่ได้อ่าน"
msgid "Unread Notification Sent"
msgstr "การแจ้งเตือนที่ยังไม่ได้อ่านถูกส่งแล้ว"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย"
@@ -27511,7 +27513,7 @@ msgstr "ยกเลิกการเลือกทั้งหมด"
msgid "Unshared"
msgstr "ไม่ได้แชร์"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "ยกเลิกการสมัครสมาชิก"
@@ -27531,7 +27533,7 @@ msgstr "พารามิเตอร์ยกเลิกการสมัค
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "ยกเลิกการสมัครสมาชิกแล้ว"
@@ -27940,7 +27942,7 @@ msgstr "ผู้ใช้ไม่สามารถสร้างได้"
msgid "User Cannot Search"
msgstr "ผู้ใช้ไม่สามารถค้นหาได้"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "ผู้ใช้เปลี่ยนแปลง"
@@ -28046,12 +28048,12 @@ msgstr "สิทธิ์ของผู้ใช้"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "สิทธิ์ของผู้ใช้"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "สิทธิ์ของผู้ใช้"
@@ -28152,15 +28154,15 @@ msgstr "ผู้ใช้ที่มีที่อยู่อีเมล {0
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "ผู้ใช้ที่มีอีเมล: {0} ไม่มีอยู่ในระบบ โปรดขอให้ 'ผู้ดูแลระบบ' สร้างผู้ใช้ให้คุณ"
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "ไม่สามารถลบผู้ใช้ {0} ได้"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "ไม่สามารถปิดใช้งานผู้ใช้ {0} ได้"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "ไม่สามารถเปลี่ยนชื่อผู้ใช้ {0} ได้"
@@ -28181,7 +28183,7 @@ msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์สร้าง
msgid "User {0} has requested for data deletion"
msgstr "ผู้ใช้ {0} ได้ร้องขอการลบข้อมูล"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}"
@@ -28210,7 +28212,7 @@ msgstr "URI ข้อมูลผู้ใช้"
msgid "Username"
msgstr "ชื่อผู้ใช้"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "ชื่อผู้ใช้ {0} มีอยู่แล้ว"
@@ -28483,7 +28485,7 @@ msgstr "ดู"
msgid "View All"
msgstr "ดูทั้งหมด"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "ดูเส้นทางการตรวจสอบ"
@@ -28770,6 +28772,7 @@ msgstr "มุมมองเว็บ"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr "URL ต้อนรับ"
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "ส่งอีเมลต้อนรับแล้ว"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "ยินดีต้อนรับสู่ {0}"
@@ -29393,7 +29396,7 @@ msgstr "ฟิลด์แกน Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "ฟิลด์ Y"
@@ -29454,7 +29457,7 @@ msgstr "สีเหลือง"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "ใช่"
@@ -29529,7 +29532,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้นำอ
msgid "You are not allowed to print this report"
msgstr "คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "คุณไม่ได้รับอนุญาตให้ส่งอีเมลที่เกี่ยวข้องกับเอกสารนี้"
@@ -29644,7 +29647,7 @@ msgstr "คุณสามารถเลือกหนึ่งจากรา
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "คุณสามารถตั้งค่าค่าสูงที่นี่หากมีผู้ใช้หลายคนเข้าสู่ระบบจากเครือข่ายเดียวกัน"
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ"
@@ -29729,7 +29732,7 @@ msgstr "คุณไม่มีสิทธิ์เพียงพอที่
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}"
@@ -29925,7 +29928,7 @@ msgstr "คุณเลิกติดตามเอกสารนี้"
msgid "You viewed this"
msgstr "คุณดูสิ่งนี้"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "คุณเข้าสู่ระบบในฐานะผู้ใช้อื่นจากแท็บอื่น โปรดรีเฟรชหน้านี้เพื่อใช้งานระบบต่อ"
@@ -29966,11 +29969,11 @@ msgstr "บัญชีของคุณถูกล็อกและจะก
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "การมอบหมายของคุณใน {0} {1} ถูกลบโดย {2}"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบเสียง"
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบวิดีโอ"
@@ -30849,7 +30852,7 @@ msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หล
msgid "{0} Report"
msgstr "รายงาน {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "รายงาน {0}"
@@ -31020,7 +31023,7 @@ msgstr "{0} ชั่วโมง"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} ได้กำหนดค่าเริ่มต้นสำหรับ {1} แล้ว"
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} ออกจากการสนทนาใน {1} {2}"
@@ -31191,11 +31194,11 @@ msgstr "{0} ถูกตั้งค่า"
msgid "{0} is within {1}"
msgstr "{0} อยู่ภายใน {1}"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} รายการที่เลือก"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} เพิ่งปลอมตัวเป็นคุณ พวกเขาให้เหตุผลนี้: {1}"
@@ -31331,7 +31334,7 @@ msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเ
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} บันทึกสำเร็จ"
@@ -31373,7 +31376,7 @@ msgstr "{0} ส่งเอกสารนี้ {1}"
msgid "{0} subscribers added"
msgstr "เพิ่มผู้ติดตาม {0}"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} เพื่อหยุดรับอีเมลประเภทนี้"
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} เทียบกับ {2}"
diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po
index c6c81f0051..d583e7027f 100644
--- a/frappe/locale/tr.po
+++ b/frappe/locale/tr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1 Gün"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Takvim Etkinliği senkronize edildi."
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1 Rapor"
@@ -709,11 +709,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "Merhaba,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "Raporlar & Kayıtlar"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "Uyarı: Bu alan sistem tarafından oluşturulmuştur ve gelecekteki bir güncelleme ile üzerine yazılabilir. Bunun yerine {0} kullanarak değiştirin."
@@ -1030,7 +1025,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1096,10 +1090,10 @@ msgstr "Eylem {0} {1} {2} tarihinde başarısız oldu. Görüntüle {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "İşlemler"
@@ -1161,8 +1155,8 @@ msgstr "Aktivite Günlüğü"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Yeni"
@@ -1179,7 +1173,7 @@ msgstr "Ekle / Güncelle"
msgid "Add A New Rule"
msgstr "Yeni Kural Ekle"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dosya Ekle"
@@ -1203,7 +1197,7 @@ msgstr "Üste Kenarlık Ekle"
msgid "Add Card to Dashboard"
msgstr "Kartı Panoya Ekle"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Gösterge Paneline Grafik Ekle"
@@ -1212,8 +1206,8 @@ msgid "Add Child"
msgstr "Alt öğe ekle"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1274,7 +1268,7 @@ msgstr "Katılımcı Ekle"
msgid "Add Query Parameters"
msgstr "Sorgu Parametreleri Ekle"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "Rol Ekle"
@@ -1284,7 +1278,7 @@ msgstr "Satır Ekle"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "İmza Ekle"
@@ -1307,12 +1301,12 @@ msgstr "Abonelere Ekle "
msgid "Add Tags"
msgstr "Etiket Ekle"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Etiket Ekle"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "Şablon Ekle"
@@ -1419,7 +1413,7 @@ msgid "Add tab"
msgstr "Sekme Ekle"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Gösterge Paneline Ekle"
@@ -1574,11 +1568,11 @@ msgstr "Yönetim"
msgid "Administrator"
msgstr "Yönetici"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "Yönetici Giriş Yaptı"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Yönetici, IP Adresi {2} üzerinden {1} yoluyla {0} adresine erişim sağladı."
@@ -2122,7 +2116,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Zaten kayıltı"
@@ -2221,7 +2215,7 @@ msgstr "Değişikliğe İzin Verilmiyor"
msgid "Amendment naming rules updated."
msgstr "Değişiklik adlandırma kuralları güncellendi."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Oturum Varsayılanlarını ayarlarken bir hata oluştu"
@@ -2397,7 +2391,7 @@ msgstr "Uygulandı"
msgid "Apply"
msgstr "Uygula"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Arama Kuralı Uygula"
@@ -2478,7 +2472,7 @@ msgstr "Arşivlendi"
msgid "Archived Columns"
msgstr "Arşivlenmiş Sütunlar"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "Atamaları temizlemek istediğinizen emin misiniz?"
@@ -2510,7 +2504,7 @@ msgstr "Sekmeyi silmek istediğinizden emin misiniz? Sekmedeki alanlarla birlikt
msgid "Are you sure you want to discard the changes?"
msgstr "Değişiklikleri iptal etmek istediğinizden emin misiniz?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?"
@@ -2582,7 +2576,7 @@ msgstr "Koşulu Ata"
msgid "Assign To"
msgstr "Ata"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Ata"
@@ -2739,7 +2733,7 @@ msgstr "En az bir Üst Belge Türü alanı zorunludur"
msgid "Attach"
msgstr "Ekle"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Yazdırma Dosyasını Ekle"
@@ -3232,7 +3226,7 @@ msgstr "B9"
msgid "BCC"
msgstr "BCC"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "BCC"
@@ -3275,7 +3269,7 @@ msgstr "Arkaplan Resmi"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Arkaplan Görevleri"
@@ -3881,7 +3875,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "Bilgi"
@@ -4072,7 +4066,7 @@ msgstr "{0} mevcut olmadığı için {0} adresini {1} olarak yeniden adlandıram
msgid "Cancel"
msgstr "İptal"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "İptal"
@@ -4090,7 +4084,7 @@ msgstr "Tümünü İptal Et"
msgid "Cancel All Documents"
msgstr "Tüm Belgeleri İptal Et"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "{0} belge iptal edilsin mi?"
@@ -4352,7 +4346,7 @@ msgstr "Kart"
msgid "Card Break"
msgstr "Kart Sonu"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Kart Etiketi"
@@ -4491,7 +4485,7 @@ msgstr "Grafik Yapılandırması"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Grafik Adı"
@@ -4660,11 +4654,11 @@ msgstr "Şehir"
msgid "Clear"
msgstr "Açık"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "Temizle ve Şablon Ekle"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "Temizle ve Şablon Ekle"
@@ -4672,7 +4666,7 @@ msgstr "Temizle ve Şablon Ekle"
msgid "Clear All"
msgstr "Temizle"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Atamayı Temizle"
@@ -4698,7 +4692,7 @@ msgstr "Gün Sayısı"
msgid "Clear User Permissions"
msgstr "Kullanıcı İzinlerini Temizle"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "E-posta mesajını temizleyin ve şablonu ekleyin"
@@ -4940,7 +4934,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Daralt"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tümünü Daralt"
@@ -4995,7 +4989,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5245,7 +5239,7 @@ msgstr "Tamamla"
msgid "Complete By"
msgstr "Tamamlayan"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Kaydı Tamamla"
@@ -5656,7 +5650,7 @@ msgstr "Gömülü Kodu Kopyala"
msgid "Copy error to clipboard"
msgstr "Hatayı Kopyala"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "Panoya Kopyala"
@@ -5780,7 +5774,7 @@ msgstr "Alacak"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5794,13 +5788,13 @@ msgstr "Oluştur & Devam Et"
msgid "Create Address"
msgstr "Adres Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Kart Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Grafik Oluştur"
@@ -6264,12 +6258,12 @@ msgstr "{0} için özelleştirmeler şuraya aktarıldı:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Özelleştir"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Özelleştir"
@@ -6913,7 +6907,7 @@ msgstr "Gecikti"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6922,7 +6916,7 @@ msgstr "Gecikti"
msgid "Delete"
msgstr "Sil"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Sil"
@@ -6958,7 +6952,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Sekmeyi Sil"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "Sil ve Yeni Oluştur"
@@ -7000,12 +6994,12 @@ msgstr "Sekmeyi Sil"
msgid "Delete this record to allow sending to this email address"
msgstr "Bu kaydı silin ve bu e-posta adresine gönderilmesine izin verin"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "{0} girişi kalıcı olarak silinsin mi?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} öğesini kalıcı olarak sil?"
@@ -7413,8 +7407,8 @@ msgstr "Yeni Kayıtlara İzin Verme"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Devre dışı"
@@ -7423,7 +7417,7 @@ msgstr "Devre dışı"
msgid "Disabled Auto Reply"
msgstr "Otomatik Yanıt Devre Dışı"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8175,7 +8169,7 @@ msgstr "İndirme linki"
msgid "Download PDF"
msgstr "PDF İndir"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Raporu İndir"
@@ -8259,7 +8253,7 @@ msgid "Due Date Based On"
msgstr "Vade Tarihine göre"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Kopyala"
@@ -8374,9 +8368,9 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8388,7 +8382,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Düzenle"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Düzenle"
@@ -8423,11 +8417,11 @@ msgstr "Özel Bloğu Düzenle"
msgid "Edit Custom HTML"
msgstr "HTML Kodunu Düzenle"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "DocType Düzenle"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "DocType Düzenle"
@@ -8604,7 +8598,7 @@ msgstr "Element Seçici"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8639,7 +8633,7 @@ msgstr "E-posta Hesabı Devre Dışı Bırakıldı."
msgid "Email Account Name"
msgstr "E-posta Hesap Adı"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "E-posta Hesabı birden çok kez eklendi"
@@ -8746,7 +8740,7 @@ msgstr "E-posta Kuyruğu"
msgid "Email Queue Recipient"
msgstr "E-posta Özeti Alıcısı"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "Çok fazla hata nedeniyle E-posta Kuyruğu temizleme işlemi iptal edildi."
@@ -8810,7 +8804,7 @@ msgstr "E-posta Senkronizasyon Seçeneği"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "E-Posta Şablonu"
@@ -8842,7 +8836,7 @@ msgstr "E-posta çöp kutusuna taşındı"
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Gönderilmez Email {0} (devre dışı / üyelikten)"
@@ -8868,7 +8862,7 @@ msgstr "E-postalar Çekildi"
msgid "Emails are already being pulled from this account."
msgstr "E-postalar zaten bu hesaptan çekiliyor."
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "E-postalar sessize alındı"
@@ -9093,8 +9087,8 @@ msgstr "Uygulama içi web sitesi izlemeyi etkinleştirin"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Etkin"
@@ -9221,7 +9215,7 @@ msgstr "Google Ayarları'na İstemci Kimliği ve İstemci Gizli Anahtarını gir
msgid "Enter Code displayed in OTP App."
msgstr "OTP Uygulamasında görüntülenen Kodu girin."
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "E-Posta alıcılarını girin"
@@ -9535,7 +9529,7 @@ msgstr ""
msgid "Executing..."
msgstr "Çalıştırılıyor..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Oluşturma Süresi: {0} sn"
@@ -9561,7 +9555,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Genişlet"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Tümünü Genişlet"
@@ -9622,13 +9616,13 @@ msgstr "QR Kod Resim Sayfasının Sona Erme Süresi"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Dışarı Aktar"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Dışarı Aktar"
@@ -9986,8 +9980,8 @@ msgstr "Varsayılan Global Arama belgeleri getiriliyor."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10557,7 +10551,7 @@ msgid "Folio"
msgstr "Folio"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Takip Et"
@@ -10750,7 +10744,7 @@ msgstr "Kullanıcı"
msgid "For Value"
msgstr "Değer İçin"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Karşılaştırmak için >5, <10 veya =324 kullanın. Örneğin 5-10 arasındaki değerleri göstermek için, 5:10 kullanın."
@@ -11012,7 +11006,7 @@ msgstr "Cuma"
msgid "From"
msgstr "itibaren"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "Gönderen"
@@ -11028,7 +11022,7 @@ msgstr "Başlama Tarihi"
msgid "From Date Field"
msgstr "Başlangıç Tarihi Alanı"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Belge Türü"
@@ -11079,7 +11073,7 @@ msgstr "Tam Genişlik"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Fonksiyon"
@@ -11157,7 +11151,7 @@ msgstr "Genel"
msgid "Generate Keys"
msgstr "Anahtar Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Yeni Rapor Oluştur"
@@ -11165,7 +11159,7 @@ msgstr "Yeni Rapor Oluştur"
msgid "Generate Random Password"
msgstr "Rastgele Şifre Oluştur"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "İzleme Bağlantısı Oluştur"
@@ -11281,7 +11275,7 @@ msgstr "Genel Kısayollar"
msgid "Global Unsubscribe"
msgstr "Genel E-posta Aboneliğini İptal Et"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Git"
@@ -11445,8 +11439,6 @@ msgstr "Google Kişiler - Google Kişiler'den kişiler senkronize edilemedi {0},
msgid "Google Contacts Id"
msgstr "Google Kişiler Kimliği"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
@@ -11483,6 +11475,7 @@ msgstr "Google Servisleri"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11910,6 +11903,10 @@ msgstr "Gizli"
msgid "Hidden Fields"
msgstr "Gizli Alanlar"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12023,7 +12020,7 @@ msgstr "Kenar Çubuğunu, Menüyü ve Yorumları Gizle"
msgid "Hide Standard Menu"
msgstr "Standart Menüyü Gizle"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "Etiketleri Gizle"
@@ -12579,7 +12576,7 @@ msgstr "Resim alanı iliştirilen resim türünde olmalıdır"
msgid "Image link '{0}' is not valid"
msgstr "Resim bağlantısı '{0}' geçerli değil"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "Resim optimize edildi"
@@ -12627,7 +12624,7 @@ msgstr ""
msgid "Import"
msgstr "İçe Aktar"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "İçe Aktar"
@@ -12855,11 +12852,15 @@ msgstr "Uygulamalardan Temayı Dahil Et"
msgid "Include Web View Link in Email"
msgstr "Web Görünümü Bağlantısını E-postaya Ekle"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "Filtreleri dahil et"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Girintiyi dahil et"
@@ -13017,7 +13018,7 @@ msgstr "Yukarı Ekle"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Sonrasına Ekle"
@@ -13208,7 +13209,7 @@ msgstr "Geçersiz"
msgid "Invalid \"depends_on\" expression"
msgstr "Geçersiz \"depends_on\" ifadesi"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı"
@@ -13319,7 +13320,7 @@ msgstr "Hatalı Geçersiz Kılma"
msgid "Invalid Parameters."
msgstr "Geçersiz Parametreler."
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13909,8 +13910,8 @@ msgstr "İş çalışmıyor."
msgid "Join video conference with {0}"
msgstr "{0} ile görüntülü konferansa katılın"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Alana Git"
@@ -14875,7 +14876,7 @@ msgstr "Filtreyi Listele"
msgid "List Settings"
msgstr "Liste Ayarları"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Liste Ayarları"
@@ -14947,7 +14948,7 @@ msgstr "Daha fazla yükle"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Yükleniyor"
@@ -15656,7 +15657,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15693,7 +15694,7 @@ msgstr "Mesaj Gönderildi"
msgid "Message Type"
msgstr "Mesaj Türü"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Mesaj kopyalandı"
@@ -16408,12 +16409,12 @@ msgstr "Gezinti Çubuğu Şablonu"
msgid "Navbar Template Values"
msgstr "Gezinme Çubuğu Şablon Değerleri"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Listede Aşağı Git"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Listede Yukarı git"
@@ -16545,10 +16546,6 @@ msgstr "Web Sitesi İletişim Sayfasından Yeni Mesaj"
msgid "New Name"
msgstr "Yeni İsim"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Yeni Bülten"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Yeni Bildirim"
@@ -16649,7 +16646,7 @@ msgstr "Ayarlanacak yeni değer"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16661,15 +16658,15 @@ msgstr "Ayarlanacak yeni değer"
msgid "New {0}"
msgstr "Yeni {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Yeni {0} Oluşturuldu"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Yeni {0} {1}, {2} Panosuna eklendi."
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "Yeni {0} {1} oluşturuldu"
@@ -16681,7 +16678,7 @@ msgstr "Yeni {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "{0} kullanıcısı için rol belirlenmedi."
@@ -16808,7 +16805,7 @@ msgstr "Sonraki Tıklamada"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Hayır"
@@ -16949,7 +16946,7 @@ msgstr "Sonuç Yok"
msgid "No Results found"
msgstr "Uygun Sonuç Bulunamadı"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "Rol Belirlenmedi"
@@ -17017,7 +17014,7 @@ msgstr "Henüz kişi eklenmedi."
msgid "No contacts linked to document"
msgstr "Belgeye bağlı kişi yok"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Verilecek veri yok"
@@ -17209,7 +17206,7 @@ msgstr "Normalleştirilmiş Kopyalar"
msgid "Normalized Query"
msgstr "Normalleştirilmiş Sorgu"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "İzin verilmedi"
@@ -17265,7 +17262,7 @@ msgstr "Boş Bırakılamaz"
msgid "Not Permitted"
msgstr "İzin yok"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "{0} için Okuma izni yok"
@@ -17275,8 +17272,8 @@ msgstr "{0} için Okuma izni yok"
msgid "Not Published"
msgstr "Yayınlanmadı"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17309,7 +17306,7 @@ msgstr "Ayarlanmamış"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Virgülle Ayrılmış Geçerli Bir CSV Dosyası Değil"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Geçerli bir Kullanıcı Resmi değil."
@@ -17544,7 +17541,7 @@ msgstr "Cevaplamazsa Bildir (Dakika)"
msgid "Notify users with a popup when they log in"
msgstr "Oturum Açıldığında Kullanıcıları Bilgilendir"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Şimdi"
@@ -17839,7 +17836,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17915,7 +17912,7 @@ msgstr "Yalnızca Yönetici düzenleyebilir"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Standart bir raporu yalnızca Yönetici kaydedebilir. Lütfen yeniden adlandırın ve kaydedin."
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Kaydediciyi yalnızca Yönetici kullanabilir"
@@ -18068,7 +18065,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr "Yeni sekmede aç"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Liste Öğesini Aç"
@@ -18123,7 +18120,7 @@ msgstr ""
msgid "Optimize"
msgstr "Optimize Et"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "Resim optimize ediliyor..."
@@ -18314,7 +18311,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18673,11 +18670,11 @@ msgstr "Pasif"
msgid "Password"
msgstr "Şifre"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "Şifre E-postası Gönderildi"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "Şifre Sıfırlama"
@@ -18711,7 +18708,7 @@ msgstr "E-posta Hesabında Şifre Eksik"
msgid "Password not found for {0} {1} {2}"
msgstr "{0} {1} {2} için şifre bulunamadı"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi"
@@ -18723,7 +18720,7 @@ msgstr "Şifre ayarlandı"
msgid "Password size exceeded the maximum allowed size"
msgstr "Şifre boyutu izin verilen maksimum boyutu aştı"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "Şifre boyutu izin verilen maksimum boyutu aştı."
@@ -19094,7 +19091,7 @@ msgstr "Lütfen özelleştirmek için bu Web Sitesi Temasını çoğaltın."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Ldap işlevselliğini kullanmak için lütfen pip aracılığıyla ldap3 kütüphanesini yükleyin."
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Lütfen Tabloyu Ayarlayın"
@@ -19110,7 +19107,7 @@ msgstr "Lütfen e-postanıza bir konu ekleyin"
msgid "Please add a valid comment."
msgstr "Lütfen geçerli bir yorum ekleyin."
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin"
@@ -19142,7 +19139,7 @@ msgstr "Lütfen Gösterge Tablosu Grafiği için ayarlanan filtre değerlerini k
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
@@ -19333,7 +19330,7 @@ msgstr "Lütfen önce Varlık Türünü seçin"
msgid "Please select Minimum Password Score"
msgstr "Lütfen Minimum Şifre Puanını seçin"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "Lütfen X ve Y alanlarını seçin"
@@ -19391,7 +19388,7 @@ msgstr "Lütfen E-posta Adresini ayarlayın"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Lütfen Yazıcı Ayarları'nda bu yazdırma biçimi için bir yazıcı eşlemesi ayarlayın"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Lütfen filtreleri ayarlayın"
@@ -19419,7 +19416,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr "Lütfen önce bir mesaj ayarlayın"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Lütfen Ayarlar > E-posta Hesabı bölümünden varsayılan giden E-posta Hesabını ayarlayın"
@@ -19637,11 +19634,11 @@ msgstr "Hazır Rapor Kullanıcısı"
msgid "Prepared report render failed"
msgstr "Hazırlanan rapor işleme başarısız oldu"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Rapor Hazırlama"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "Şablonu e-posta mesajının önüne ekleyin"
@@ -19706,7 +19703,7 @@ msgstr ""
msgid "Preview type"
msgstr "Önizleme Türü"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "Önizleme:"
@@ -19777,16 +19774,16 @@ msgstr "{0} belge türünün birincil anahtarı mevcut değerler olduğundan de
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Yazdır"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Yazdır"
@@ -19856,7 +19853,7 @@ msgstr "Yazdırma Biçimi Yardımı"
msgid "Print Format Type"
msgstr "Yazdırma Formatı Türü"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19891,7 +19888,7 @@ msgstr "Yazdırmayı Gizle"
msgid "Print Hide If No Value"
msgstr "Değer Yoksa Yazdırmayı Gizle"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "Yazdırma Dili"
@@ -20037,7 +20034,7 @@ msgstr "İpucu: Belge referansını göndermek için Referans: {{ reference_doct
msgid "Proceed"
msgstr "Devam Et"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Yine de Devam Et"
@@ -20343,7 +20340,7 @@ msgstr "Sorgu Raporu"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Sorgu analizi tamamlandı. Önerilen dizinleri kontrol edin."
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Sorgu SELECT veya salt okunur WITH türünde olmalıdır."
@@ -20540,7 +20537,7 @@ msgstr "Cvp:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "Ynt: {0}"
@@ -20616,7 +20613,7 @@ msgstr "Alıcı Tarafından Okundu"
msgid "Read mode"
msgstr "Okuma Modu"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "Daha fazlasını öğrenmek için belgeleri okuyun"
@@ -20636,7 +20633,7 @@ msgstr "Gerçek Zamanlı (Socket.IO)"
msgid "Reason"
msgstr "Nedeni"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Yeniden Oluştur"
@@ -20782,12 +20779,12 @@ msgstr "Yönlendirmeler"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "İleri Al"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "Son işlemi geri al"
@@ -21001,11 +20998,11 @@ msgid "Referrer"
msgstr "Referans Olan"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21044,7 +21041,7 @@ msgstr "Yenileniyor"
msgid "Refreshing..."
msgstr "Yenileniyor..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Kayıtlı ancak devre dışı"
@@ -21093,7 +21090,7 @@ msgstr "Yeniden Bağlandı"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Yeniden Yükle"
@@ -21124,7 +21121,7 @@ msgstr "Son Seçilen Değeri Hatırla"
msgid "Remind At"
msgstr "Hatırlatma Zamanı"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "Hatırlatıcı"
@@ -21206,7 +21203,7 @@ msgstr "Kaldırıldı"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21234,7 +21231,7 @@ msgstr ""
msgid "Reopen"
msgstr "Yeniden aç"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "Tekrar"
@@ -21424,7 +21421,7 @@ msgstr "Rapor Yöneticisi"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Rapor İsmi"
@@ -21476,7 +21473,7 @@ msgstr "Raporda veri yok, lütfen filtreleri veya Rapor Adını değiştirin"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Raporda sayısal alan yok, lütfen Rapor Adını değiştirin"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "Rapor başlatıldı, durumu görüntülemek için tıklayın"
@@ -21488,7 +21485,7 @@ msgstr "Rapor sınırına ulaşıldı"
msgid "Report timed out."
msgstr "Rapor zaman aşımına uğradı."
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Rapor başarıyla güncellendi"
@@ -21496,7 +21493,7 @@ msgstr "Rapor başarıyla güncellendi"
msgid "Report was not saved (there were errors)"
msgstr "Rapor Kaydedilemedi (hatalar içeriyor)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "10'dan fazla sütun içeren rapor Yatay modda daha iyi görünür."
@@ -21532,7 +21529,7 @@ msgstr "Raporlar"
msgid "Reports & Masters"
msgstr "Raporlar & Kayıtlar"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Raporlar zaten Kuyrukta"
@@ -21971,7 +21968,7 @@ msgstr "Rol İzinleri"
msgid "Role Permissions Manager"
msgstr "Rol İzinlerini Yönet"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Rol İzinlerini Yönet"
@@ -22005,7 +22002,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Rol ve Seviye"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "Rol, {0} kullanıcısı türüne göre ayarlandı"
@@ -22398,12 +22395,12 @@ msgstr "Cumartesi"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22430,7 +22427,7 @@ msgstr "Farklı Kaydet"
msgid "Save Customizations"
msgstr "Özelleştirmeleri Kaydet"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Raporu Kaydet"
@@ -22449,7 +22446,7 @@ msgstr "Belgeyi kaydet."
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22497,7 +22494,7 @@ msgstr "QR Kodunu tarayın ve çıkan kodu girin."
msgid "Schedule"
msgstr "Planla"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "Planlanmış Gönderim"
@@ -22806,7 +22803,7 @@ msgstr "Güvenlik Ayarları"
msgid "See all Activity"
msgstr "Tüm Aktiviteleri Göster"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Tüm geçmiş raporları görün."
@@ -22874,8 +22871,8 @@ msgstr "Seçim"
msgid "Select All"
msgstr "Tümünü Seç"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22941,7 +22938,7 @@ msgstr "Erişimi sınırlamak için hangi Kullanıcı İzinlerinin kullanılaca
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Alan Seçin"
@@ -23012,7 +23009,7 @@ msgid "Select Page"
msgstr "Sayfa Seç"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Baskı Formatını Seçin"
@@ -23104,13 +23101,13 @@ msgstr "Yazdırmak için en az 1 kayıt seçin"
msgid "Select atleast 2 actions"
msgstr "En az 2 eylem seçin"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Liste Öğesini Seç"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Birden Fazla Öğe Seçin"
@@ -23226,7 +23223,7 @@ msgstr "Şimdi Gönder"
msgid "Send Print as PDF"
msgstr "Yazıcıya PDF Olarak Gönder"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Okundu Bilgisi Gönder"
@@ -23289,7 +23286,7 @@ msgstr "Sorularınızı bu e-posta adresine gönderin"
msgid "Send login link"
msgstr "Giriş bağlantısını gönder"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Bir Kopyasını Bana Gönder"
@@ -23451,7 +23448,7 @@ msgstr "Sunucu IP"
msgid "Server Script"
msgstr "Sunucu Komut Dosyası"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Sunucu Komut Dosyaları devre dışı. Lütfen bench yapılandırmasından sunucu komut dosyalarını etkinleştirin."
@@ -23490,11 +23487,11 @@ msgstr "Oturum Varsayılanı Ayarları"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Oturum Varsayılanları"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Oturum Varsayılanları Kaydedildi"
@@ -23530,7 +23527,7 @@ msgstr "Ayarla"
msgid "Set Banner from Image"
msgstr "Resimden Banner Ayarla"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Grafiği Ayarla"
@@ -23556,7 +23553,7 @@ msgstr "Filtreleri Ayarlayın"
msgid "Set Filters for {0}"
msgstr "{0} İçin Filtreleri Ayarla"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "Seviye Ayarla"
@@ -23752,7 +23749,7 @@ msgstr "Sisteminiz Yapılandırılıyor"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23798,7 +23795,7 @@ msgstr "Kurulum > Kullanıcı"
msgid "Setup > User Permissions"
msgstr "Kurulum > Kullanıcı İzinleri"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Otomatik E-Postayı Ayarla"
@@ -24001,7 +23998,7 @@ msgstr "Dil Seçiciyi Göster"
msgid "Show Line Breaks after Sections"
msgstr "Bölümlerden Sonra Satır Sonlarını Göster"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "Bağlantıları Göster"
@@ -24077,7 +24074,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Etiketleri Göster"
@@ -24251,7 +24248,7 @@ msgstr "Kenar Çubuğu ve Yorumlar"
msgid "Sign Up and Confirmation"
msgstr "Kayıt ve Doğrulama"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Kaydolma devre dışı bırakıldı"
@@ -25053,7 +25050,7 @@ msgstr "Alt Alan Adı"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Konu"
@@ -25092,7 +25089,7 @@ msgstr "Gönderim Kuyruğu"
msgid "Submit"
msgstr "Gönder"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Gönder/İşle"
@@ -25150,7 +25147,7 @@ msgstr "Bu adımı tamamlamak için bu belgeyi gönderin."
msgid "Submit this document to confirm"
msgstr "Onaylamak için bu belgeyi gönderin"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} belge gönderilsin mi?"
@@ -25299,7 +25296,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Önerilen Kullanıcı Adı: {0}"
@@ -25842,7 +25839,7 @@ msgstr "Şablon Uyarıları"
msgid "Templates"
msgstr "Şablonlar"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Geçici Olarak Devre Dışı"
@@ -26114,11 +26111,11 @@ msgstr "Google Cloud Console'dan altında elde edilen proje numarası"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "Şifre sıfırlama bağlantısının süresi doldu"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "Şifre sıfırlama bağlantısı daha önce kullanılmış veya geçersiz"
@@ -26195,7 +26192,7 @@ msgstr "Sizin için yaklaşan bir etkinlik bulunamadı."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:"
@@ -26224,7 +26221,7 @@ msgstr "Şu anda size gösterecek yeni bir şey yok."
msgid "There is some problem with the file url: {0}"
msgstr "Dosya URL'sinde bir sorun var: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "Aynı filtrelere sahip {0} kuyrukta zaten mevcut:"
@@ -26248,7 +26245,7 @@ msgstr "Hatalar oluştu"
msgid "There were errors while creating the document. Please try again."
msgstr "Belge oluşturulurken hatalar oluştu. Lütfen tekrar deneyin."
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "E-posta gönderirken hatalar vardı. Lütfen tekrar deneyin."
@@ -26421,7 +26418,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "Bu slayt gösterisinin üstüne gelir."
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Bu bir arka plan raporudur. Lütfen uygun filtreleri ayarlayın ve ardından yeni bir tane oluşturun."
@@ -26477,7 +26474,7 @@ msgstr ""
msgid "This month"
msgstr "Bu Ay"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek kadar büyüktür, bunun yerine bu raporu {1} adresinde bulabilirsiniz."
@@ -26485,7 +26482,7 @@ msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek k
msgid "This report was generated on {0}"
msgstr "Bu rapor {0} adresinde oluşturuldu"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Bu rapor {0} oluşturuldu."
@@ -26551,7 +26548,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Bu işi hemen sonlandırmak tehlikeli olabilir, emin misiniz? "
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26906,7 +26903,7 @@ msgstr "Bu adımı JSON olarak dışa aktarmak için, bunu bir Onboarding belges
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Güncellenmiş raporu almak için {0} adresine tıklayın."
@@ -26981,7 +26978,7 @@ msgstr "Izgara Görünümü"
msgid "Toggle Sidebar"
msgstr "Kenar Çubuğunu Aç/Kapat"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "Kenar Çubuğunu Aç/Kapat"
@@ -27043,7 +27040,7 @@ msgstr "Tek bir işlemde veritabanında çok fazla değişiklik yapıldı."
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Son zamanlarda çok fazla kullanıcı kaydoldu, bu yüzden kayıt devre dışı bırakıldı. Lütfen bir saat sonra tekrar deneyin"
@@ -27105,9 +27102,9 @@ msgstr "Sağ Üst"
msgid "Topic"
msgstr "Konu"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Toplam"
@@ -27277,7 +27274,7 @@ msgstr "Geçişler"
msgid "Translatable"
msgstr "Çevirilebilir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27310,6 +27307,11 @@ msgstr "Çeviri"
msgid "Translations"
msgstr "Çeviriler"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27648,11 +27650,11 @@ msgstr ""
msgid "Unchanged"
msgstr "Değişmedi"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "Geri Al"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "Son işlemi geri al"
@@ -27661,7 +27663,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Takibi Bırak"
@@ -27732,7 +27734,7 @@ msgstr "Okunmamış"
msgid "Unread Notification Sent"
msgstr "Okunmamış Bildirim Gönderildi"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "Güvenli olmayan SQL sorgusu"
@@ -27746,7 +27748,7 @@ msgstr "Tüm Seçimi Kaldır"
msgid "Unshared"
msgstr "Paylaşılmamış"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Abonelikten Çık"
@@ -27766,7 +27768,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Kaydolmamış"
@@ -28175,7 +28177,7 @@ msgstr "Kullanıcı Oluşturamaz"
msgid "User Cannot Search"
msgstr "Kullanıcı Arama Yapamaz"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "Kullanıcı Değiştirildi"
@@ -28281,12 +28283,12 @@ msgstr "Kullanıcı İzinleri"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Kullanıcı İzinleri"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Kullanıcı İzinleri"
@@ -28387,15 +28389,15 @@ msgstr "{0} e-posta adresine sahip kullanıcı mevcut değil"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "E-posta adresi: {0} olan kullanıcı sistemde mevcut değil. Lütfen 'Sistem Yöneticisi'nden kullanıcıyı sizin için oluşturmasını isteyin."
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Kullanıcı {0} silinemez"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Kullanıcı {0} devre dışı bırakılamaz"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Kullanıcı {0} yeniden adlandırılamaz"
@@ -28416,7 +28418,7 @@ msgstr "Kullanıcı {0} bir Çalışma Alanı oluşturma iznine sahip değil."
msgid "User {0} has requested for data deletion"
msgstr "{0} isimli Kullanıcı veri silme talebinde bulundu"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "{0}, {1} olarak kullanıyor"
@@ -28445,7 +28447,7 @@ msgstr ""
msgid "Username"
msgstr "Kullanıcı Adı"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Kullanıcı adı {0} zaten var"
@@ -28718,7 +28720,7 @@ msgstr "Göster"
msgid "View All"
msgstr "Tümünü Göster"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "Denetim İzini Görüntüle"
@@ -29005,6 +29007,7 @@ msgstr "Web Görünümü"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29270,11 +29273,11 @@ msgstr "Hoş Geldiniz Bağlantısı"
msgid "Welcome Workspace"
msgstr "Çalışma Alanına Hoşgeldiniz"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Hoşgeldiniz e-postası gönderildi"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Hoşgeldiniz {0}"
@@ -29628,7 +29631,7 @@ msgstr "Y Ekseni Alanları"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y Alanı"
@@ -29689,7 +29692,7 @@ msgstr "Sarı"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Evet"
@@ -29764,7 +29767,7 @@ msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor"
msgid "You are not allowed to print this report"
msgstr "Bu raporu yazdırmanıza izin verilmiyor"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Bu belge ile ilişkili e-posta göndermenize izin verilmiyor"
@@ -29879,7 +29882,7 @@ msgstr "Aşağıdakilerden birini seçebilirsiniz,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Aynı ağdan birden fazla kullanıcı giriş yapacaksa buraya yüksek bir değer ayarlayabilirsiniz."
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz."
@@ -29964,7 +29967,7 @@ msgstr "İşlemi tamamlamak için yeterli izniniz yok"
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -30160,7 +30163,7 @@ msgstr "Bu belgeyi takip etmeyi bıraktınız"
msgid "You viewed this"
msgstr "Bunu görüntülediniz"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Başka bir sekmeden başka bir kullanıcı olarak oturum açtınız. Sistemi kullanmaya devam etmek için bu sayfayı yenileyin."
@@ -30201,11 +30204,11 @@ msgstr "Hesabınız kilitlendi ve {0} saniye sonra yeniden erişilebilir olacak"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "{0} {1} üzerindeki atama {2} tarafından kaldırıldı"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "Tarayıcınız ses öğesini desteklemiyor."
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "Tarayıcınız video öğesini desteklemiyor."
@@ -31084,7 +31087,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} Raporu"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0} Raporları"
@@ -31255,7 +31258,7 @@ msgstr "{0} s"
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} hesabı {1} {2} ile ilgili aboneliği sonlandırıldı."
@@ -31426,11 +31429,11 @@ msgstr "{0} ayarlandı"
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} Kayıt Seçildi"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31566,7 +31569,7 @@ msgstr "{0} rolünün herhangi bir DocType üzerinde izni yok."
msgid "{0} row #{1}: "
msgstr "{0} satır #{1}: "
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} başarıyla kaydedildi"
@@ -31608,7 +31611,7 @@ msgstr "{0} {1} bu dökümanı gönderdi."
msgid "{0} subscribers added"
msgstr "{0} aboneler eklendi"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "Bu tür e-postaları almaya devam etmek istemiyorsanız {0}"
@@ -31795,7 +31798,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} ile {2}"
diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po
index aefff84d4f..58a5454180 100644
--- a/frappe/locale/vi.po
+++ b/frappe/locale/vi.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-15 20:16\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr ""
@@ -524,11 +524,6 @@ msgstr ""
msgid "Hi,"
msgstr ""
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr ""
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
@@ -845,7 +840,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -911,10 +905,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr ""
@@ -976,8 +970,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1027,8 +1021,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1089,7 +1083,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1093,7 @@ msgstr ""
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr ""
@@ -1122,12 +1116,12 @@ msgstr ""
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
@@ -1234,7 +1228,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr ""
@@ -1389,11 +1383,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1936,7 +1930,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr ""
@@ -2035,7 +2029,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2211,7 +2205,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2292,7 +2286,7 @@ msgstr ""
msgid "Archived Columns"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr ""
@@ -2324,7 +2318,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2396,7 +2390,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2547,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr ""
@@ -3046,7 +3040,7 @@ msgstr ""
msgid "BCC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr ""
@@ -3089,7 +3083,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr ""
@@ -3694,7 +3688,7 @@ msgstr ""
msgid "CC"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr ""
@@ -3885,7 +3879,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3903,7 +3897,7 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4165,7 +4159,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr ""
@@ -4303,7 +4297,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4472,11 +4466,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
@@ -4484,7 +4478,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4510,7 +4504,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
@@ -4752,7 +4746,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4807,7 +4801,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5051,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5466,7 +5460,7 @@ msgstr ""
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
@@ -5590,7 +5584,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5604,13 +5598,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr ""
@@ -6074,12 +6068,12 @@ msgstr ""
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6723,7 +6717,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6732,7 +6726,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6768,7 +6762,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr ""
@@ -6810,12 +6804,12 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
@@ -7223,8 +7217,8 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr ""
@@ -7233,7 +7227,7 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -7985,7 +7979,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr ""
@@ -8069,7 +8063,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr ""
@@ -8184,9 +8178,9 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8198,7 +8192,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8233,11 +8227,11 @@ msgstr ""
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8414,7 +8408,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8449,7 +8443,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr ""
@@ -8556,7 +8550,7 @@ msgstr ""
msgid "Email Queue Recipient"
msgstr ""
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
@@ -8620,7 +8614,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr ""
@@ -8652,7 +8646,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8678,7 +8672,7 @@ msgstr ""
msgid "Emails are already being pulled from this account."
msgstr ""
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr ""
@@ -8903,8 +8897,8 @@ msgstr ""
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr ""
@@ -9031,7 +9025,7 @@ msgstr ""
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr ""
@@ -9345,7 +9339,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9371,7 +9365,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9432,13 +9426,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
@@ -9796,8 +9790,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10367,7 +10361,7 @@ msgid "Folio"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr ""
@@ -10559,7 +10553,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10821,7 +10815,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -10837,7 +10831,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr ""
@@ -10888,7 +10882,7 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -10966,7 +10960,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr ""
@@ -10974,7 +10968,7 @@ msgstr ""
msgid "Generate Random Password"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
@@ -11090,7 +11084,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr ""
@@ -11254,8 +11248,6 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
@@ -11292,6 +11284,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11719,6 +11712,10 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -11832,7 +11829,7 @@ msgstr ""
msgid "Hide Standard Menu"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
@@ -12388,7 +12385,7 @@ msgstr ""
msgid "Image link '{0}' is not valid"
msgstr ""
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
@@ -12436,7 +12433,7 @@ msgstr ""
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12664,11 +12661,15 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr ""
@@ -12826,7 +12827,7 @@ msgstr ""
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr ""
@@ -13017,7 +13018,7 @@ msgstr ""
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13128,7 +13129,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13718,8 +13719,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr ""
@@ -14684,7 +14685,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -14756,7 +14757,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr ""
@@ -15465,7 +15466,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15502,7 +15503,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr ""
@@ -16215,12 +16216,12 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
@@ -16352,10 +16353,6 @@ msgstr ""
msgid "New Name"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr ""
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr ""
@@ -16456,7 +16453,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16468,15 +16465,15 @@ msgstr ""
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr ""
@@ -16488,7 +16485,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16615,7 +16612,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16756,7 +16753,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
@@ -16824,7 +16821,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr ""
@@ -17016,7 +17013,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +17069,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17082,8 +17079,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17116,7 +17113,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr ""
@@ -17351,7 +17348,7 @@ msgstr ""
msgid "Notify users with a popup when they log in"
msgstr ""
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr ""
@@ -17646,7 +17643,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -17722,7 +17719,7 @@ msgstr ""
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr ""
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr ""
@@ -17875,7 +17872,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -17930,7 +17927,7 @@ msgstr ""
msgid "Optimize"
msgstr ""
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
@@ -18121,7 +18118,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr ""
@@ -18480,11 +18477,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr ""
@@ -18518,7 +18515,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18530,7 +18527,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18901,7 +18898,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr ""
@@ -18917,7 +18914,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18949,7 +18946,7 @@ msgstr ""
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr ""
@@ -19140,7 +19137,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr ""
@@ -19198,7 +19195,7 @@ msgstr ""
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr ""
@@ -19226,7 +19223,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19444,11 +19441,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
@@ -19513,7 +19510,7 @@ msgstr ""
msgid "Preview type"
msgstr ""
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr ""
@@ -19584,16 +19581,16 @@ msgstr ""
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -19663,7 +19660,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19698,7 +19695,7 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr ""
@@ -19844,7 +19841,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr ""
@@ -20150,7 +20147,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20347,7 +20344,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr ""
@@ -20423,7 +20420,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
@@ -20443,7 +20440,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr ""
@@ -20589,12 +20586,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
@@ -20808,11 +20805,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20851,7 +20848,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr ""
@@ -20900,7 +20897,7 @@ msgstr ""
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr ""
@@ -20931,7 +20928,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
@@ -21013,7 +21010,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21041,7 +21038,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr ""
@@ -21231,7 +21228,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr ""
@@ -21283,7 +21280,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
@@ -21295,7 +21292,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr ""
@@ -21303,7 +21300,7 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21339,7 +21336,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr ""
@@ -21778,7 +21775,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -21812,7 +21809,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22205,12 +22202,12 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22237,7 +22234,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr ""
@@ -22256,7 +22253,7 @@ msgstr ""
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22304,7 +22301,7 @@ msgstr ""
msgid "Schedule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
@@ -22613,7 +22610,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr ""
@@ -22681,8 +22678,8 @@ msgstr ""
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22748,7 +22745,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr ""
@@ -22819,7 +22816,7 @@ msgid "Select Page"
msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr ""
@@ -22911,13 +22908,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23033,7 +23030,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr ""
@@ -23096,7 +23093,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr ""
@@ -23258,7 +23255,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23297,11 +23294,11 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr ""
@@ -23337,7 +23334,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr ""
@@ -23363,7 +23360,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr ""
@@ -23535,7 +23532,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23581,7 +23578,7 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23784,7 +23781,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr ""
@@ -23860,7 +23857,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr ""
@@ -24034,7 +24031,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr ""
@@ -24836,7 +24833,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -24875,7 +24872,7 @@ msgstr ""
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -24933,7 +24930,7 @@ msgstr ""
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25082,7 +25079,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr ""
@@ -25625,7 +25622,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr ""
@@ -25889,11 +25886,11 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
@@ -25970,7 +25967,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -25999,7 +25996,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26023,7 +26020,7 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr ""
@@ -26196,7 +26193,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26252,7 +26249,7 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26260,7 +26257,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr ""
@@ -26326,7 +26323,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr ""
@@ -26674,7 +26671,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26749,7 +26746,7 @@ msgstr ""
msgid "Toggle Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr ""
@@ -26811,7 +26808,7 @@ msgstr ""
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26873,9 +26870,9 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27043,7 +27040,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr ""
@@ -27076,6 +27073,11 @@ msgstr ""
msgid "Translations"
msgstr ""
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27413,11 +27415,11 @@ msgstr ""
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
@@ -27426,7 +27428,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr ""
@@ -27497,7 +27499,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
@@ -27511,7 +27513,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr ""
@@ -27531,7 +27533,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr ""
@@ -27940,7 +27942,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr ""
@@ -28046,12 +28048,12 @@ msgstr ""
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
@@ -28152,15 +28154,15 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr ""
@@ -28181,7 +28183,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28210,7 +28212,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr ""
@@ -28483,7 +28485,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
@@ -28770,6 +28772,7 @@ msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29035,11 +29038,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr ""
@@ -29393,7 +29396,7 @@ msgstr ""
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr ""
@@ -29454,7 +29457,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29529,7 +29532,7 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr ""
@@ -29644,7 +29647,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29729,7 +29732,7 @@ msgstr ""
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29925,7 +29928,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -29966,11 +29969,11 @@ msgstr ""
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr ""
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr ""
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr ""
@@ -30849,7 +30852,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr ""
@@ -31020,7 +31023,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31191,11 +31194,11 @@ msgstr ""
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr ""
@@ -31331,7 +31334,7 @@ msgstr ""
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr ""
@@ -31373,7 +31376,7 @@ msgstr ""
msgid "{0} subscribers added"
msgstr ""
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr ""
@@ -31560,7 +31563,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po
index 62bed5d15d..674e5bbe47 100644
--- a/frappe/locale/zh.po
+++ b/frappe/locale/zh.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-07-13 09:36+0000\n"
-"PO-Revision-Date: 2025-07-16 20:14\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-21 21:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -141,7 +141,7 @@ msgstr "1天"
msgid "1 Google Calendar Event synced."
msgstr "已同步1个Google日历事件"
-#: frappe/public/js/frappe/views/reports/query_report.js:953
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "1 Report"
msgstr "1个报表"
@@ -709,11 +709,6 @@ msgstr "doc.grand_total > 0
\n\n"
msgid "Hi,"
msgstr "你好,"
-#. Header text in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Reports & Masters"
-msgstr "an class=\"h4\">报告 & 大师"
-
#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr "警告: 本字段为系统生成,可能被后续更新覆盖。请使用{0}进行修改。"
@@ -1030,7 +1025,6 @@ msgstr ""
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/email/doctype/email_group/email_group.js:34
#: frappe/email/doctype/email_group/email_group.js:63
-#: frappe/email/doctype/email_group/email_group.js:72
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
@@ -1096,10 +1090,10 @@ msgstr "操作{0}在{2} {1}上失败。查看{3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:190
-#: frappe/public/js/frappe/views/reports/query_report.js:203
-#: frappe/public/js/frappe/views/reports/query_report.js:213
-#: frappe/public/js/frappe/views/reports/query_report.js:840
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "操作"
@@ -1161,8 +1155,8 @@ msgstr "用户操作日志"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:265
-#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "添加"
@@ -1179,7 +1173,7 @@ msgstr "添加/更新"
msgid "Add A New Rule"
msgstr "创建新规则"
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "添加附件"
@@ -1203,7 +1197,7 @@ msgstr "添加上方边框"
msgid "Add Card to Dashboard"
msgstr "添加到仪表板"
-#: frappe/public/js/frappe/views/reports/query_report.js:209
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "添加图表至数据面板"
@@ -1212,8 +1206,8 @@ msgid "Add Child"
msgstr "添加子项"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1795
-#: frappe/public/js/frappe/views/reports/query_report.js:1798
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
#: frappe/public/js/frappe/views/reports/report_view.js:355
#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1274,7 +1268,7 @@ msgstr "添加参与者"
msgid "Add Query Parameters"
msgstr "添加查询参数"
-#: frappe/core/doctype/user/user.py:808
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr "添加角色"
@@ -1284,7 +1278,7 @@ msgstr "添加一行"
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:130
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "添加签名"
@@ -1307,12 +1301,12 @@ msgstr "添加订阅者"
msgid "Add Tags"
msgstr "添加标签"
-#: frappe/public/js/frappe/list/list_view.js:2004
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "添加标签"
-#: frappe/public/js/frappe/views/communication.js:427
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr "新建模板"
@@ -1419,7 +1413,7 @@ msgid "Add tab"
msgstr "添加页签"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "添加到仪表板"
@@ -1574,11 +1568,11 @@ msgstr "系统管理"
msgid "Administrator"
msgstr "管理员"
-#: frappe/core/doctype/user/user.py:1213
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
msgstr "管理员登录"
-#: frappe/core/doctype/user/user.py:1207
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "管理员访问{0}在{1}通过IP地址{2}。"
@@ -2122,7 +2116,7 @@ msgstr ""
msgid "Allows skipping authorization if a user has active tokens."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "已注册"
@@ -2221,7 +2215,7 @@ msgstr "不允许修订"
msgid "Amendment naming rules updated."
msgstr "修订命名规则已更新。"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "设置会话默认值时发生错误"
@@ -2397,7 +2391,7 @@ msgstr "应用于"
msgid "Apply"
msgstr "应用"
-#: frappe/public/js/frappe/list/list_view.js:1989
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "应用分配规则"
@@ -2478,7 +2472,7 @@ msgstr "已存档"
msgid "Archived Columns"
msgstr "归档列"
-#: frappe/public/js/frappe/list/list_view.js:1968
+#: frappe/public/js/frappe/list/list_view.js:1966
msgid "Are you sure you want to clear the assignments?"
msgstr "确定要清除分配吗?"
@@ -2510,7 +2504,7 @@ msgstr "确定要删除标签页吗?该标签页中的所有节及字段将移
msgid "Are you sure you want to discard the changes?"
msgstr "确定要放弃更改吗?"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:968
msgid "Are you sure you want to generate a new report?"
msgstr "确定要生成新报告吗?"
@@ -2582,7 +2576,7 @@ msgstr "分派条件"
msgid "Assign To"
msgstr "执行人"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "分配给"
@@ -2739,7 +2733,7 @@ msgstr "父文档类型必须至少有一个字段"
msgid "Attach"
msgstr "添加文件"
-#: frappe/public/js/frappe/views/communication.js:152
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "添加打印输出作为附件"
@@ -3232,7 +3226,7 @@ msgstr "B9"
msgid "BCC"
msgstr "暗送"
-#: frappe/public/js/frappe/views/communication.js:85
+#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
msgstr "暗送"
@@ -3275,7 +3269,7 @@ msgstr "背景图片"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "后台任务"
@@ -3881,7 +3875,7 @@ msgstr "已取消"
msgid "CC"
msgstr "抄送"
-#: frappe/public/js/frappe/views/communication.js:76
+#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
msgstr "抄送"
@@ -4072,7 +4066,7 @@ msgstr "无法将{0}重命名为{1},因为{0}不存在。"
msgid "Cancel"
msgstr "取消"
-#: frappe/public/js/frappe/list/list_view.js:2059
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "取消"
@@ -4090,7 +4084,7 @@ msgstr "全部取消"
msgid "Cancel All Documents"
msgstr "取消所有单据"
-#: frappe/public/js/frappe/list/list_view.js:2064
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "确定要取消{0}个文档吗?"
@@ -4352,7 +4346,7 @@ msgstr "卡片"
msgid "Card Break"
msgstr "卡片分隔"
-#: frappe/public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "数字卡标题"
@@ -4491,7 +4485,7 @@ msgstr "图表配置"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/views/reports/query_report.js:289
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "图表名称"
@@ -4660,11 +4654,11 @@ msgstr "市/镇"
msgid "Clear"
msgstr "清除"
-#: frappe/public/js/frappe/views/communication.js:432
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr "清空并添加模板"
-#: frappe/public/js/frappe/views/communication.js:111
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr "清除并添加模板"
@@ -4672,7 +4666,7 @@ msgstr "清除并添加模板"
msgid "Clear All"
msgstr "清空全部"
-#: frappe/public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:1963
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "清除分配"
@@ -4698,7 +4692,7 @@ msgstr "日志保留天数"
msgid "Clear User Permissions"
msgstr "清除用户权限限制"
-#: frappe/public/js/frappe/views/communication.js:433
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr "模板内容覆盖邮件正文(消息)"
@@ -4940,7 +4934,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "折叠"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "全部折叠"
@@ -4995,7 +4989,7 @@ msgstr "可折叠先决条件(JS)"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5245,7 +5239,7 @@ msgstr "完成"
msgid "Complete By"
msgstr "完成日期"
-#: frappe/core/doctype/user/user.py:478
+#: frappe/core/doctype/user/user.py:479
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "完成注册"
@@ -5656,7 +5650,7 @@ msgstr "复制嵌入代码"
msgid "Copy error to clipboard"
msgstr "将出错日志复制到剪贴板"
-#: frappe/public/js/frappe/form/toolbar.js:504
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr "复制到剪贴板"
@@ -5780,7 +5774,7 @@ msgstr "贷方"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5794,13 +5788,13 @@ msgstr "创建并继续"
msgid "Create Address"
msgstr "创建地址"
-#: frappe/public/js/frappe/views/reports/query_report.js:186
-#: frappe/public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "创建数字卡"
-#: frappe/public/js/frappe/views/reports/query_report.js:284
-#: frappe/public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "创建图表"
@@ -6264,12 +6258,12 @@ msgstr "{0}的自定义已导出到:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/form/toolbar.js:600
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "定制"
-#: frappe/public/js/frappe/list/list_view.js:1802
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "自定义"
@@ -6913,7 +6907,7 @@ msgstr "已逾期"
#: frappe/core/doctype/user_permission/user_permission_list.js:189
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
-#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/form/toolbar.js:464
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:282
@@ -6922,7 +6916,7 @@ msgstr "已逾期"
msgid "Delete"
msgstr "删除"
-#: frappe/public/js/frappe/list/list_view.js:2027
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "删除"
@@ -6958,7 +6952,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "删除标签页"
-#: frappe/public/js/frappe/views/reports/query_report.js:934
+#: frappe/public/js/frappe/views/reports/query_report.js:935
msgid "Delete and Generate New"
msgstr "删除并生成新项"
@@ -7000,12 +6994,12 @@ msgstr "删除标签页"
msgid "Delete this record to allow sending to this email address"
msgstr "删除此记录允许发送此邮件地址"
-#: frappe/public/js/frappe/list/list_view.js:2032
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "永久删除 {0} 项?"
-#: frappe/public/js/frappe/list/list_view.js:2038
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "永久删除 {0} 项?"
@@ -7413,8 +7407,8 @@ msgstr "禁用自助注册"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/public/js/frappe/form/templates/address_list.html:35
-#: frappe/public/js/frappe/model/indicator.js:108
-#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "禁用"
@@ -7423,7 +7417,7 @@ msgstr "禁用"
msgid "Disabled Auto Reply"
msgstr "禁用自动回复"
-#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/form/toolbar.js:338
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
#: frappe/public/js/frappe/views/workspace/workspace.js:351
#: frappe/public/js/frappe/web_form/web_form.js:187
@@ -8178,7 +8172,7 @@ msgstr "下载链接"
msgid "Download PDF"
msgstr "下载PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:830
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "下载报表"
@@ -8262,7 +8256,7 @@ msgid "Due Date Based On"
msgstr "到期日基于"
#: frappe/public/js/frappe/form/grid_row_form.js:42
-#: frappe/public/js/frappe/form/toolbar.js:419
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "复制"
@@ -8377,9 +8371,9 @@ msgstr "退出"
#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:878
-#: frappe/public/js/frappe/views/reports/query_report.js:1748
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8391,7 +8385,7 @@ msgstr "退出"
msgid "Edit"
msgstr "编辑"
-#: frappe/public/js/frappe/list/list_view.js:2113
+#: frappe/public/js/frappe/list/list_view.js:2111
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "编辑"
@@ -8426,11 +8420,11 @@ msgstr "编辑自定义块"
msgid "Edit Custom HTML"
msgstr "编辑自定义HTML"
-#: frappe/public/js/frappe/form/toolbar.js:616
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "修改单据类型"
-#: frappe/public/js/frappe/list/list_view.js:1829
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "编辑文档类型"
@@ -8607,7 +8601,7 @@ msgstr "元素选择器"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
-#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/public/js/frappe/form/toolbar.js:382
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8642,7 +8636,7 @@ msgstr "电子邮件账户已禁用"
msgid "Email Account Name"
msgstr "电子邮箱帐号名"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "电子邮箱帐号已被多次添加"
@@ -8749,7 +8743,7 @@ msgstr "电子邮件队列"
msgid "Email Queue Recipient"
msgstr "电子邮件队列收件人"
-#: frappe/email/queue.py:160
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr "由于过多失败,已中止电子邮件队列刷新操作。"
@@ -8813,7 +8807,7 @@ msgstr "电子邮件同步选项"
#: frappe/automation/workspace/tools/tools.json
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/public/js/frappe/views/communication.js:104
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "电子邮件模板"
@@ -8845,7 +8839,7 @@ msgstr "电子邮件已被移至垃圾桶"
msgid "Email is mandatory to create User Email"
msgstr "创建用户电子邮件时必须填写邮箱地址"
-#: frappe/public/js/frappe/views/communication.js:816
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "电子邮件不会被发送到{0}(退订/禁用)"
@@ -8871,7 +8865,7 @@ msgstr "已拉取电子邮件"
msgid "Emails are already being pulled from this account."
msgstr "已从该账户持续拉取电子邮件。"
-#: frappe/email/queue.py:137
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "邮件已被静音"
@@ -9097,8 +9091,8 @@ msgstr "启用应用内网站跟踪"
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/model/indicator.js:106
-#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "已启用"
@@ -9225,7 +9219,7 @@ msgstr "在Google设置中输入客户端ID和客户端密钥。"
msgid "Enter Code displayed in OTP App."
msgstr "输入OTP应用中显示的验证码。"
-#: frappe/public/js/frappe/views/communication.js:771
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "输入电子邮件收件人(S)"
@@ -9539,7 +9533,7 @@ msgstr ""
msgid "Executing..."
msgstr "正在执行..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2095
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "运行时间:{0}秒"
@@ -9565,7 +9559,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "展开"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "全部展开"
@@ -9626,13 +9620,13 @@ msgstr "QR码图像页面的到期时间"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1783
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "导出"
-#: frappe/public/js/frappe/list/list_view.js:2135
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "导出"
@@ -9990,8 +9984,8 @@ msgstr "正在获取默认全局搜索文档。"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:235
-#: frappe/public/js/frappe/views/reports/query_report.js:1842
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10561,7 +10555,7 @@ msgid "Folio"
msgstr "页码"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "关注"
@@ -10753,7 +10747,7 @@ msgstr "用户"
msgid "For Value"
msgstr "允许值"
-#: frappe/public/js/frappe/views/reports/query_report.js:2092
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "过滤条件可以用>,<,= 比较符,两个值之间用:表示范围, 如>5, <10, =20, 5:10"
@@ -11015,7 +11009,7 @@ msgstr "星期五"
msgid "From"
msgstr "从"
-#: frappe/public/js/frappe/views/communication.js:194
+#: frappe/public/js/frappe/views/communication.js:197
msgctxt "Email Sender"
msgid "From"
msgstr "从"
@@ -11031,7 +11025,7 @@ msgstr "开始日期"
msgid "From Date Field"
msgstr "开始日期字段"
-#: frappe/public/js/frappe/views/reports/query_report.js:1803
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "单据类型"
@@ -11082,7 +11076,7 @@ msgstr "全宽"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/views/reports/query_report.js:246
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "函数"
@@ -11160,7 +11154,7 @@ msgstr "正常"
msgid "Generate Keys"
msgstr "生成密钥"
-#: frappe/public/js/frappe/views/reports/query_report.js:872
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "生成新报表"
@@ -11168,7 +11162,7 @@ msgstr "生成新报表"
msgid "Generate Random Password"
msgstr "生成随机密码"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr "生成跟踪URL"
@@ -11284,7 +11278,7 @@ msgstr "全局访问"
msgid "Global Unsubscribe"
msgstr "全部退订"
-#: frappe/public/js/frappe/form/toolbar.js:840
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "确定"
@@ -11448,8 +11442,6 @@ msgstr "谷歌联系人 - 无法更新谷歌联系人{0}中的联系人,错误
msgid "Google Contacts Id"
msgstr "谷歌联系人ID"
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "谷歌云端硬盘"
@@ -11486,6 +11478,7 @@ msgstr "Google服务"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
@@ -11913,6 +11906,10 @@ msgstr "隐藏"
msgid "Hidden Fields"
msgstr "隐藏字段"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
+
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/frappe/widgets/base_widget.js:46
@@ -12026,7 +12023,7 @@ msgstr "隐藏左边栏,菜单及评论"
msgid "Hide Standard Menu"
msgstr "隐藏标准菜单"
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr "隐藏标签"
@@ -12582,7 +12579,7 @@ msgstr "图像字段的类型必须为附着图像"
msgid "Image link '{0}' is not valid"
msgstr "图片链接'{0}'无效"
-#: frappe/core/doctype/file/file.js:107
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr "图片已优化"
@@ -12630,7 +12627,7 @@ msgstr "隐式"
msgid "Import"
msgstr "导入"
-#: frappe/public/js/frappe/list/list_view.js:1766
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "导入"
@@ -12858,11 +12855,15 @@ msgstr "包含应用主题"
msgid "Include Web View Link in Email"
msgstr "邮件包含网页视图链接"
-#: frappe/public/js/frappe/views/reports/query_report.js:1618
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr "包括过滤条件"
-#: frappe/public/js/frappe/views/reports/query_report.js:1610
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "包括缩进"
@@ -13020,7 +13021,7 @@ msgstr "在上面插入"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1848
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "在后边插入"
@@ -13211,7 +13212,7 @@ msgstr "无效"
msgid "Invalid \"depends_on\" expression"
msgstr "“depends_on”表达式无效"
-#: frappe/public/js/frappe/views/reports/query_report.js:513
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "在过滤器{0}中设置了无效的“ depends_on”表达式"
@@ -13322,7 +13323,7 @@ msgstr "无效覆盖"
msgid "Invalid Parameters."
msgstr "参数无效"
-#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:148
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
#: frappe/www/update-password.html:272
msgid "Invalid Password"
@@ -13912,8 +13913,8 @@ msgstr "作业未运行。"
msgid "Join video conference with {0}"
msgstr "加入与{0}的视频会议"
-#: frappe/public/js/frappe/form/toolbar.js:395
-#: frappe/public/js/frappe/form/toolbar.js:830
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "定位到字段"
@@ -14878,7 +14879,7 @@ msgstr "列表过滤条件"
msgid "List Settings"
msgstr "列表设置"
-#: frappe/public/js/frappe/list/list_view.js:1846
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "列表设置"
@@ -14950,7 +14951,7 @@ msgstr "加载更多"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1087
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "载入中"
@@ -15659,7 +15660,7 @@ msgstr "只有组和组,叶节点和叶节点之间能合并"
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/public/js/frappe/views/communication.js:126
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
@@ -15696,7 +15697,7 @@ msgstr "消息已发送"
msgid "Message Type"
msgstr "消息类型"
-#: frappe/public/js/frappe/views/communication.js:950
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "邮件被剪辑"
@@ -16411,12 +16412,12 @@ msgstr "导航栏模板"
msgid "Navbar Template Values"
msgstr "导航栏模板值"
-#: frappe/public/js/frappe/list/list_view.js:1237
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "向下导航列表"
-#: frappe/public/js/frappe/list/list_view.js:1244
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "向上导航列表"
@@ -16548,10 +16549,6 @@ msgstr "从网站的联系页面新消息"
msgid "New Name"
msgstr "新名称"
-#: frappe/email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "新简讯"
-
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "新通知"
@@ -16652,7 +16649,7 @@ msgstr "要设置的新值"
#: frappe/public/js/frappe/form/toolbar.js:37
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
-#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/form/toolbar.js:561
#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
@@ -16664,15 +16661,15 @@ msgstr "要设置的新值"
msgid "New {0}"
msgstr "新建 {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "已创建新{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "新{0}{1}已添加到仪表盘{2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "已创建新{0}{1}"
@@ -16684,7 +16681,7 @@ msgstr "新{0}:{1}"
msgid "New {} releases for the following apps are available"
msgstr "以下应用程序有新版本{}了"
-#: frappe/core/doctype/user/user.py:804
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr "新创建的用户 {0} 未启用任何角色"
@@ -16811,7 +16808,7 @@ msgstr "点击进入下一步"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "否"
@@ -16952,7 +16949,7 @@ msgstr "没有结果"
msgid "No Results found"
msgstr "无数据"
-#: frappe/core/doctype/user/user.py:805
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr "未分派角色"
@@ -17020,7 +17017,7 @@ msgstr "未添加联系人。"
msgid "No contacts linked to document"
msgstr "文档未关联联系人"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "没有要导出的数据"
@@ -17212,7 +17209,7 @@ msgstr "基础查询(剔除查询参数)次数"
msgid "Normalized Query"
msgstr "规范化查询"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "不允许"
@@ -17268,7 +17265,7 @@ msgstr "不可为空"
msgid "Not Permitted"
msgstr "没有权限"
-#: frappe/desk/query_report.py:543
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr "无权限读取{0}"
@@ -17278,8 +17275,8 @@ msgstr "无权限读取{0}"
msgid "Not Published"
msgstr "未发布"
-#: frappe/public/js/frappe/form/toolbar.js:285
-#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17312,7 +17309,7 @@ msgstr "未设置"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "不是一个有效的CSV文件"
-#: frappe/core/doctype/user/user.py:265
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "非有效用户图像。"
@@ -17547,7 +17544,7 @@ msgstr "如果一分钟内未回复,则发出通知"
msgid "Notify users with a popup when they log in"
msgstr "用户登录后以弹框通知"
-#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "现在"
@@ -17842,7 +17839,7 @@ msgstr "在或之后"
msgid "On or Before"
msgstr "在或之前"
-#: frappe/public/js/frappe/views/communication.js:960
+#: frappe/public/js/frappe/views/communication.js:963
msgid "On {0}, {1} wrote:"
msgstr "{0},{1}写道:"
@@ -17918,7 +17915,7 @@ msgstr "只有管理员可以编辑"
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "只有管理员可以保存标准报表。请修改为新报表名后保存。"
-#: frappe/recorder.py:316
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "只允许管理员使用记录器"
@@ -18071,7 +18068,7 @@ msgstr ""
msgid "Open in a new tab"
msgstr "在新标签页打开"
-#: frappe/public/js/frappe/list/list_view.js:1290
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "打开列表项"
@@ -18126,7 +18123,7 @@ msgstr "运算符必须是{0}"
msgid "Optimize"
msgstr "优化"
-#: frappe/core/doctype/file/file.js:105
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr "正在优化图像..."
@@ -18317,7 +18314,7 @@ msgstr "PATCH方法"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1768
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
msgstr "PDF"
@@ -18676,11 +18673,11 @@ msgstr "已创建"
msgid "Password"
msgstr "密码"
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr "密码邮件已发送"
-#: frappe/core/doctype/user/user.py:458
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
msgstr "密码重置"
@@ -18714,7 +18711,7 @@ msgstr "邮箱账户缺少密码"
msgid "Password not found for {0} {1} {2}"
msgstr "未找到{0} {1} {2}的密码"
-#: frappe/core/doctype/user/user.py:1080
+#: frappe/core/doctype/user/user.py:1084
msgid "Password reset instructions have been sent to {}'s email"
msgstr "密码重置说明已发送至{}的邮箱"
@@ -18726,7 +18723,7 @@ msgstr "密码已设置"
msgid "Password size exceeded the maximum allowed size"
msgstr "密码长度超过允许最大值"
-#: frappe/core/doctype/user/user.py:871
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr "密码长度超过允许最大值"
@@ -19097,7 +19094,7 @@ msgstr "请复制此网址主题定制。"
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "请通过pip安装ldap3库以使用ldap功能。"
-#: frappe/public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "请设置图表"
@@ -19113,7 +19110,7 @@ msgstr "请在您的电子邮件中添加主题"
msgid "Please add a valid comment."
msgstr "请添加有效评论"
-#: frappe/core/doctype/user/user.py:1063
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "请联络管理员确认您的注册"
@@ -19145,7 +19142,7 @@ msgstr "请检查仪表板图表设置的过滤值:{}"
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "请检查为字段{0}设置的“提取自”的值"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "请在您的电子邮件中查看验证码"
@@ -19336,7 +19333,7 @@ msgstr "请先选择实体类型"
msgid "Please select Minimum Password Score"
msgstr "请选择最低密码分数"
-#: frappe/public/js/frappe/views/reports/query_report.js:1183
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
msgid "Please select X and Y fields"
msgstr "请选择X和Y轴字段"
@@ -19394,7 +19391,7 @@ msgstr "请设置电子邮件地址"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "请在“打印机设置”中为此打印格式设置打印机映射"
-#: frappe/public/js/frappe/views/reports/query_report.js:1406
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "请设置过滤条件"
@@ -19422,7 +19419,7 @@ msgstr "请通过SMS设置将其设置为身份验证方式之前设置短信"
msgid "Please setup a message first"
msgstr "请先设置一条消息"
-#: frappe/core/doctype/user/user.py:423
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "请通过设置 > 邮箱账户配置默认发件账户"
@@ -19640,11 +19637,11 @@ msgstr "后台运行报表用户"
msgid "Prepared report render failed"
msgstr "预制报表渲染失败"
-#: frappe/public/js/frappe/views/reports/query_report.js:472
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "准备报表"
-#: frappe/public/js/frappe/views/communication.js:428
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr "将模板内容追加到邮件正文(消息)"
@@ -19709,7 +19706,7 @@ msgstr "在{0}上预览"
msgid "Preview type"
msgstr "预览类型"
-#: frappe/email/doctype/email_group/email_group.js:90
+#: frappe/email/doctype/email_group/email_group.js:81
msgid "Preview:"
msgstr "预览:"
@@ -19780,16 +19777,16 @@ msgstr "文档类型{0}的主键存在值,不可修改"
#: frappe/printing/page/print/print.js:65
#: frappe/public/js/frappe/form/success_action.js:81
#: frappe/public/js/frappe/form/templates/print_layout.html:46
-#: frappe/public/js/frappe/form/toolbar.js:357
-#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1754
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "打印"
-#: frappe/public/js/frappe/list/list_view.js:2019
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "打印"
@@ -19859,7 +19856,7 @@ msgstr "打印格式帮助"
msgid "Print Format Type"
msgstr "打印格式类型"
-#: frappe/public/js/frappe/views/reports/query_report.js:1576
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
msgid "Print Format not found"
msgstr ""
@@ -19894,7 +19891,7 @@ msgstr "不打印"
msgid "Print Hide If No Value"
msgstr "无值不打印"
-#: frappe/public/js/frappe/views/communication.js:165
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Print Language"
msgstr "打印语言"
@@ -20040,7 +20037,7 @@ msgstr "ProTip:添加Reference: {{ reference_doctype }} {{ reference_nam
msgid "Proceed"
msgstr "继续"
-#: frappe/public/js/frappe/views/reports/query_report.js:930
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "仍然继续"
@@ -20346,7 +20343,7 @@ msgstr "查询报表"
msgid "Query analysis complete. Check suggested indexes."
msgstr "查询分析完成,请检查建议索引"
-#: frappe/utils/safe_exec.py:499
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr "查询必须为SELECT或只读WITH类型"
@@ -20543,7 +20540,7 @@ msgstr "回覆:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:600
-#: frappe/public/js/frappe/views/communication.js:364
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
msgstr "回复:{0}"
@@ -20619,7 +20616,7 @@ msgstr "由收件人阅读"
msgid "Read mode"
msgstr "阅读模式"
-#: frappe/utils/safe_exec.py:97
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr "查阅文档以了解更多"
@@ -20639,7 +20636,7 @@ msgstr "实时通信(SocketIO)"
msgid "Reason"
msgstr "原因"
-#: frappe/public/js/frappe/views/reports/query_report.js:884
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "重新生成"
@@ -20785,12 +20782,12 @@ msgstr "重定向"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis缓存服务器无法运行。请联系管理员/技术支持"
-#: frappe/public/js/frappe/form/toolbar.js:527
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr "恢复"
#: frappe/public/js/frappe/form/form.js:164
-#: frappe/public/js/frappe/form/toolbar.js:535
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr "重做上一步操作"
@@ -21004,11 +21001,11 @@ msgid "Referrer"
msgstr "来源页"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/desk.js:558
#: frappe/public/js/frappe/form/form.js:1201
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:66
-#: frappe/public/js/frappe/views/reports/query_report.js:1743
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21047,7 +21044,7 @@ msgstr "正在刷新"
msgid "Refreshing..."
msgstr "正在刷新..."
-#: frappe/core/doctype/user/user.py:1025
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "已注册但被禁用"
@@ -21096,7 +21093,7 @@ msgstr "重新链接"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:444
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "刷新"
@@ -21127,7 +21124,7 @@ msgstr "保存最后一次输入值"
msgid "Remind At"
msgstr "提醒时间"
-#: frappe/public/js/frappe/form/toolbar.js:476
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr "提醒我"
@@ -21209,7 +21206,7 @@ msgstr "已移除"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
-#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/form/toolbar.js:435
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21237,7 +21234,7 @@ msgstr "本部分标签左对齐,值右对齐"
msgid "Reopen"
msgstr "重新打开"
-#: frappe/public/js/frappe/form/toolbar.js:544
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "重复"
@@ -21427,7 +21424,7 @@ msgstr "报表管理"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1928
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "报表名称"
@@ -21479,7 +21476,7 @@ msgstr "报表无数据,请调整过滤器或更换报表名称"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "报表无数字字段,请更换报表名称"
-#: frappe/public/js/frappe/views/reports/query_report.js:1011
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr "生成报表结果的后台任务已启动,点击查看任务状态"
@@ -21491,7 +21488,7 @@ msgstr "达到报表限制"
msgid "Report timed out."
msgstr "报表超时"
-#: frappe/desk/query_report.py:598
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "报表已成功更新"
@@ -21499,7 +21496,7 @@ msgstr "报表已成功更新"
msgid "Report was not saved (there were errors)"
msgstr "报表尚未保存(有错误)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1966
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "超过10列的报表更适合横向模式"
@@ -21535,7 +21532,7 @@ msgstr "报表"
msgid "Reports & Masters"
msgstr "报表与主数据"
-#: frappe/public/js/frappe/views/reports/query_report.js:927
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "报表已加入队列"
@@ -21974,7 +21971,7 @@ msgstr "角色权限"
msgid "Role Permissions Manager"
msgstr "角色权限管理"
-#: frappe/public/js/frappe/list/list_view.js:1788
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "角色权限管理器"
@@ -22008,7 +22005,7 @@ msgstr "角色复制"
msgid "Role and Level"
msgstr "角色和级别"
-#: frappe/core/doctype/user/user.py:364
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr "已根据用户类型{0}设置角色"
@@ -22401,12 +22398,12 @@ msgstr "星期六"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
-#: frappe/public/js/frappe/views/reports/query_report.js:1920
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
@@ -22433,7 +22430,7 @@ msgstr "另存为"
msgid "Save Customizations"
msgstr "保存自定义"
-#: frappe/public/js/frappe/views/reports/query_report.js:1923
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "保存报表"
@@ -22452,7 +22449,7 @@ msgstr "保存文档。"
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:286
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
@@ -22500,7 +22497,7 @@ msgstr "扫描QR码并输入显示的结果代码。"
msgid "Schedule"
msgstr "计划任务"
-#: frappe/public/js/frappe/views/communication.js:94
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr "定时发送"
@@ -22809,7 +22806,7 @@ msgstr "安全设置"
msgid "See all Activity"
msgstr "查看所有活动"
-#: frappe/public/js/frappe/views/reports/query_report.js:853
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "点这儿可以查看之前的历史报表。"
@@ -22877,8 +22874,8 @@ msgstr "单选"
msgid "Select All"
msgstr "全选"
-#: frappe/public/js/frappe/views/communication.js:174
-#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -22944,7 +22941,7 @@ msgstr "选择用户权限限制单据类型。"
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:200
-#: frappe/public/js/frappe/form/toolbar.js:835
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "选择字段"
@@ -23015,7 +23012,7 @@ msgid "Select Page"
msgstr "选择页面"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:157
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "选择打印格式"
@@ -23107,13 +23104,13 @@ msgstr "选择打印ATLEAST 1项纪录"
msgid "Select atleast 2 actions"
msgstr "选择至少2个操作"
-#: frappe/public/js/frappe/list/list_view.js:1304
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "选择列表项"
-#: frappe/public/js/frappe/list/list_view.js:1256
-#: frappe/public/js/frappe/list/list_view.js:1272
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "选择多个列表项"
@@ -23229,7 +23226,7 @@ msgstr "立即发送"
msgid "Send Print as PDF"
msgstr "使用PDF格式发送打印"
-#: frappe/public/js/frappe/views/communication.js:147
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "发送阅读回执"
@@ -23292,7 +23289,7 @@ msgstr "向此邮件地址发送询价"
msgid "Send login link"
msgstr "发送登录链接"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "抄送给自己"
@@ -23454,7 +23451,7 @@ msgstr "服务器IP"
msgid "Server Script"
msgstr "Python脚本"
-#: frappe/utils/safe_exec.py:96
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "服务器(python)脚本已禁用,可通过后台bench命令 bench set-config -g server_script_enabled 1 启用"
@@ -23493,11 +23490,11 @@ msgstr "会话默认设置"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "会话默认值"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "会话默认值已保存"
@@ -23533,7 +23530,7 @@ msgstr "设置"
msgid "Set Banner from Image"
msgstr "从图像设置横幅"
-#: frappe/public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "设置图表"
@@ -23559,7 +23556,7 @@ msgstr "设置过滤条件"
msgid "Set Filters for {0}"
msgstr "为{0}设置过滤器"
-#: frappe/public/js/frappe/views/reports/query_report.js:2076
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
msgid "Set Level"
msgstr "设置层级"
@@ -23755,7 +23752,7 @@ msgstr "设置您的系统"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -23801,7 +23798,7 @@ msgstr "设置 > 用户"
msgid "Setup > User Permissions"
msgstr "设置 > 用户权限"
-#: frappe/public/js/frappe/views/reports/query_report.js:1789
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "设置电子邮件自动发送"
@@ -24004,7 +24001,7 @@ msgstr "显示语言选择框"
msgid "Show Line Breaks after Sections"
msgstr "章节后,显示换行符"
-#: frappe/public/js/frappe/form/toolbar.js:407
+#: frappe/public/js/frappe/form/toolbar.js:410
msgid "Show Links"
msgstr "显示链接"
@@ -24080,7 +24077,7 @@ msgid "Show Social Login Key as Authorization Server"
msgstr ""
#: frappe/public/js/frappe/list/list_sidebar.html:77
-#: frappe/public/js/frappe/list/list_view.js:1704
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "显示标签"
@@ -24254,7 +24251,7 @@ msgstr "边栏和评论"
msgid "Sign Up and Confirmation"
msgstr "注册与确认"
-#: frappe/core/doctype/user/user.py:1018
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "禁止注册"
@@ -25056,7 +25053,7 @@ msgstr "子域名"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/communication.js:119
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "主题"
@@ -25095,7 +25092,7 @@ msgstr "提交队列"
msgid "Submit"
msgstr "提交"
-#: frappe/public/js/frappe/list/list_view.js:2086
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "提交"
@@ -25153,7 +25150,7 @@ msgstr "提交此文档以完成此步骤"
msgid "Submit this document to confirm"
msgstr "点提交按钮进行确认"
-#: frappe/public/js/frappe/list/list_view.js:2091
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "是否提交{0}个文档?"
@@ -25302,7 +25299,7 @@ msgstr "建议优化"
msgid "Suggested Indexes"
msgstr "建议索引"
-#: frappe/core/doctype/user/user.py:722
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "建议用户名:{0}"
@@ -25845,7 +25842,7 @@ msgstr "模板警告"
msgid "Templates"
msgstr "模板"
-#: frappe/core/doctype/user/user.py:1029
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "暂时禁用"
@@ -26117,11 +26114,11 @@ msgstr "从\n"
"\"IAM & Admin\" > \"Settings\"\n"
"下的 Google Cloud Console 获取的项目编号"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr "重置密码链接已过期"
-#: frappe/core/doctype/user/user.py:991
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr "重置密码链接已被使用或无效"
@@ -26198,7 +26195,7 @@ msgstr "你没有待处理事项"
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "此{1}无{0},何不创建一个!"
-#: frappe/public/js/frappe/views/reports/query_report.js:963
+#: frappe/public/js/frappe/views/reports/query_report.js:964
msgid "There are {0} with the same filters already in the queue:"
msgstr "队列中已有{0}条相同筛选条件的记录:"
@@ -26227,7 +26224,7 @@ msgstr "暂无可显示新消息"
msgid "There is some problem with the file url: {0}"
msgstr "有一些问题与文件的URL:{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:960
+#: frappe/public/js/frappe/views/reports/query_report.js:961
msgid "There is {0} with the same filters already in the queue:"
msgstr "队列中已有{0}条相同筛选条件的记录:"
@@ -26251,7 +26248,7 @@ msgstr "出错了"
msgid "There were errors while creating the document. Please try again."
msgstr "创建单据时出错。请再试一次。"
-#: frappe/public/js/frappe/views/communication.js:837
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "邮件发送失败,请重试。"
@@ -26428,7 +26425,7 @@ msgstr "暂不支持此地理位置服务提供商。"
msgid "This goes above the slideshow."
msgstr "在幻灯片上面。"
-#: frappe/public/js/frappe/views/reports/query_report.js:2152
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果"
@@ -26484,7 +26481,7 @@ msgstr "可能会打印多页"
msgid "This month"
msgstr "这个月"
-#: frappe/public/js/frappe/views/reports/query_report.js:1035
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。"
@@ -26492,7 +26489,7 @@ msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告
msgid "This report was generated on {0}"
msgstr "此报表是在{0}上生成的"
-#: frappe/public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "报表{0}已生成。"
@@ -26558,7 +26555,7 @@ msgstr "将重置此导览并向所有用户显示。是否继续?"
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "将立即终止任务,此操作可能危险,是否继续?"
-#: frappe/core/doctype/user/user.py:1242
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "节流"
@@ -26912,7 +26909,7 @@ msgstr "导出此步骤为JSON需关联到入职文档并保存"
msgid "To generate password click {0}"
msgstr "生成密码请点击{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:852
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "要获取已更新报表,请单击{0}。"
@@ -26987,7 +26984,7 @@ msgstr "切换到图标视图"
msgid "Toggle Sidebar"
msgstr "切换边栏"
-#: frappe/public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
msgstr "切换侧边栏"
@@ -27049,7 +27046,7 @@ msgstr "单次操作中数据库变更过多"
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "后台作业队列过长({0}),请稍后重试"
-#: frappe/core/doctype/user/user.py:1030
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "最近有太多用户注册,导致注册功能被自动临时禁用了,请一个小时后重试。"
@@ -27111,9 +27108,9 @@ msgstr "顶部右侧"
msgid "Topic"
msgstr "主题"
-#: frappe/desk/query_report.py:534
+#: frappe/desk/query_report.py:546
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "总计"
@@ -27283,7 +27280,7 @@ msgstr "状态转换"
msgid "Translatable"
msgstr "可翻译"
-#: frappe/public/js/frappe/views/reports/query_report.js:2207
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
msgid "Translate Data"
msgstr "翻译数据"
@@ -27316,6 +27313,11 @@ msgstr "翻译"
msgid "Translations"
msgstr "翻译"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
@@ -27654,11 +27656,11 @@ msgstr "未捕获异常"
msgid "Unchanged"
msgstr "未变更"
-#: frappe/public/js/frappe/form/toolbar.js:515
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr "撤销"
-#: frappe/public/js/frappe/form/toolbar.js:523
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr "撤销上一步操作"
@@ -27667,7 +27669,7 @@ msgid "Unescaped quotes in string literal: {0}"
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "取消关注"
@@ -27738,7 +27740,7 @@ msgstr "未读"
msgid "Unread Notification Sent"
msgstr "未读发送通知"
-#: frappe/utils/safe_exec.py:500
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr "不安全的SQL查询"
@@ -27752,7 +27754,7 @@ msgstr "全部不选"
msgid "Unshared"
msgstr "非分享"
-#: frappe/email/queue.py:66
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "退订"
@@ -27772,7 +27774,7 @@ msgstr "退订参数"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/queue.py:122
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "已退订"
@@ -28181,7 +28183,7 @@ msgstr "用户无法创建"
msgid "User Cannot Search"
msgstr "用户不能搜索"
-#: frappe/public/js/frappe/desk.js:554
+#: frappe/public/js/frappe/desk.js:556
msgid "User Changed"
msgstr "用户账号已变更"
@@ -28287,12 +28289,12 @@ msgstr "用户权限限制"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1907
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "用户权限限制"
-#: frappe/public/js/frappe/list/list_view.js:1777
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "用户权限"
@@ -28393,15 +28395,15 @@ msgstr "邮箱地址为{0}的用户不存在"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "系统中不存在邮箱为{0}的用户,请联系系统管理员创建"
-#: frappe/core/doctype/user/user.py:537
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "用户{0}不能被删除"
-#: frappe/core/doctype/user/user.py:327
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "用户{0}不能被禁用"
-#: frappe/core/doctype/user/user.py:603
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "不允许变更用户名{0}"
@@ -28422,7 +28424,7 @@ msgstr "用户{0}无权创建工作区"
msgid "User {0} has requested for data deletion"
msgstr "用户{0}已请求数据删除"
-#: frappe/core/doctype/user/user.py:1371
+#: frappe/core/doctype/user/user.py:1375
msgid "User {0} impersonated as {1}"
msgstr "用户 {0} 以 {1} 身份登录"
@@ -28451,7 +28453,7 @@ msgstr "用户信息URI"
msgid "Username"
msgstr "用户名"
-#: frappe/core/doctype/user/user.py:689
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "用户名{0}已存在"
@@ -28724,7 +28726,7 @@ msgstr "查看"
msgid "View All"
msgstr "查看全部"
-#: frappe/public/js/frappe/form/toolbar.js:577
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr "查看审计跟踪"
@@ -29011,6 +29013,7 @@ msgstr "Web视图"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
+#. Label of a shortcut in the Integrations Workspace
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/integrations/workspace/integrations/integrations.json
@@ -29276,11 +29279,11 @@ msgstr "欢迎页网址"
msgid "Welcome Workspace"
msgstr "欢迎工作区"
-#: frappe/core/doctype/user/user.py:415
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "欢迎电子邮件已发送"
-#: frappe/core/doctype/user/user.py:476
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "欢迎{0}"
@@ -29634,7 +29637,7 @@ msgstr "Y轴字段"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1223
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
msgstr "Y轴字段"
@@ -29695,7 +29698,7 @@ msgstr "黄色"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1638
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "是"
@@ -29770,7 +29773,7 @@ msgstr "未被授权导出单据类型{}"
msgid "You are not allowed to print this report"
msgstr "您未被授权打印此报表"
-#: frappe/public/js/frappe/views/communication.js:781
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "你不允许发送与此单据相关的电子邮件"
@@ -29885,7 +29888,7 @@ msgstr "可从以下选项中选择:"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "如多个用户通过相同网络登录,请设置一个大一点的数字"
-#: frappe/desk/query_report.py:344
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "可尝试变更报表过滤条件"
@@ -29970,7 +29973,7 @@ msgstr "您未被授权完成此操作"
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:861
+#: frappe/desk/query_report.py:873
msgid "You do not have permission to access {0}: {1}."
msgstr "您无权访问{0}:{1}。"
@@ -30166,7 +30169,7 @@ msgstr "您取消了对该单据的关注"
msgid "You viewed this"
msgstr "您查看了此内容"
-#: frappe/public/js/frappe/desk.js:551
+#: frappe/public/js/frappe/desk.js:553
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "在另一个浏览器页签用另一个账号登录了,请刷新浏览器后切换到新帐号继续"
@@ -30207,11 +30210,11 @@ msgstr "您的账户已被锁定,并将在{0}秒后恢复"
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "{2}移除了您在{0} {1}上的分配"
-#: frappe/core/doctype/file/file.js:73
+#: frappe/core/doctype/file/file.js:74
msgid "Your browser does not support the audio element."
msgstr "您的浏览器不支持音频元素"
-#: frappe/core/doctype/file/file.js:55
+#: frappe/core/doctype/file/file.js:56
msgid "Your browser does not support the video element."
msgstr "您的浏览器不支持视频元素"
@@ -31090,7 +31093,7 @@ msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}"
msgid "{0} Report"
msgstr "{0}报表"
-#: frappe/public/js/frappe/views/reports/query_report.js:954
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "{0} Reports"
msgstr "{0}报告"
@@ -31261,7 +31264,7 @@ msgstr "{0}小时"
msgid "{0} has already assigned default value for {1}."
msgstr "{0}已为{1}分派了默认值。"
-#: frappe/email/queue.py:123
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0}已经离开对话{1} {2}"
@@ -31432,11 +31435,11 @@ msgstr "{0}已设置"
msgid "{0} is within {1}"
msgstr "{0}在{1}范围内"
-#: frappe/public/js/frappe/list/list_view.js:1694
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "已选{0}条记录"
-#: frappe/core/doctype/user/user.py:1380
+#: frappe/core/doctype/user/user.py:1384
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} 因为 {1} 原因以你的帐号登录了系统"
@@ -31572,7 +31575,7 @@ msgstr "角色 {0} 无单据类型权限"
msgid "{0} row #{1}: "
msgstr "{0}行#{1}:"
-#: frappe/desk/query_report.py:613
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0}已成功保存"
@@ -31614,7 +31617,7 @@ msgstr "{0}于{1}提交了此文档"
msgid "{0} subscribers added"
msgstr "{0}新增用户"
-#: frappe/email/queue.py:68
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0}停止接收此类邮件"
@@ -31801,7 +31804,7 @@ msgstr "{0}:{1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}:{1} 状态已变更为 {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1281
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
msgstr "{0}:{1}与{2}"
From 6cb5f7287a9628e5f91b9b2d5ce71b7ea8be3d3c Mon Sep 17 00:00:00 2001
From: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
Date: Tue, 22 Jul 2025 19:50:12 +0200
Subject: [PATCH 183/211] feat: allow user to change timezone (#33419)
---
.../web_form/edit_profile/edit_profile.json | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/frappe/core/web_form/edit_profile/edit_profile.json b/frappe/core/web_form/edit_profile/edit_profile.json
index 641e0e4d73..1be55728f4 100644
--- a/frappe/core/web_form/edit_profile/edit_profile.json
+++ b/frappe/core/web_form/edit_profile/edit_profile.json
@@ -22,7 +22,7 @@
"list_columns": [],
"login_required": 1,
"max_attachment_size": 0,
- "modified": "2024-09-11 14:30:04.233730",
+ "modified": "2025-07-22 19:31:20.283749",
"modified_by": "Administrator",
"module": "Core",
"name": "edit-profile",
@@ -155,6 +155,20 @@
"read_only": 0,
"reqd": 0,
"show_in_filter": 0
+ },
+ {
+ "allow_read_on_all_link_options": 0,
+ "fieldname": "time_zone",
+ "fieldtype": "Select",
+ "hidden": 0,
+ "label": "Time Zone",
+ "max_length": 0,
+ "max_value": 0,
+ "options": "Africa/Abidjan\nAfrica/Accra\nAfrica/Addis_Ababa\nAfrica/Algiers\nAfrica/Asmara\nAfrica/Asmera\nAfrica/Bamako\nAfrica/Bangui\nAfrica/Banjul\nAfrica/Bissau\nAfrica/Blantyre\nAfrica/Brazzaville\nAfrica/Bujumbura\nAfrica/Cairo\nAfrica/Casablanca\nAfrica/Ceuta\nAfrica/Conakry\nAfrica/Dakar\nAfrica/Dar_es_Salaam\nAfrica/Djibouti\nAfrica/Douala\nAfrica/El_Aaiun\nAfrica/Freetown\nAfrica/Gaborone\nAfrica/Harare\nAfrica/Johannesburg\nAfrica/Juba\nAfrica/Kampala\nAfrica/Khartoum\nAfrica/Kigali\nAfrica/Kinshasa\nAfrica/Lagos\nAfrica/Libreville\nAfrica/Lome\nAfrica/Luanda\nAfrica/Lubumbashi\nAfrica/Lusaka\nAfrica/Malabo\nAfrica/Maputo\nAfrica/Maseru\nAfrica/Mbabane\nAfrica/Mogadishu\nAfrica/Monrovia\nAfrica/Nairobi\nAfrica/Ndjamena\nAfrica/Niamey\nAfrica/Nouakchott\nAfrica/Ouagadougou\nAfrica/Porto-Novo\nAfrica/Sao_Tome\nAfrica/Timbuktu\nAfrica/Tripoli\nAfrica/Tunis\nAfrica/Windhoek\nAmerica/Adak\nAmerica/Anchorage\nAmerica/Anguilla\nAmerica/Antigua\nAmerica/Araguaina\nAmerica/Argentina/Buenos_Aires\nAmerica/Argentina/Catamarca\nAmerica/Argentina/ComodRivadavia\nAmerica/Argentina/Cordoba\nAmerica/Argentina/Jujuy\nAmerica/Argentina/La_Rioja\nAmerica/Argentina/Mendoza\nAmerica/Argentina/Rio_Gallegos\nAmerica/Argentina/Salta\nAmerica/Argentina/San_Juan\nAmerica/Argentina/San_Luis\nAmerica/Argentina/Tucuman\nAmerica/Argentina/Ushuaia\nAmerica/Aruba\nAmerica/Asuncion\nAmerica/Atikokan\nAmerica/Atka\nAmerica/Bahia\nAmerica/Bahia_Banderas\nAmerica/Barbados\nAmerica/Belem\nAmerica/Belize\nAmerica/Blanc-Sablon\nAmerica/Boa_Vista\nAmerica/Bogota\nAmerica/Boise\nAmerica/Buenos_Aires\nAmerica/Cambridge_Bay\nAmerica/Campo_Grande\nAmerica/Cancun\nAmerica/Caracas\nAmerica/Catamarca\nAmerica/Cayenne\nAmerica/Cayman\nAmerica/Chicago\nAmerica/Chihuahua\nAmerica/Ciudad_Juarez\nAmerica/Coral_Harbour\nAmerica/Cordoba\nAmerica/Costa_Rica\nAmerica/Coyhaique\nAmerica/Creston\nAmerica/Cuiaba\nAmerica/Curacao\nAmerica/Danmarkshavn\nAmerica/Dawson\nAmerica/Dawson_Creek\nAmerica/Denver\nAmerica/Detroit\nAmerica/Dominica\nAmerica/Edmonton\nAmerica/Eirunepe\nAmerica/El_Salvador\nAmerica/Ensenada\nAmerica/Fort_Nelson\nAmerica/Fort_Wayne\nAmerica/Fortaleza\nAmerica/Glace_Bay\nAmerica/Godthab\nAmerica/Goose_Bay\nAmerica/Grand_Turk\nAmerica/Grenada\nAmerica/Guadeloupe\nAmerica/Guatemala\nAmerica/Guayaquil\nAmerica/Guyana\nAmerica/Halifax\nAmerica/Havana\nAmerica/Hermosillo\nAmerica/Indiana/Indianapolis\nAmerica/Indiana/Knox\nAmerica/Indiana/Marengo\nAmerica/Indiana/Petersburg\nAmerica/Indiana/Tell_City\nAmerica/Indiana/Vevay\nAmerica/Indiana/Vincennes\nAmerica/Indiana/Winamac\nAmerica/Indianapolis\nAmerica/Inuvik\nAmerica/Iqaluit\nAmerica/Jamaica\nAmerica/Jujuy\nAmerica/Juneau\nAmerica/Kentucky/Louisville\nAmerica/Kentucky/Monticello\nAmerica/Knox_IN\nAmerica/Kralendijk\nAmerica/La_Paz\nAmerica/Lima\nAmerica/Los_Angeles\nAmerica/Louisville\nAmerica/Lower_Princes\nAmerica/Maceio\nAmerica/Managua\nAmerica/Manaus\nAmerica/Marigot\nAmerica/Martinique\nAmerica/Matamoros\nAmerica/Mazatlan\nAmerica/Mendoza\nAmerica/Menominee\nAmerica/Merida\nAmerica/Metlakatla\nAmerica/Mexico_City\nAmerica/Miquelon\nAmerica/Moncton\nAmerica/Monterrey\nAmerica/Montevideo\nAmerica/Montreal\nAmerica/Montserrat\nAmerica/Nassau\nAmerica/New_York\nAmerica/Nipigon\nAmerica/Nome\nAmerica/Noronha\nAmerica/North_Dakota/Beulah\nAmerica/North_Dakota/Center\nAmerica/North_Dakota/New_Salem\nAmerica/Nuuk\nAmerica/Ojinaga\nAmerica/Panama\nAmerica/Pangnirtung\nAmerica/Paramaribo\nAmerica/Phoenix\nAmerica/Port-au-Prince\nAmerica/Port_of_Spain\nAmerica/Porto_Acre\nAmerica/Porto_Velho\nAmerica/Puerto_Rico\nAmerica/Punta_Arenas\nAmerica/Rainy_River\nAmerica/Rankin_Inlet\nAmerica/Recife\nAmerica/Regina\nAmerica/Resolute\nAmerica/Rio_Branco\nAmerica/Rosario\nAmerica/Santa_Isabel\nAmerica/Santarem\nAmerica/Santiago\nAmerica/Santo_Domingo\nAmerica/Sao_Paulo\nAmerica/Scoresbysund\nAmerica/Shiprock\nAmerica/Sitka\nAmerica/St_Barthelemy\nAmerica/St_Johns\nAmerica/St_Kitts\nAmerica/St_Lucia\nAmerica/St_Thomas\nAmerica/St_Vincent\nAmerica/Swift_Current\nAmerica/Tegucigalpa\nAmerica/Thule\nAmerica/Thunder_Bay\nAmerica/Tijuana\nAmerica/Toronto\nAmerica/Tortola\nAmerica/Vancouver\nAmerica/Virgin\nAmerica/Whitehorse\nAmerica/Winnipeg\nAmerica/Yakutat\nAmerica/Yellowknife\nAntarctica/Casey\nAntarctica/Davis\nAntarctica/DumontDUrville\nAntarctica/Macquarie\nAntarctica/Mawson\nAntarctica/McMurdo\nAntarctica/Palmer\nAntarctica/Rothera\nAntarctica/South_Pole\nAntarctica/Syowa\nAntarctica/Troll\nAntarctica/Vostok\nArctic/Longyearbyen\nAsia/Aden\nAsia/Almaty\nAsia/Amman\nAsia/Anadyr\nAsia/Aqtau\nAsia/Aqtobe\nAsia/Ashgabat\nAsia/Ashkhabad\nAsia/Atyrau\nAsia/Baghdad\nAsia/Bahrain\nAsia/Baku\nAsia/Bangkok\nAsia/Barnaul\nAsia/Beirut\nAsia/Bishkek\nAsia/Brunei\nAsia/Calcutta\nAsia/Chita\nAsia/Choibalsan\nAsia/Chongqing\nAsia/Chungking\nAsia/Colombo\nAsia/Dacca\nAsia/Damascus\nAsia/Dhaka\nAsia/Dili\nAsia/Dubai\nAsia/Dushanbe\nAsia/Famagusta\nAsia/Gaza\nAsia/Harbin\nAsia/Hebron\nAsia/Ho_Chi_Minh\nAsia/Hong_Kong\nAsia/Hovd\nAsia/Irkutsk\nAsia/Istanbul\nAsia/Jakarta\nAsia/Jayapura\nAsia/Jerusalem\nAsia/Kabul\nAsia/Kamchatka\nAsia/Karachi\nAsia/Kashgar\nAsia/Kathmandu\nAsia/Katmandu\nAsia/Khandyga\nAsia/Kolkata\nAsia/Krasnoyarsk\nAsia/Kuala_Lumpur\nAsia/Kuching\nAsia/Kuwait\nAsia/Macao\nAsia/Macau\nAsia/Magadan\nAsia/Makassar\nAsia/Manila\nAsia/Muscat\nAsia/Nicosia\nAsia/Novokuznetsk\nAsia/Novosibirsk\nAsia/Omsk\nAsia/Oral\nAsia/Phnom_Penh\nAsia/Pontianak\nAsia/Pyongyang\nAsia/Qatar\nAsia/Qostanay\nAsia/Qyzylorda\nAsia/Rangoon\nAsia/Riyadh\nAsia/Saigon\nAsia/Sakhalin\nAsia/Samarkand\nAsia/Seoul\nAsia/Shanghai\nAsia/Singapore\nAsia/Srednekolymsk\nAsia/Taipei\nAsia/Tashkent\nAsia/Tbilisi\nAsia/Tehran\nAsia/Tel_Aviv\nAsia/Thimbu\nAsia/Thimphu\nAsia/Tokyo\nAsia/Tomsk\nAsia/Ujung_Pandang\nAsia/Ulaanbaatar\nAsia/Ulan_Bator\nAsia/Urumqi\nAsia/Ust-Nera\nAsia/Vientiane\nAsia/Vladivostok\nAsia/Yakutsk\nAsia/Yangon\nAsia/Yekaterinburg\nAsia/Yerevan\nAtlantic/Azores\nAtlantic/Bermuda\nAtlantic/Canary\nAtlantic/Cape_Verde\nAtlantic/Faeroe\nAtlantic/Faroe\nAtlantic/Jan_Mayen\nAtlantic/Madeira\nAtlantic/Reykjavik\nAtlantic/South_Georgia\nAtlantic/St_Helena\nAtlantic/Stanley\nAustralia/ACT\nAustralia/Adelaide\nAustralia/Brisbane\nAustralia/Broken_Hill\nAustralia/Canberra\nAustralia/Currie\nAustralia/Darwin\nAustralia/Eucla\nAustralia/Hobart\nAustralia/LHI\nAustralia/Lindeman\nAustralia/Lord_Howe\nAustralia/Melbourne\nAustralia/NSW\nAustralia/North\nAustralia/Perth\nAustralia/Queensland\nAustralia/South\nAustralia/Sydney\nAustralia/Tasmania\nAustralia/Victoria\nAustralia/West\nAustralia/Yancowinna\nBrazil/Acre\nBrazil/DeNoronha\nBrazil/East\nBrazil/West\nCET\nCST6CDT\nCanada/Atlantic\nCanada/Central\nCanada/Eastern\nCanada/Mountain\nCanada/Newfoundland\nCanada/Pacific\nCanada/Saskatchewan\nCanada/Yukon\nChile/Continental\nChile/EasterIsland\nCuba\nEET\nEST\nEST5EDT\nEgypt\nEire\nEtc/GMT\nEtc/GMT+0\nEtc/GMT+1\nEtc/GMT+10\nEtc/GMT+11\nEtc/GMT+12\nEtc/GMT+2\nEtc/GMT+3\nEtc/GMT+4\nEtc/GMT+5\nEtc/GMT+6\nEtc/GMT+7\nEtc/GMT+8\nEtc/GMT+9\nEtc/GMT-0\nEtc/GMT-1\nEtc/GMT-10\nEtc/GMT-11\nEtc/GMT-12\nEtc/GMT-13\nEtc/GMT-14\nEtc/GMT-2\nEtc/GMT-3\nEtc/GMT-4\nEtc/GMT-5\nEtc/GMT-6\nEtc/GMT-7\nEtc/GMT-8\nEtc/GMT-9\nEtc/GMT0\nEtc/Greenwich\nEtc/UCT\nEtc/UTC\nEtc/Universal\nEtc/Zulu\nEurope/Amsterdam\nEurope/Andorra\nEurope/Astrakhan\nEurope/Athens\nEurope/Belfast\nEurope/Belgrade\nEurope/Berlin\nEurope/Bratislava\nEurope/Brussels\nEurope/Bucharest\nEurope/Budapest\nEurope/Busingen\nEurope/Chisinau\nEurope/Copenhagen\nEurope/Dublin\nEurope/Gibraltar\nEurope/Guernsey\nEurope/Helsinki\nEurope/Isle_of_Man\nEurope/Istanbul\nEurope/Jersey\nEurope/Kaliningrad\nEurope/Kiev\nEurope/Kirov\nEurope/Kyiv\nEurope/Lisbon\nEurope/Ljubljana\nEurope/London\nEurope/Luxembourg\nEurope/Madrid\nEurope/Malta\nEurope/Mariehamn\nEurope/Minsk\nEurope/Monaco\nEurope/Moscow\nEurope/Nicosia\nEurope/Oslo\nEurope/Paris\nEurope/Podgorica\nEurope/Prague\nEurope/Riga\nEurope/Rome\nEurope/Samara\nEurope/San_Marino\nEurope/Sarajevo\nEurope/Saratov\nEurope/Simferopol\nEurope/Skopje\nEurope/Sofia\nEurope/Stockholm\nEurope/Tallinn\nEurope/Tirane\nEurope/Tiraspol\nEurope/Ulyanovsk\nEurope/Uzhgorod\nEurope/Vaduz\nEurope/Vatican\nEurope/Vienna\nEurope/Vilnius\nEurope/Volgograd\nEurope/Warsaw\nEurope/Zagreb\nEurope/Zaporozhye\nEurope/Zurich\nFactory\nGB\nGB-Eire\nGMT\nGMT+0\nGMT-0\nGMT0\nGreenwich\nHST\nHongkong\nIceland\nIndian/Antananarivo\nIndian/Chagos\nIndian/Christmas\nIndian/Cocos\nIndian/Comoro\nIndian/Kerguelen\nIndian/Mahe\nIndian/Maldives\nIndian/Mauritius\nIndian/Mayotte\nIndian/Reunion\nIran\nIsrael\nJamaica\nJapan\nKwajalein\nLibya\nMET\nMST\nMST7MDT\nMexico/BajaNorte\nMexico/BajaSur\nMexico/General\nNZ\nNZ-CHAT\nNavajo\nPRC\nPST8PDT\nPacific/Apia\nPacific/Auckland\nPacific/Bougainville\nPacific/Chatham\nPacific/Chuuk\nPacific/Easter\nPacific/Efate\nPacific/Enderbury\nPacific/Fakaofo\nPacific/Fiji\nPacific/Funafuti\nPacific/Galapagos\nPacific/Gambier\nPacific/Guadalcanal\nPacific/Guam\nPacific/Honolulu\nPacific/Johnston\nPacific/Kanton\nPacific/Kiritimati\nPacific/Kosrae\nPacific/Kwajalein\nPacific/Majuro\nPacific/Marquesas\nPacific/Midway\nPacific/Nauru\nPacific/Niue\nPacific/Norfolk\nPacific/Noumea\nPacific/Pago_Pago\nPacific/Palau\nPacific/Pitcairn\nPacific/Pohnpei\nPacific/Ponape\nPacific/Port_Moresby\nPacific/Rarotonga\nPacific/Saipan\nPacific/Samoa\nPacific/Tahiti\nPacific/Tarawa\nPacific/Tongatapu\nPacific/Truk\nPacific/Wake\nPacific/Wallis\nPacific/Yap\nPoland\nPortugal\nROC\nROK\nSingapore\nTurkey\nUCT\nUS/Alaska\nUS/Aleutian\nUS/Arizona\nUS/Central\nUS/East-Indiana\nUS/Eastern\nUS/Hawaii\nUS/Indiana-Starke\nUS/Michigan\nUS/Mountain\nUS/Pacific\nUS/Samoa\nUTC\nUniversal\nW-SU\nWET\nZulu",
+ "precision": "",
+ "read_only": 0,
+ "reqd": 0,
+ "show_in_filter": 0
}
]
-}
\ No newline at end of file
+}
From e7ad633b1525684bec6f20a1a5e3d8b1436575d7 Mon Sep 17 00:00:00 2001
From: MochaMind
Date: Wed, 23 Jul 2025 03:29:18 +0530
Subject: [PATCH 184/211] fix: sync translations from crowdin (#33423)
---
frappe/locale/de.po | 4 +-
frappe/locale/fa.po | 5 +-
frappe/locale/hu.po | 10 +-
frappe/locale/id.po | 40020 +++++++++++++++++----------------------
frappe/locale/pl.po | 9 +-
frappe/locale/pt_BR.po | 6 +-
frappe/locale/sv.po | 8 +-
frappe/locale/th.po | 6 +-
8 files changed, 16906 insertions(+), 23162 deletions(-)
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index fd19f06cb8..46a78c3b74 100644
--- a/frappe/locale/de.po
+++ b/frappe/locale/de.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-22 21:45\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -19626,7 +19626,7 @@ msgstr "Vorbereiteter Bericht"
#. Name of a report
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
msgid "Prepared Report Analytics"
-msgstr ""
+msgstr "Vorbereitete Berichtsanalytik"
#. Name of a role
#: frappe/core/doctype/prepared_report/prepared_report.json
diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po
index 63b9652d35..616b454ac2 100644
--- a/frappe/locale/fa.po
+++ b/frappe/locale/fa.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-22 21:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -4250,7 +4250,8 @@ msgstr "تغییر فرمت چاپ"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Change the starting / current sequence number of an existing series.
\n\n"
"Warning: Incorrectly updating counters can prevent documents from getting created. "
-msgstr ""
+msgstr "شماره توالی شروع/فعلی یک سری موجود را تغییر دهید.
\n\n"
+"هشدار: بهروزرسانی نادرست شمارندهها میتواند از ایجاد اسناد جلوگیری کند. "
#. Label of the changed_at (Datetime) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index 87ea1a2d8a..874aa3cd9b 100644
--- a/frappe/locale/hu.po
+++ b/frappe/locale/hu.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-22 21:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -11344,7 +11344,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Grid Page Length"
-msgstr ""
+msgstr "Rács Oldal hossza"
#: frappe/public/js/frappe/ui/keyboard.js:127
msgid "Grid Shortcuts"
@@ -12130,7 +12130,7 @@ msgstr ""
#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "If enabled, all responses on the web form will be submitted anonymously"
-msgstr ""
+msgstr "Ha engedélyezve van, a webes űrlapra adott összes válasz névtelenül kerül benyújtásra."
#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
#. Enabled' (Check) field in DocType 'System Settings'
@@ -12575,7 +12575,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19
msgid "In Minutes"
-msgstr ""
+msgstr "Percben"
#. Label of the in_preview (Check) field in DocType 'DocField'
#. Label of the in_preview (Check) field in DocType 'Custom Field'
@@ -13036,7 +13036,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
msgid "Invalid Code. Please try again."
-msgstr ""
+msgstr "Érvénytelen kód. Kérjük próbáld újra."
#: frappe/integrations/doctype/webhook/webhook.py:87
msgid "Invalid Condition: {}"
diff --git a/frappe/locale/id.po b/frappe/locale/id.po
index 3e07ae769b..13e133e83b 100644
--- a/frappe/locale/id.po
+++ b/frappe/locale/id.po
@@ -1,365 +1,263 @@
-# Translations template for Frappe Framework.
-# Copyright (C) 2024 Frappe Technologies
-# This file is distributed under the same license as the Frappe Framework
-# project.
-# FIRST AUTHOR , 2024.
-#
msgid ""
msgstr ""
-"Project-Id-Version: Frappe Framework VERSION\n"
+"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2024-01-12 01:53+0053\n"
-"PO-Revision-Date: 2024-01-10 16:34+0553\n"
+"POT-Creation-Date: 2025-07-20 09:35+0000\n"
+"PO-Revision-Date: 2025-07-22 21:46\n"
"Last-Translator: developers@frappe.io\n"
-"Language-Team: developers@frappe.io\n"
+"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"Generated-By: Babel 2.16.0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Crowdin-Project: frappe\n"
+"X-Crowdin-Project-ID: 639578\n"
+"X-Crowdin-Language: id\n"
+"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n"
+"X-Crowdin-File-ID: 52\n"
+"Language: id_ID\n"
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid " to your browser"
msgstr "ke browser Anda"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "!="
msgstr ""
#. Description of the 'Org History Heading' (Data) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Company History\""
-msgstr "\"Sejarah Perusahaan\""
+msgstr ""
-#: core/doctype/data_export/exporter.py:204
+#: frappe/core/doctype/data_export/exporter.py:202
msgid "\"Parent\" signifies the parent table in which this row must be added"
msgstr "\"Induk\" menandakan tabel induk di mana baris ini harus ditambahkan"
#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Team Members\" or \"Management\""
-msgstr "\"Anggota Tim\" atau \"Manajemen\""
+msgstr ""
-#: public/js/frappe/form/form.js:1063
+#: frappe/public/js/frappe/form/form.js:1090
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Bidang "amended_from" harus ada untuk melakukan amandemen."
-#: utils/csvutils.py:219
+#: frappe/utils/csvutils.py:246
msgid "\"{0}\" is not a valid Google Sheets URL"
msgstr ""{0}" bukan URL Google Spreadsheet yang valid"
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "# ###,##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "# ###,##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "# ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "# ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#'###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#'###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#, ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#, ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,##,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,##,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#.###,##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#.###,##"
-msgstr ""
-
-#: public/js/frappe/ui/toolbar/tag_utils.js:21
-#: public/js/frappe/ui/toolbar/tag_utils.js:22
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22
msgid "#{0}"
msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "<head> HTML"
-msgstr "<head> HTML"
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36
+msgid "${values.doctype_name} has been added to queue for optimization"
+msgstr ""
-#: public/js/form_builder/store.js:201
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "© Frappe Technologies Pvt. Ltd. and contributors"
+msgstr ""
+
+#. Label of the head_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "<head> HTML"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:206
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1305
+#: frappe/core/doctype/doctype/doctype.py:1354
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}"
-#: public/js/form_builder/store.js:193
+#: frappe/public/js/form_builder/store.js:198
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:360
+#: frappe/custom/doctype/customize_form/customize_form.py:362
msgid "'In List View' not allowed for type {0} in row {1}"
msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}"
-#: automation/doctype/auto_repeat/auto_repeat.py:149
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156
msgid "'Recipients' not specified"
msgstr "'Penerima' belum ditentukan"
-#: utils/__init__.py:240
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
-#: core/doctype/doctype/doctype.py:1299
+#: frappe/core/doctype/doctype/doctype.py:1348
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' tidak diperbolehkan untuk jenis {1} di baris {2}"
-#: model/rename_doc.py:689
+#: frappe/public/js/frappe/data_import/data_exporter.js:302
+msgid "(Mandatory)"
+msgstr ""
+
+#: frappe/model/rename_doc.py:704
msgid "** Failed: {0} to {1}: {2}"
msgstr "** Gagal: {0} ke {1}: {2}"
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+msgid "+ Add / Remove Fields"
+msgstr ""
+
#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document
#. State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
-msgstr "0 - Draft; 1 - Dikirim; 2 - Dibatalkan"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "0 is highest"
-msgstr "0 adalah tertinggi"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:786
+#: frappe/public/js/frappe/form/grid_row.js:876
msgid "1 = True & 0 = False"
msgstr ""
#. Description of the 'Fraction Units' (Int) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid ""
-"1 Currency = [?] Fraction\n"
+#: frappe/geo/doctype/currency/currency.json
+msgid "1 Currency = [?] Fraction\n"
"For e.g. 1 USD = 100 Cent"
msgstr ""
-#: public/js/frappe/form/reminders.js:19
+#: frappe/public/js/frappe/form/reminders.js:19
msgid "1 Day"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:358
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
msgid "1 Google Calendar Event synced."
msgstr "1 Acara Kalender Google disinkronkan."
-#: website/doctype/blog_post/blog_post.py:378
+#: frappe/public/js/frappe/views/reports/query_report.js:954
+msgid "1 Report"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/blog_post.py:380
msgid "1 comment"
msgstr "1 komentar"
-#: tests/test_utils.py:647
+#: frappe/tests/test_utils.py:716
msgid "1 day ago"
msgstr ""
-#: public/js/frappe/form/reminders.js:17
+#: frappe/public/js/frappe/form/reminders.js:17
msgid "1 hour"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:645
+#: frappe/public/js/frappe/utils/pretty_date.js:52
+#: frappe/tests/test_utils.py:714
msgid "1 hour ago"
msgstr "1 jam yang lalu"
-#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:643
+#: frappe/public/js/frappe/utils/pretty_date.js:48
+#: frappe/tests/test_utils.py:712
msgid "1 minute ago"
msgstr "1 menit yang lalu"
-#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:651
+#: frappe/public/js/frappe/utils/pretty_date.js:66
+#: frappe/tests/test_utils.py:720
msgid "1 month ago"
msgstr "1 bulan lalu"
-#: public/js/frappe/data_import/data_exporter.js:223
+#: frappe/public/js/print_format_builder/PrintFormat.vue:3
+msgid "1 of 2"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
msgstr "1 catatan akan diekspor"
-#: tests/test_utils.py:642
+#: frappe/tests/test_utils.py:711
msgid "1 second ago"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:649
+#: frappe/public/js/frappe/utils/pretty_date.js:62
+#: frappe/tests/test_utils.py:718
msgid "1 week ago"
msgstr "1 minggu yang lalu"
-#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:653
+#: frappe/public/js/frappe/utils/pretty_date.js:70
+#: frappe/tests/test_utils.py:722
msgid "1 year ago"
msgstr "1 tahun yang lalu"
-#: tests/test_utils.py:646
+#: frappe/tests/test_utils.py:715
msgid "2 hours ago"
msgstr ""
-#: tests/test_utils.py:652
+#: frappe/tests/test_utils.py:721
msgid "2 months ago"
msgstr ""
-#: tests/test_utils.py:650
+#: frappe/tests/test_utils.py:719
msgid "2 weeks ago"
msgstr ""
-#: tests/test_utils.py:654
+#: frappe/tests/test_utils.py:723
msgid "2 years ago"
msgstr ""
-#: tests/test_utils.py:644
+#: frappe/tests/test_utils.py:713
msgid "3 minutes ago"
msgstr ""
-#: public/js/frappe/form/reminders.js:16
+#: frappe/public/js/frappe/form/reminders.js:16
msgid "30 minutes"
msgstr ""
-#: public/js/frappe/form/reminders.js:18
+#: frappe/public/js/frappe/form/reminders.js:18
msgid "4 hours"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:37
+#: frappe/public/js/frappe/data_import/data_exporter.js:37
msgid "5 Records"
msgstr "5 catatan"
-#: tests/test_utils.py:648
+#: frappe/tests/test_utils.py:717
msgid "5 days ago"
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:37
+#: frappe/desk/doctype/bulk_update/bulk_update.py:36
msgid "; not allowed in condition"
msgstr "; tidak diijinkan dalam kondisi"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<"
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<="
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:564
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
#. Content of the 'Help' (HTML) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!"
msgstr ""
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "\n"
" Edit list of Series in the box. Rules:\n"
" \n"
" - Each Series Prefix on a new line.
\n"
@@ -380,11 +278,12 @@ msgid ""
" .MM. - Month \n"
" .DD. - Day of month \n"
" .WW. - Week of the year \n"
-" .FY. - Fiscal Year \n"
" - \n"
"
.{fieldname}. - fieldname on the document e.g.\n"
" branch\n"
" \n"
+" .FY. - Fiscal Year (requires ERPNext to be installed) \n"
+" .ABBR. - Company Abbreviation (requires ERPNext to be installed) \n"
"
\n"
" \n"
" \n"
@@ -400,38 +299,27 @@ msgid ""
msgstr ""
#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid ""
-"Custom CSS Help
\n"
-"\n"
-"Notes:
\n"
-"\n"
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom CSS Help
\n\n"
+"Notes:
\n\n"
"\n"
"- All field groups (label + value) are set attributes
data-fieldtype and data-fieldname \n"
"- All values are given class
value \n"
"- All Section Breaks are given class
section-break \n"
"- All Column Breaks are given class
column-break \n"
-"
\n"
-"\n"
-"Examples
\n"
-"\n"
-"1. Left align integers
\n"
-"\n"
-"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n"
-"\n"
-"1. Add border to sections except the last section
\n"
-"\n"
+"\n\n"
+"Examples
\n\n"
+"1. Left align integers
\n\n"
+"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n"
+"1. Add border to sections except the last section
\n\n"
".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }
\n"
msgstr ""
#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.json
#, python-format
-msgctxt "Print Format"
-msgid ""
-"Print Format Help
\n"
+msgid "Print Format Help
\n"
"
\n"
"Introduction
\n"
"Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.
\n"
@@ -500,11 +388,9 @@ msgid ""
msgstr ""
#. Description of the 'Template' (Code) field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/address_template/address_template.json
#, python-format
-msgctxt "Address Template"
-msgid ""
-"Default Template
\n"
+msgid "Default Template
\n"
"Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n"
"{{ address_line1 }}<br>\n"
"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
@@ -519,54 +405,36 @@ msgid ""
msgstr ""
#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid ""
-"Email Reply Example
\n"
-"\n"
-"Order Overdue\n"
-"\n"
-"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n"
-"\n"
-"Details\n"
-"\n"
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Example
\n\n"
+"Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
"- Customer: {{ customer }}\n"
"- Amount: {{ grand_total }}\n"
-"\n"
-"\n"
-"How to get fieldnames
\n"
-"\n"
-"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n"
-"\n"
-"Templating
\n"
-"\n"
+"\n\n"
+"How to get fieldnames
\n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating
\n\n"
"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n"
msgstr ""
#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Or
"
msgstr ""
#. Content of the 'Message Examples' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
+#: frappe/email/doctype/notification/notification.json
#, python-format
-msgctxt "Notification"
-msgid ""
-"Message Example
\n"
-"\n"
-"<h3>Order Overdue</h3>\n"
-"\n"
-"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n"
-"\n"
+msgid "Message Example
\n\n"
+"<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
"<!-- show last comment -->\n"
"{% if comments %}\n"
"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
-"{% endif %}\n"
-"\n"
-"<h4>Details</h4>\n"
-"\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
"<ul>\n"
"<li>Customer: {{ doc.customer }}\n"
"<li>Amount: {{ doc.grand_total }}\n"
@@ -575,103 +443,68 @@ msgid ""
msgstr ""
#. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
"
msgstr ""
#. Content of the 'html_7' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
\n"
msgstr ""
-#. Content of the 'Condition Description' (HTML) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid ""
-"Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
+#. Content of the 'Condition description' (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
"If you create a separate webform every year to capture feedback from employees add a \n"
" field named year in doctype and add a filter year = 2023
\n"
msgstr ""
#. Description of the 'Context Script' (Code) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid ""
-"Set context before rendering a template. Example:
\n"
+#: frappe/website/doctype/web_page/web_page.json
+msgid "
Set context before rendering a template. Example:
\n"
"
\n"
"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
"
"
msgstr ""
#. Content of the 'JS Message' (HTML) field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid ""
-"To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
"let some_class_element = root_element.querySelector('.some-class');\n"
"some_class_element.textContent = \"New content\";\n"
"
"
msgstr ""
-#: twofactor.py:469
+#: frappe/twofactor.py:446
msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
"
msgstr ""
#. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job
#. Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid ""
-"* * * * *\n"
-"┬ ┬ ┬ ┬ ┬\n"
-"│ │ │ │ │\n"
-"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
-"│ │ │ └───── month (1 - 12)\n"
-"│ │ └────────── day of month (1 - 31)\n"
-"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
-"* - Any value\n"
-"/ - Step values\n"
-"
\n"
-msgstr ""
-
#. Description of the 'Cron Format' (Data) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid ""
-"* * * * *\n"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "* * * * *\n"
"┬ ┬ ┬ ┬ ┬\n"
"│ │ │ │ │\n"
"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
"│ │ │ └───── month (1 - 12)\n"
"│ │ └────────── day of month (1 - 31)\n"
"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
"* - Any value\n"
"/ - Step values\n"
"
\n"
msgstr ""
#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid ""
-"doc.grand_total > 0
\n"
-"\n"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "doc.grand_total > 0
\n\n"
"Conditions should be written in simple Python. Please use properties available in the form only.
\n"
"Allowed functions:\n"
"
\n"
@@ -686,27369 +519,22965 @@ msgid ""
"Example:
doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True)
"
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:39
+#. Header text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Hi,"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
msgstr ""
-#. Description of the Onboarding Step 'Custom Document Types'
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs."
-msgstr ""
-
-#: core/doctype/doctype/doctype.py:1015
+#: frappe/core/doctype/doctype/doctype.py:1034
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:93
+#. Description of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three."
+msgstr ""
+
+#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
msgstr "Postingan unggulan harus memiliki gambar sampul"
-#: custom/doctype/custom_field/custom_field.py:171
+#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: core/doctype/file/file.py:254
+#: frappe/core/doctype/file/file.py:257
msgid "A file with same name {} already exists"
msgstr ""
#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project"
-msgstr "Sebuah daftar sumber daya yang App Klien akan memiliki akses ke setelah pengguna memungkinkan.
misalnya proyek"
+msgstr ""
-#: templates/emails/new_user.html:5
+#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
msgstr "Sebuah akun baru telah dibuat untuk Anda di {0}"
-#: automation/doctype/auto_repeat/auto_repeat.py:388
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400
msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
msgstr "{0} {1} berulang telah dibuat untuk Anda melalui Ulangi Otomatis {2}."
#. Description of the 'Symbol' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "A symbol for this currency. For e.g. $"
-msgstr "Simbol untuk mata uang ini. Contoh $"
+msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:48
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
msgstr ""
-#: utils/password_strength.py:173
+#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "A version identifier string for the client software.\n"
+"
\n"
+"The value of the should change on any update of the client software with the same Software ID."
+msgstr ""
+
+#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
msgstr "Sebuah kata dengan sendirinya mudah ditebak."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "ALL"
-msgstr "SEMUA"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the api_access (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "API Access"
-msgstr "Akses API"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Access"
-msgstr "Akses API"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint"
-msgstr "API Endpoint"
+msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint Args"
-msgstr "API Endpoint Args"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the api_key (Data) field in DocType 'User'
+#. Label of the api_key (Data) field in DocType 'Email Account'
+#. Label of the api_key (Password) field in DocType 'Geolocation Settings'
+#. Label of the api_key (Data) field in DocType 'Google Settings'
+#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
+#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Key"
-msgstr "API Key"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Key"
-msgstr "API Key"
+#. Description of the 'Authentication' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site."
+msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "API Key cannot be regenerated"
msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the api_logging_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "API Logging"
+msgstr ""
+
+#. Label of the api_method (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "API Method"
-msgstr "Metode API"
+msgstr ""
-#. Label of a Password field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Name of a DocType
+#: frappe/core/doctype/api_request_log/api_request_log.json
+msgid "API Request Log"
+msgstr ""
+
+#. Label of the api_secret (Password) field in DocType 'User'
+#. Label of the api_secret (Password) field in DocType 'Email Account'
+#. Label of the api_secret (Password) field in DocType 'Push Notification
+#. Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
-msgstr "API Rahasia"
-
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Label of a standard help item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "About"
msgstr ""
-#: www/about.html:11 www/about.html:18
+#: frappe/www/about.html:11 frappe/www/about.html:18
msgid "About Us"
msgstr ""
#. Name of a DocType
-#: website/doctype/about_us_settings/about_us_settings.json
-msgid "About Us Settings"
-msgstr "Pengaturan Tetang Kami"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "About Us Settings"
msgstr "Pengaturan Tetang Kami"
#. Name of a DocType
-#: website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "About Us Team Member"
msgstr "Tentang Kami Anggota Tim"
-#: core/doctype/data_import/data_import.js:27
+#: frappe/core/doctype/data_import/data_import.js:27
msgid "About {0} minute remaining"
msgstr "Sekitar {0} menit tersisa"
-#: core/doctype/data_import/data_import.js:28
+#: frappe/core/doctype/data_import/data_import.js:28
msgid "About {0} minutes remaining"
msgstr "Sekitar {0} menit tersisa"
-#: core/doctype/data_import/data_import.js:25
+#: frappe/core/doctype/data_import/data_import.js:25
msgid "About {0} seconds remaining"
msgstr "Tentang {0} detik tersisa"
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Access Key ID"
-msgstr "ID Kunci Akses"
-
-#. Label of a Password field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Access Key Secret"
-msgstr "Akses Kunci Rahasia"
+#. Label of the access_control_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Access Control"
+msgstr ""
#. Name of a DocType
-#: core/doctype/access_log/access_log.json
-msgid "Access Log"
-msgstr "Log Akses"
-
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Access Log"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/workspace/users/users.json
msgid "Access Log"
msgstr "Log Akses"
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Access Log"
-msgstr "Log Akses"
-
-#. Label of a Data field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the access_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Access Token"
-msgstr "Akses Token"
+msgstr ""
-#. Label of a Password field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Access Token"
-msgstr "Akses Token"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Access Token URL"
-msgstr "URL Token Akses"
+msgstr ""
-#: auth.py:444
+#: frappe/auth.py:491
msgid "Access not allowed from this IP Address"
msgstr "Akses tidak diizinkan dari Alamat IP ini"
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the account_section (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Account"
msgstr "Akun"
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the account_deletion_settings_section (Section Break) field in
+#. DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Account Deletion Settings"
msgstr ""
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/contact/contact.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts Manager"
msgstr "Pengelola Akun"
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts User"
msgstr "Pengguna Akun"
-#: email/doctype/email_group/email_group.js:34
-#: email/doctype/email_group/email_group.js:63
-#: email/doctype/email_group/email_group.js:72
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37
-#: public/js/frappe/form/sidebar/review.js:59
-#: workflow/page/workflow_builder/workflow_builder.js:37
-msgid "Action"
-msgstr "Tindakan"
-
-#. Label of a Select field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Action"
-msgstr "Tindakan"
-
-#. Label of a Select field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Action"
-msgstr "Tindakan"
+#: frappe/public/js/frappe/form/dashboard.js:510
+msgid "Accurate count can not be fetched, click here to view all documents"
+msgstr ""
+#. Label of the action (Select) field in DocType 'Amended Document Naming
+#. Settings'
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the action (Data) field in DocType 'Navbar Item'
+#. Label of the action (Select) field in DocType 'Onboarding Step'
+#. Label of the action (Select) field in DocType 'Email Flag Queue'
+#. Label of the action (Link) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_group/email_group.js:34
+#: frappe/email/doctype/email_group/email_group.js:63
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
msgid "Action"
msgstr "Tindakan"
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Action"
-msgstr "Tindakan"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Action"
-msgstr "Tindakan"
-
-#. Label of a Small Text field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action (Small Text) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action / Route"
-msgstr "Tindakan / Rute"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:310
-#: public/js/frappe/widgets/onboarding_widget.js:381
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
msgid "Action Complete"
msgstr ""
-#: model/document.py:1648
+#: frappe/model/document.py:1881
msgid "Action Failed"
msgstr "aksi Gagal"
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the action_label (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Action Label"
msgstr ""
-#. Label of a Int field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the action_timeout (Int) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "Action Timeout (Seconds)"
-msgstr "Timeout Aksi (Detik)"
+msgstr ""
-#. Label of a Select field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action_type (Select) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action Type"
-msgstr "tipe aksi"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:119
+#: frappe/core/doctype/submission_queue/submission_queue.py:120
msgid "Action {0} completed successfully on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:115
+#: frappe/core/doctype/submission_queue/submission_queue.py:116
msgid "Action {0} failed on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/communication/communication.js:66
-#: core/doctype/communication/communication.js:74
-#: core/doctype/communication/communication.js:82
-#: core/doctype/communication/communication.js:90
-#: core/doctype/communication/communication.js:99
-#: core/doctype/communication/communication.js:108
-#: core/doctype/communication/communication.js:131
-#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39
-#: custom/doctype/customize_form/customize_form.js:108
-#: custom/doctype/customize_form/customize_form.js:116
-#: custom/doctype/customize_form/customize_form.js:124
-#: custom/doctype/customize_form/customize_form.js:132
-#: custom/doctype/customize_form/customize_form.js:140
-#: custom/doctype/customize_form/customize_form.js:238
-#: public/js/frappe/views/reports/query_report.js:190
-#: public/js/frappe/views/reports/query_report.js:203
-#: public/js/frappe/views/reports/query_report.js:213
+#. Label of the actions_section (Tab Break) field in DocType 'DocType'
+#. Label of the actions (Table) field in DocType 'Customize Form'
+#: frappe/core/doctype/communication/communication.js:66
+#: frappe/core/doctype/communication/communication.js:74
+#: frappe/core/doctype/communication/communication.js:82
+#: frappe/core/doctype/communication/communication.js:90
+#: frappe/core/doctype/communication/communication.js:99
+#: frappe/core/doctype/communication/communication.js:108
+#: frappe/core/doctype/communication/communication.js:131
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/rq_job/rq_job_list.js:14
+#: frappe/core/doctype/rq_job/rq_job_list.js:39
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48
+#: frappe/custom/doctype/customize_form/customize_form.js:108
+#: frappe/custom/doctype/customize_form/customize_form.js:116
+#: frappe/custom/doctype/customize_form/customize_form.js:124
+#: frappe/custom/doctype/customize_form/customize_form.js:132
+#: frappe/custom/doctype/customize_form/customize_form.js:140
+#: frappe/custom/doctype/customize_form/customize_form.js:148
+#: frappe/custom/doctype/customize_form/customize_form.js:283
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/ui/page.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:191
+#: frappe/public/js/frappe/views/reports/query_report.js:204
+#: frappe/public/js/frappe/views/reports/query_report.js:214
+#: frappe/public/js/frappe/views/reports/query_report.js:841
msgid "Actions"
msgstr "Tindakan"
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Actions"
-msgstr "Tindakan"
-
-#. Label of a Section Break field in DocType 'DocType'
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Actions"
-msgstr "Tindakan"
-
-#. Label of a Check field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the activate (Check) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Activate"
msgstr ""
-#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12
-#: workflow/doctype/workflow/workflow_list.js:5
-msgid "Active"
-msgstr "Aktif"
-
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Active"
-msgstr "Aktif"
-
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Active"
-msgstr "Aktif"
-
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/recorder/recorder_list.js:207
+#: frappe/core/doctype/user/user_list.js:12
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/workflow/doctype/workflow/workflow_list.js:5
msgid "Active"
msgstr "Aktif"
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Active Directory"
msgstr ""
-#. Label of a Section Break field in DocType 'Domain Settings'
-#. Label of a Table field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
+#. Settings'
+#. Label of the active_domains (Table) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Active Domains"
-msgstr "Domain aktif"
+msgstr ""
-#: www/third_party_apps.html:32
+#. Label of the active_sessions (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/www/third_party_apps.html:34
msgid "Active Sessions"
msgstr "Sesi Aktif"
-#: public/js/frappe/form/dashboard.js:22
-msgid "Activity"
-msgstr "Aktivitas"
-
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:22
+#: frappe/public/js/frappe/form/footer/form_timeline.js:60
msgid "Activity"
msgstr "Aktivitas"
#. Name of a DocType
-#: core/doctype/activity_log/activity_log.json
-msgid "Activity Log"
-msgstr "Log Aktivitas"
-
#. Label of a Link in the Build Workspace
#. Label of a Link in the Users Workspace
-#: core/workspace/build/build.json core/workspace/users/users.json
-msgctxt "Activity Log"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/core/workspace/users/users.json
msgid "Activity Log"
msgstr "Log Aktivitas"
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Activity Log"
-msgstr "Log Aktivitas"
-
-#: core/page/permission_manager/permission_manager.js:465
-#: email/doctype/email_group/email_group.js:60
-#: public/js/frappe/form/grid_row.js:468
-#: public/js/frappe/form/sidebar/assign_to.js:100
-#: public/js/frappe/list/bulk_operations.js:372
-#: public/js/frappe/views/dashboard/dashboard_view.js:440
-#: public/js/frappe/views/reports/query_report.js:265
-#: public/js/frappe/views/reports/query_report.js:293
-#: public/js/frappe/widgets/widget_dialog.js:30
+#: frappe/core/page/permission_manager/permission_manager.js:482
+#: frappe/email/doctype/email_group/email_group.js:60
+#: frappe/public/js/frappe/form/grid_row.js:485
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
+#: frappe/public/js/frappe/form/templates/set_sharing.html:68
+#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
+#: frappe/public/js/frappe/views/reports/query_report.js:266
+#: frappe/public/js/frappe/views/reports/query_report.js:294
+#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Tambahkan"
-#: core/doctype/user_permission/user_permission_list.js:4
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Add / Remove Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:4
msgid "Add / Update"
msgstr "Tambah / Perbarui"
-#: core/page/permission_manager/permission_manager.js:425
+#: frappe/core/page/permission_manager/permission_manager.js:442
msgid "Add A New Rule"
msgstr "Tambah Aturan Baru"
-#: public/js/frappe/views/interaction.js:159
+#: frappe/public/js/frappe/views/communication.js:598
+#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Tambahkan lampiran"
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Background Image"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/add_blog_category/add_blog_category.json
-msgid "Add Blog Category"
-msgstr ""
-
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:209
+#: frappe/desk/doctype/number_card/number_card.js:36
+msgid "Add Card to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:210
msgid "Add Chart to Dashboard"
msgstr "Tambahkan Bagan ke Dasbor"
-#: public/js/frappe/views/treeview.js:285
+#: frappe/public/js/frappe/views/treeview.js:301
msgid "Add Child"
msgstr "Tambah Anak"
-#: public/js/frappe/views/reports/query_report.js:1664
-#: public/js/frappe/views/reports/query_report.js:1667
-#: public/js/frappe/views/reports/report_view.js:329
-#: public/js/frappe/views/reports/report_view.js:354
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
+#: frappe/public/js/frappe/views/reports/query_report.js:1821
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
+#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Tambahkan Kolom"
-#: core/doctype/communication/communication.js:127
+#: frappe/core/doctype/communication/communication.js:127
msgid "Add Contact"
msgstr "Tambah kontak"
-#: desk/doctype/event/event.js:38
+#: frappe/desk/doctype/event/event.js:38
msgid "Add Contacts"
msgstr "Tambahkan Kontak"
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_container (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Container"
-msgstr "Tambahkan Penampung"
+msgstr ""
-#. Label of a Button field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Tambahkan Tag Kustom"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:159
-#: public/js/frappe/widgets/widget_dialog.js:683
+#: frappe/public/js/frappe/widgets/widget_dialog.js:188
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Tambahkan Filter"
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_shade (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Gray Background"
-msgstr "Tambahkan Latar Belakang Abu-abu"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:417
+#: frappe/public/js/frappe/ui/group_by/group_by.js:230
+#: frappe/public/js/frappe/ui/group_by/group_by.js:430
msgid "Add Group"
msgstr "Tambahkan Grup"
-#: core/page/permission_manager/permission_manager.js:428
+#: frappe/core/doctype/recorder/recorder.js:30
+msgid "Add Indexes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Multiple"
+msgstr "Tambahkan Beberapa"
+
+#: frappe/core/page/permission_manager/permission_manager.js:445
msgid "Add New Permission Rule"
msgstr "Tambahkan Rule Izin Baru"
-#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42
+#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
msgid "Add Participants"
msgstr "Tambahkan Peserta"
-#. Label of a Check field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the add_query_parameters (Check) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Add Query Parameters"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:45
-msgid "Add Review"
-msgstr "Tambahkan Ulasan"
-
-#: core/doctype/user/user.py:768
+#: frappe/core/doctype/user/user.py:812
msgid "Add Roles"
msgstr ""
-#: public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Row"
+msgstr ""
+
+#. Label of the add_signature (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/public/js/frappe/views/communication.js:133
msgid "Add Signature"
msgstr "Tambahkan Signature"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Add Signature"
-msgstr "Tambahkan Signature"
-
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Top"
msgstr ""
-#: email/doctype/email_group/email_group.js:38
-#: email/doctype/email_group/email_group.js:59
+#: frappe/email/doctype/email_group/email_group.js:38
+#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
msgstr "Tambahkan Pelanggan"
-#: public/js/frappe/list/bulk_operations.js:360
+#: frappe/public/js/frappe/list/bulk_operations.js:425
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/list/list_view.js:1834
+#: frappe/public/js/frappe/list/list_view.js:2002
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/views/communication.js:320
+#: frappe/public/js/frappe/views/communication.js:430
msgid "Add Template"
msgstr ""
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the add_total_row (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Tambahkan 'Baris Total'"
+msgstr ""
-#. Label of a Check field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the add_translate_data (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Translate Data"
+msgstr ""
+
+#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Add Unsubscribe Link"
-msgstr "Menambahkan Unsubscribe Link"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:6
+#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
msgstr "Tambahkan Izin Pengguna"
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the add_video_conferencing (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Add Video Conferencing"
msgstr ""
-#: public/js/frappe/form/form_tour.js:203
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Add a Filter"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "Add a New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:211
msgid "Add a Row"
msgstr ""
-#: templates/includes/comments/comments.html:30
-#: templates/includes/comments/comments.html:47
+#: frappe/templates/includes/comments/comments.html:30
+#: frappe/templates/includes/comments/comments.html:47
msgid "Add a comment"
msgstr "Tambah komentar"
-#: public/js/frappe/form/form.js:192
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
+#: frappe/public/js/form_builder/components/Tabs.vue:192
+msgid "Add a new section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:193
msgid "Add a row above the current row"
msgstr ""
-#: public/js/frappe/form/form.js:204
+#: frappe/public/js/frappe/form/form.js:205
msgid "Add a row at the bottom"
msgstr ""
-#: public/js/frappe/form/form.js:200
+#: frappe/public/js/frappe/form/form.js:201
msgid "Add a row at the top"
msgstr ""
-#: public/js/frappe/form/form.js:196
+#: frappe/public/js/frappe/form/form.js:197
msgid "Add a row below the current row"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:285
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
msgid "Add a {0} Chart"
msgstr "Tambahkan Bagan {0}"
-#: custom/doctype/client_script/client_script.js:16
+#: frappe/public/js/form_builder/components/Section.vue:271
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
+msgid "Add column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
+msgid "Add field"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:49
+#: frappe/public/js/form_builder/components/Tabs.vue:153
+msgid "Add new tab"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
+msgid "Add page break"
+msgstr ""
+
+#: frappe/custom/doctype/client_script/client_script.js:16
msgid "Add script for Child Table"
msgstr "Tambahkan skrip untuk Tabel Anak"
-#: public/js/frappe/utils/dashboard_utils.js:263
-#: public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
+msgid "Add section above"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:265
+msgid "Add section below"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:52
+#: frappe/public/js/form_builder/components/Tabs.vue:157
+msgid "Add tab"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:252
msgid "Add to Dashboard"
msgstr "Tambahkan ke Dashboard"
-#: public/js/frappe/form/sidebar/assign_to.js:98
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:99
msgid "Add to ToDo"
msgstr "Tambahkan ke ToDo"
-#: website/doctype/website_slideshow/website_slideshow.js:32
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
msgid "Add to table"
msgstr "Tambahkan ke tabel"
-#: public/js/frappe/form/footer/form_timeline.js:97
+#: frappe/public/js/frappe/form/footer/form_timeline.js:99
msgid "Add to this activity by mailing to {0}"
msgstr ""
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
+msgid "Add {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:286
+msgctxt "Primary action in list view"
+msgid "Add {0}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Added"
+msgstr ""
+
#. Description of the '<head> HTML' (Code) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
-msgstr "Ditambahkan HTML di bagian dari halaman web, terutama digunakan untuk verifikasi situs dan SEO"
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:82
+#: frappe/core/doctype/log_settings/log_settings.py:81
msgid "Added default log doctypes: {}"
msgstr ""
-#: core/doctype/file/file.py:720
-msgid "Added {0}"
-msgstr "Ditambahkan {0}"
-
-#: public/js/frappe/form/link_selector.js:180
-#: public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:180
+#: frappe/public/js/frappe/form/link_selector.js:202
msgid "Added {0} ({1})"
msgstr "Ditambahkan {0} ({1})"
-#: core/doctype/user/user.py:271
-msgid "Adding System Manager to this User as there must be atleast one System Manager"
-msgstr "Menambahkan Pengelola Sistem untuk user ini dikarenakan minimal harus ada satu Pengelola Sistem"
-
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the additional_permissions (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the additional_permissions (Section Break) field in DocType
+#. 'DocPerm'
+#. Label of the additional_permissions_section (Section Break) field in DocType
+#. 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Additional Permissions"
-msgstr "Izin Tambahan"
-
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Additional Permissions"
-msgstr "Izin Tambahan"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/address/address.json
+#. Label of the address (Link) field in DocType 'Contact'
+#. Label of the address (Section Break) field in DocType 'Contact Us Settings'
+#. Label of the address (Small Text) field in DocType 'Website Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
msgstr "Alamat"
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Address"
-msgstr "Alamat"
-
-#. Label of a Section Break field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address"
-msgstr "Alamat"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Address"
-msgstr "Alamat"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_line1 (Data) field in DocType 'Address'
+#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
msgstr "Alamat Baris 1"
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Line 1"
-msgstr "Alamat Baris 1"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Address Line 2"
-msgstr "Alamat Baris 2"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the address_line2 (Data) field in DocType 'Address'
+#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
msgstr "Alamat Baris 2"
#. Name of a DocType
-#: contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "Address Template"
msgstr "Template Alamat"
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_title (Data) field in DocType 'Address'
+#. Label of the address_title (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Title"
-msgstr "Judul Alamat"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Title"
-msgstr "Judul Alamat"
-
-#: contacts/doctype/address/address.py:71
+#: frappe/contacts/doctype/address/address.py:72
msgid "Address Title is mandatory."
msgstr "Wajib masukan Judul Alamat."
-#. Label of a Select field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_type (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Address Type"
-msgstr "Tipe Alamat"
+msgstr ""
#. Description of the 'Address' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address and other legal information you may want to put in the footer."
-msgstr "Alamat dan informasi legal lainnya yang mungkin Anda ingin masukkan ke footer."
+msgstr ""
-#: contacts/doctype/address/address.py:208
+#: frappe/contacts/doctype/address/address.py:206
msgid "Addresses"
msgstr "Daftar Alamat"
#. Name of a report
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json
msgid "Addresses And Contacts"
msgstr "Alamat-Alamat Dan Kontak-Kontak"
-#: public/js/frappe/ui/toolbar/search_utils.js:536
+#. Description of a DocType
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Adds a custom client script to a DocType"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Adds a custom field to a DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552
msgid "Administration"
msgstr "Administrasi"
#. Name of a role
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json
-#: core/doctype/module_def/module_def.json core/doctype/page/page.json
-#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json
-#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json
-#: core/doctype/transaction_log/transaction_log.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Administrator"
-msgstr "Administrator"
+msgstr ""
-#: core/doctype/user/user.py:1180
+#: frappe/core/doctype/user/user.py:1217
msgid "Administrator Logged In"
-msgstr "Administrator Logged In"
+msgstr ""
-#: core/doctype/user/user.py:1174
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator mengakses {0} pada {1} melalui IP Address {2}."
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Advanced"
-msgstr "Lanjutan"
+#: frappe/desk/form/document_follow.py:52
+msgid "Administrator can't follow"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the advanced (Section Break) field in DocType 'DocType'
+#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Advanced"
-msgstr "Lanjutan"
+msgstr ""
-#. Label of a Section Break field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the advanced_control_section (Section Break) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Advanced Control"
-msgstr "Kontrol Tingkat Lanjut"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:315
-#: public/js/frappe/form/controls/link.js:317
+#: frappe/public/js/frappe/form/controls/link.js:335
+#: frappe/public/js/frappe/form/controls/link.js:337
msgid "Advanced Search"
msgstr "Pencarian Lanjutan"
-#. Label of a Section Break field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Advanced Settings"
-msgstr "Pengaturan lanjutan"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:64
+#: frappe/public/js/frappe/ui/filters/filter.js:70
+msgid "After"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Cancel"
-msgstr "Setelah Batal"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Delete"
-msgstr "Setelah Hapus"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Insert"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save"
-msgstr "Setelah Simpan"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Rename"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save (Submitted Document)"
-msgstr "Setelah Menyimpan (Dokumen yang Dikirim)"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save (Submitted Document)"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "After Submission"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Submit"
-msgstr "Setelah Kirim"
+msgstr ""
-#: desk/doctype/number_card/number_card.py:58
+#: frappe/desk/doctype/number_card/number_card.py:62
msgid "Aggregate Field is required to create a number card"
msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the aggregate_function_based_on (Select) field in DocType
+#. 'Dashboard Chart'
+#. Label of the aggregate_function_based_on (Select) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Aggregate Function Based On"
-msgstr "Fungsi Agregat Berdasarkan"
+msgstr ""
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Aggregate Function Based On"
-msgstr "Fungsi Agregat Berdasarkan"
-
-#: desk/doctype/dashboard_chart/dashboard_chart.py:410
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
msgid "Aggregate Function field is required to create a dashboard chart"
msgstr "Bidang Fungsi Agregat diperlukan untuk membuat bagan dasbor"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Alert"
-msgstr "Waspada"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Alerts and Notifications"
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
+#. Label of the align (Select) field in DocType 'Letter Head'
+#. Label of the footer_align (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Align"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the align_labels_right (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Align Labels to the Right"
-msgstr "Meratakan Labels ke kanan"
+msgstr ""
-#. Label of a Check field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#. Label of the right (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Align Right"
-msgstr "Rata kanan"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:479
+#: frappe/printing/page/print_format_builder/print_format_builder.js:479
msgid "Align Value"
msgstr "menyelaraskan Nilai"
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/communication/communication.json core/doctype/file/file.json
-#: core/doctype/language/language.json core/doctype/module_def/module_def.json
-#: core/doctype/user/user.json desk/doctype/event/event.json
-#: desk/doctype/notification_log/notification_log.json
-#: desk/doctype/notification_settings/notification_settings.json
-#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json
-#: desk/doctype/todo/todo.json geo/doctype/country/country.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/token_cache/token_cache.json
-#: printing/doctype/print_heading/print_heading.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/website_settings/website_settings.json
-msgid "All"
-msgstr "Semua"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "All"
-msgstr "Semua"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
msgstr "Semua"
-#: public/js/frappe/ui/notifications/notifications.js:394
+#. Label of the all_day (Check) field in DocType 'Calendar View'
+#. Label of the all_day (Check) field in DocType 'Event'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:408
msgid "All Day"
msgstr "Semua Hari"
-#. Label of a Check field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
-msgid "All Day"
-msgstr "Semua Hari"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "All Day"
-msgstr "Semua Hari"
-
-#: website/doctype/website_slideshow/website_slideshow.py:42
+#: frappe/website/doctype/website_slideshow/website_slideshow.py:43
msgid "All Images attached to Website Slideshow should be public"
msgstr "Semua Gambar yang dilampirkan pada Slideshow Situs Web harus umum"
-#: public/js/frappe/data_import/data_exporter.js:29
+#: frappe/public/js/frappe/data_import/data_exporter.js:29
msgid "All Records"
msgstr "Semua Rekaman"
-#: custom/doctype/customize_form/customize_form.js:384
+#: frappe/public/js/frappe/form/form.js:2222
+msgid "All Submissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:452
msgid "All customizations will be removed. Please confirm."
msgstr "Semua kustomisasi akan terhapus. Silakan konfirmasi."
-#: templates/includes/comments/comments.html:158
+#: frappe/templates/includes/comments/comments.html:158
msgid "All fields are necessary to submit the comment."
msgstr ""
#. Description of the 'Document States' (Table) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\""
msgstr ""
-#: utils/password_strength.py:187
+#: frappe/utils/password_strength.py:183
msgid "All-uppercase is almost as easy to guess as all-lowercase."
msgstr "Semua-huruf besar hampir sama mudahnya untuk menebak semua-huruf kecil."
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the allocated_to (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Allocated To"
-msgstr "Dialokasikan Ke"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Allot Points To Assigned Users"
-msgstr "Allot Points Untuk Pengguna yang Ditugaskan"
-
-#: templates/includes/oauth_confirmation.html:15
-msgid "Allow"
-msgstr "Mengizinkan"
+msgstr ""
+#. Label of the allow (Link) field in DocType 'User Permission'
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:16
msgid "Allow"
msgstr "Mengizinkan"
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Allow"
-msgstr "Mengizinkan"
-
-#: website/doctype/website_settings/website_settings.py:160
+#: frappe/website/doctype/website_settings/website_settings.py:160
msgid "Allow API Indexing Access"
msgstr "Izinkan Akses Pengindeksan API"
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_auto_repeat (Check) field in DocType 'DocType'
+#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow Auto Repeat"
-msgstr "Izinkan Ulangi Otomatis"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Auto Repeat"
-msgstr "Izinkan Ulangi Otomatis"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow Bulk Edit"
-msgstr "Izinkan Edit Massal"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow Bulk Edit"
-msgstr "Izinkan Edit Massal"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Comments"
-msgstr "Izinkan Komentar"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Consecutive Login Attempts "
-msgstr "Izinkan Upaya Masuk Berturut-turut"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Delete"
-msgstr "Izinkan Hapus"
-
-#. Label of a Button field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Allow Dropbox Access"
-msgstr "Izinkan Akses Dropbox"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Editing After Submit"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:100
-#: integrations/doctype/google_calendar/google_calendar.py:114
+#. Label of the allow_bulk_edit (Check) field in DocType 'DocField'
+#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Allow Bulk Edit"
+msgstr ""
+
+#. Label of the allow_edit (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow Bulk Editing"
+msgstr ""
+
+#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Consecutive Login Attempts "
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "Izinkan Google Kalender Akses"
-#: integrations/doctype/google_contacts/google_contacts.py:39
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:40
msgid "Allow Google Contacts Access"
msgstr "Izinkan Google Kontak Mengakses"
-#: integrations/doctype/google_drive/google_drive.py:51
-msgid "Allow Google Drive Access"
-msgstr "Izinkan Akses Google Drive"
-
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the allow_guest (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
-msgstr "Izinkan Tamu"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Guest to View"
-msgstr "Izinkan tamu untuk Lihat"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Allow Guest to comment"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Guests to Upload Files"
-msgstr "Izinkan Tamu Mengunggah File"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Izinkan Impor (melalui Alat Import Data)"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Izinkan Impor (melalui Alat Import Data)"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Incomplete Forms"
-msgstr "Izikan Formulir tidak lengkap"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login After Fail"
-msgstr "Perbolehkan Masuk Setelah Gagal"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using Mobile Number"
-msgstr "Izinkan Login menggunakan Nomor Handphone"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using User Name"
-msgstr "Izinkan Login menggunakan User Name"
-
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Allow Modules"
-msgstr "Izinkan Modul"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Multiple Responses"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_import (Check) field in DocType 'DocType'
+#. Label of the allow_import (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Import (via Data Import Tool)"
+msgstr ""
+
+#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login After Fail"
+msgstr ""
+
+#. Label of the allow_login_using_mobile_number (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using Mobile Number"
+msgstr ""
+
+#. Label of the allow_login_using_user_name (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using User Name"
+msgstr ""
+
+#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow Modules"
+msgstr ""
+
+#. Label of the allow_older_web_view_links (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Older Web View Links (Insecure)"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Print"
-msgstr "Izinkan Cetak"
-
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Cancelled"
-msgstr "Memungkinkan Print untuk Dibatalkan"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:395
+#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Draft"
msgstr "Memungkinkan Print untuk Draft"
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Allow Print for Draft"
-msgstr "Memungkinkan Print untuk Draft"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web
+#. Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Allow Read On All Link Options"
-msgstr "Izinkan Baca Di Semua Opsi Tautan"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_rename (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Rename"
-msgstr "Izinkan Rename"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#. Label of the roles_permission (Section Break) field in DocType 'Role
+#. Permission for Page and Report'
+#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module
+#. Onboarding'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Allow Roles"
-msgstr "Izinkan Roles"
+msgstr ""
-#. Label of a Section Break field in DocType 'Role Permission for Page and
-#. Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Allow Roles"
-msgstr "Izinkan Roles"
-
-#. Label of a Check field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allow_self_approval (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "Izinkan Persetujuan Sendiri"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Sending Usage Data for Improving Applications"
msgstr ""
#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow
#. Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow approval for creator of the document"
-msgstr "Izinkan persetujuan untuk pembuat dokumen"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_comments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow comments"
+msgstr ""
+
+#. Label of the allow_delete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow delete"
+msgstr ""
+
+#. Label of the email_append_to (Check) field in DocType 'DocType'
+#. Label of the email_append_to (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow document creation via Email"
-msgstr "Izinkan pembuatan dokumen melalui Email"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow document creation via Email"
-msgstr "Izinkan pembuatan dokumen melalui Email"
+#. Label of the allow_edit (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow editing after submit"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow editing even if the doctype has a workflow set up.\n\n"
+"Does nothing if a workflow isn't set up."
+msgstr ""
+
+#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow events in timeline"
-msgstr "Izinkan acara dalam garis waktu"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow in Quick Entry"
-msgstr "Izinkan dalam Entri Cepat"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow in Quick Entry"
-msgstr "Izinkan dalam Entri Cepat"
+#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow incomplete forms"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow in Quick Entry"
-msgstr "Izinkan dalam Entri Cepat"
+#. Label of the allow_multiple (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow multiple responses"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_on_submit (Check) field in DocType 'DocField'
+#. Label of the allow_on_submit (Check) field in DocType 'Custom Field'
+#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow on Submit"
-msgstr "Izinkan Submit"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow on Submit"
-msgstr "Izinkan Submit"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow on Submit"
-msgstr "Izinkan Submit"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the deny_multiple_sessions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow only one session per user"
-msgstr "Hanya mengizinkan satu sesi per pengguna"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow page break inside tables"
-msgstr "Memungkinkan halaman istirahat dalam tabel"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:420
+#. Label of the allow_print (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow print"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:431
msgid "Allow recording my first session to improve user experience"
msgstr ""
-#. Description of the 'Allow Incomplete Forms' (Check) field in DocType 'Web
+#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web
#. Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Izinkan untuk menyimpan jika bidang wajib tidak diisi"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:413
+#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
msgstr ""
#. Description of the 'Login After' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only after this hour (0-24)"
-msgstr "Memungkinkan pengguna untuk login hanya setelah jam ini (0-24)"
+msgstr ""
#. Description of the 'Login Before' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only before this hour (0-24)"
-msgstr "Memungkinkan pengguna untuk login hanya sebelum jam ini (0-24)"
+msgstr ""
#. Description of the 'Login with email link' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow users to log in without a password, using a login link sent to their email"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allowed (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "Diizinkan"
+msgstr ""
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allowed File Extensions"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the allowed_in_mentions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Diizinkan Dengan Sebutan"
+msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the allowed_modules_section (Section Break) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Allowed Modules"
msgstr ""
-#: public/js/frappe/form/form.js:1229
+#. Label of the allowed_public_client_origins (Small Text) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allowed Public Client Origins"
+msgstr ""
+
+#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Allowed Roles"
+msgstr ""
+
+#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allowed embedding domains"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:1256
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Membiarkan DocType, DocType. Hati-hati!"
-#: core/doctype/user/user.py:977
+#. Description of the 'Show Auth Server Metadata' (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414"
+msgstr ""
+
+#. Description of the 'Show Protected Resource Metadata' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728"
+msgstr ""
+
+#. Description of the 'Enable Dynamic Client Registration' (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591"
+msgstr ""
+
+#. Description of the 'Show in Resource Metadata' (Check) field in DocType
+#. 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point."
+msgstr ""
+
+#. Description of the 'Show Social Login Key as Authorization Server' (Check)
+#. field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
+msgstr ""
+
+#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Allows skipping authorization if a user has active tokens."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1027
msgid "Already Registered"
msgstr "Sudah Terdaftar"
-#: desk/form/assign_to.py:132
+#: frappe/desk/form/assign_to.py:137
msgid "Already in the following Users ToDo list:{0}"
msgstr "Sudah ada di daftar ToDo Pengguna berikut: {0}"
-#: public/js/frappe/views/reports/report_view.js:840
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "Juga menambahkan field mata uang dependen {0}"
-#: public/js/frappe/views/reports/report_view.js:853
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "Juga menambahkan bidang dependensi status {0}"
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Alternative Email ID"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Always add \"Draft\" Heading for printing draft documents"
-msgstr "Selalu menambahkan "Draft" Menuju rancangan pencetakan dokumen"
+#. Label of the always_bcc (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always BCC Address"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the add_draft_heading (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Always add \"Draft\" Heading for printing draft documents"
+msgstr ""
+
+#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this email address as sender address"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the always_use_account_name_as_sender_name (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this name as sender name"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the amend (Check) field in DocType 'Custom DocPerm'
+#. Label of the amend (Check) field in DocType 'DocPerm'
+#. Label of the amend (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr "Merubah"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Amend"
-msgstr "Merubah"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Amend"
-msgstr "Merubah"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Amend Counter"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amend Counter"
msgstr ""
#. Name of a DocType
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
msgid "Amended Document Naming Settings"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amended_documents_section (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amended Documents"
msgstr ""
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#. Label of the amended_from (Link) field in DocType 'Transaction Log'
+#. Label of the amended_from (Link) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Amended From"
-msgstr "Diubah Dari"
+msgstr ""
-#. Label of a Link field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Amended From"
-msgstr "Diubah Dari"
-
-#: public/js/frappe/form/save.js:12
+#: frappe/public/js/frappe/form/save.js:12
msgctxt "Freeze message while amending a document"
msgid "Amending"
msgstr "Amandemen"
-#. Label of a Table field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amend_naming_override (Table) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amendment Naming Override"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:208
+#: frappe/model/document.py:551
+msgid "Amendment Not Allowed"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
msgid "Amendment naming rules updated."
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:287
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "An error occurred while setting Session Defaults"
msgstr "Terjadi kesalahan saat mengatur Sesi Default"
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
-msgstr "File icon dengan ekstensi .ico. Harus 16 x 16 px. Dihasilkan menggunakan generator favicon. [favicon-generator.org]"
+msgstr ""
-#: templates/includes/oauth_confirmation.html:35
+#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the analytics_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "Analytics"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:35
+#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
msgstr "Leluhur Dari"
+#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Announcement Widget"
+msgstr ""
+
+#. Label of the announcements_section (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Announcements"
+msgstr ""
+
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Annual"
msgstr "Tahunan"
-#. Label of a Code field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data
+#. Deletion Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Anonymization Matrix"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Anonymous"
-msgstr "Anonim"
+#. Label of the anonymous (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Anonymous responses"
+msgstr ""
-#: public/js/frappe/request.js:186
+#: frappe/public/js/frappe/request.js:189
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Transaksi lain yang menghalangi satu ini. Silakan coba lagi dalam beberapa detik."
-#: model/rename_doc.py:380
+#: frappe/model/rename_doc.py:379
msgid "Another {0} with name {1} exists, select another name"
msgstr "Lain {0} dengan nama {1} ada, pilih nama lain"
#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
-msgstr "Bahasa printer berbasis string apa pun dapat digunakan. Menulis perintah mentah membutuhkan pengetahuan tentang bahasa asli printer yang disediakan oleh produsen printer. Silakan merujuk ke manual pengembang yang disediakan oleh pabrik printer tentang cara menulis perintah asli mereka. Perintah-perintah ini diberikan di sisi server menggunakan Bahasa Templating Jinja."
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "App"
-msgstr "Aplikasi"
-
-#. Label of a Data field in DocType 'Website Theme Ignore App'
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
-msgctxt "Website Theme Ignore App"
-msgid "App"
-msgstr "Aplikasi"
-
-#. Label of a Data field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "App Access Key"
-msgstr "Aplikasi Access Key"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "App Client ID"
-msgstr "Aplikasi Client ID"
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
+msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "App Client Secret"
-msgstr "Aplikasi Client Rahasia"
+#. Label of the app_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the app_section (Section Break) field in DocType 'User'
+#. Label of the app (Data) field in DocType 'Desktop Icon'
+#. Label of the app (Data) field in DocType 'Workspace'
+#. Label of the app (Data) field in DocType 'Website Theme Ignore App'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+msgid "App"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the app_id (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Logo"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:27
+#. Label of the app_name (Select) field in DocType 'Module Def'
+#. Label of the app_name (Data) field in DocType 'Changelog Feed'
+#. Label of the app_name (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/installed_applications/installed_applications.js:27
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
msgstr "Nama App"
-#. Label of a Select field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "App Name"
-msgstr "Nama App"
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Name (Client Name)"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "App Name"
-msgstr "Nama App"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "App Name"
-msgstr "Nama App"
-
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "App Secret Key"
-msgstr "App Kunci Rahasia"
-
-#: modules/utils.py:268
+#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: __init__.py:1677
+#: frappe/__init__.py:1113
msgid "App {0} is not installed"
msgstr "App {0} tidak diinstal"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Account'
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "Tambahkan Email ke Folder Terkirim"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Append Emails to Sent Folder"
-msgstr "Tambahkan Email ke Folder Terkirim"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_to (Link) field in DocType 'Email Account'
+#. Label of the append_to (Link) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Append To"
-msgstr "Untuk menambahkan"
+msgstr ""
-#. Label of a Link field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "Append To"
-msgstr "Untuk menambahkan"
-
-#: email/doctype/email_account/email_account.py:178
+#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
msgstr "Tambahkan Untuk dapat menjadi salah satu {0}"
#. Description of the 'Append To' (Link) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:105
+#: frappe/core/doctype/user_permission/user_permission_list.js:105
msgid "Applicable Document Types"
msgstr "Jenis Dokumen yang Berlaku"
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the applicable_for (Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Applicable For"
-msgstr "Berlaku Untuk"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Navbar Settings'
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings'
+#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Application Logo"
-msgstr "Logo Aplikasi"
+msgstr ""
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_name (Data) field in DocType 'Installed Application'
+#. Label of the app_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Application Name"
-msgstr "nama aplikasi"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Application Name"
-msgstr "nama aplikasi"
-
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_version (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Application Version"
-msgstr "Versi Aplikasi"
+msgstr ""
-#. Label of a Select field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Applied On"
-msgstr "Diterapkan Pada"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/form_builder/components/Field.vue:103
+msgid "Apply"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1987
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Terapkan Aturan Penugasan"
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Apply Document Permissions"
-msgstr "Terapkan Izin Dokumen"
-
-#: public/js/frappe/ui/filters/filter_list.js:315
+#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
msgstr ""
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply Only Once"
-msgstr "Terapkan Hanya Sekali"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Apply Strict User Permissions"
-msgstr "Terapkan Izin Pengguna yang Ketat"
+msgstr ""
-#. Label of a Select field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the view (Select) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
msgid "Apply To"
msgstr ""
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the apply_to_all_doctypes (Check) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Berlaku untuk Semua Jenis Dokumen"
+msgstr ""
-#. Label of a Link field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Apply User Permission On"
msgstr ""
+#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Apply document permissions"
+msgstr ""
+
#. Description of the 'If user is the owner' (Check) field in DocType 'Custom
#. DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Apply this rule if the User is the Owner"
-msgstr "Menerapkan aturan ini jika pengguna adalah pemilik"
-
#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "Apply this rule if the User is the Owner"
-msgstr "Menerapkan aturan ini jika pengguna adalah pemilik"
+msgstr ""
-#. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply this rule only once per document"
-msgstr "Terapkan aturan ini hanya sekali per dokumen"
-
-#: core/doctype/user_permission/user_permission_list.js:75
+#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
msgstr "Berlaku untuk semua Jenis Dokumen"
-#: model/workflow.py:265
+#: frappe/model/workflow.py:266
msgid "Applying: {0}"
msgstr "Menerapkan: {0}"
-#: public/js/frappe/form/sidebar/review.js:62
-msgid "Appreciate"
-msgstr "Menghargai"
-
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Appreciation"
-msgstr "Apresiasi"
-
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
msgstr "Diperlukan Persetujuan"
-#: public/js/frappe/utils/number_systems.js:41
+#. Label of a standard navbar item
+#. Type: Route
+#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/website/js/website.js:619 frappe/www/me.html:80
+msgid "Apps"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Archived"
-msgstr "Diarsipkan"
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:14
+msgid "Archive"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:490
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Archived"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494
msgid "Archived Columns"
msgstr "Kolom diarsipkan"
-#: public/js/frappe/form/grid.js:269
+#: frappe/public/js/frappe/list/list_view.js:1966
+msgid "Are you sure you want to clear the assignments?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "Anda yakin ingin menghapus semua baris?"
-#: public/js/frappe/views/workspace/workspace.js:885
-msgid "Are you sure you want to delete page {0}?"
-msgstr ""
-
-#: public/js/frappe/form/sidebar/attachments.js:135
+#: frappe/public/js/frappe/form/controls/attach.js:38
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Apakah Anda yakin ingin menghapus lampiran?"
-#: public/js/frappe/web_form/web_form.js:185
+#: frappe/public/js/form_builder/components/Section.vue:197
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:126
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:65
+msgctxt "Confirmation dialog message"
+msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:185
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: public/js/frappe/form/toolbar.js:110
+#: frappe/public/js/frappe/views/reports/query_report.js:968
+msgid "Are you sure you want to generate a new report?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:120
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Anda yakin ingin menggabungkan {0} dengan {1}?"
-#: public/js/frappe/views/kanban/kanban_view.js:105
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
msgid "Are you sure you want to proceed?"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:25
+#: frappe/core/doctype/rq_job/rq_job_list.js:25
msgid "Are you sure you want to re-enable scheduler?"
msgstr ""
-#: core/doctype/communication/communication.js:163
+#: frappe/core/doctype/communication/communication.js:163
msgid "Are you sure you want to relink this communication to {0}?"
msgstr "Apakah Anda yakin Anda ingin menautkan komunikasi ini untuk {0}?"
-#: core/doctype/rq_job/rq_job_list.js:10
+#: frappe/core/doctype/rq_job/rq_job_list.js:10
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: public/js/frappe/list/list_filter.js:109
+#: frappe/public/js/frappe/list/list_filter.js:116
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:267
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
msgid "Are you sure you want to reset all customizations?"
msgstr "Apakah Anda yakin ingin mengatur ulang semua penyesuaian?"
-#: email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "Are you sure you want to save this document?"
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:16
-#: core/doctype/user_permission/user_permission_list.js:165
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
+#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
msgstr "Apakah kamu yakin"
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the arguments (Code) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Arguments"
msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Arial"
-msgstr "Arial"
+msgstr ""
-#: desk/form/assign_to.py:102
+#: frappe/core/page/permission_manager/permission_manager_help.html:11
+msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:107
msgid "As document sharing is disabled, please give them the required permissions before assigning."
msgstr ""
-#: templates/emails/account_deletion_notification.html:3
+#: frappe/templates/emails/account_deletion_notification.html:3
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
-msgstr "Kondisi Penugasan"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:163
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:183
msgid "Assign To"
msgstr "Tugaskan Kepada"
-#: public/js/frappe/list/list_view.js:1804
+#: frappe/public/js/frappe/list/list_view.js:1948
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tugaskan Kepada"
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Assign To Users"
-msgstr "Tetapkan Untuk Pengguna"
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:193
+msgid "Assign To User Group"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:232
+#. Label of the assign_to_users_section (Section Break) field in DocType
+#. 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assign To Users"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:260
msgid "Assign a user"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:52
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52
msgid "Assign one by one, in sequence"
msgstr "Tetapkan satu per satu, secara berurutan"
-#: public/js/frappe/form/sidebar/assign_to.js:154
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
msgid "Assign to me"
msgstr "Tetapkan ke saya"
-#: automation/doctype/assignment_rule/assignment_rule.js:53
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
msgid "Assign to the one who has the least assignments"
msgstr "Tugaskan orang yang memiliki tugas paling sedikit"
-#: automation/doctype/assignment_rule/assignment_rule.js:54
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
msgid "Assign to the user set in this field"
msgstr "Tetapkan ke kumpulan pengguna di bidang ini"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assigned"
-msgstr "Ditugaskan"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assigned"
-msgstr "Ditugaskan"
-
-#: desk/report/todo/todo.py:41
+#. Label of the assigned_by (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
msgid "Assigned By"
msgstr "Ditugaskan Oleh"
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Assigned By"
-msgstr "Ditugaskan Oleh"
-
-#. Label of a Read Only field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Assigned By Full Name"
-msgstr "Ditugaskan Dengan Nama Lengkap"
+msgstr ""
-#: desk/doctype/todo/todo_list.js:35
-msgid "Assigned By Me"
-msgstr "Ditugaskan Olehku"
-
-#: model/__init__.py:151 model/meta.py:55
-#: public/js/frappe/list/list_sidebar_group_by.js:71
-#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126
-#: public/js/frappe/views/interaction.js:82
+#: frappe/model/meta.py:62
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:49
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71
+#: frappe/public/js/frappe/model/meta.js:210
+#: frappe/public/js/frappe/model/model.js:136
+#: frappe/public/js/frappe/views/interaction.js:82
msgid "Assigned To"
msgstr "Ditugaskan Kepada"
-#: desk/report/todo/todo.py:40
+#: frappe/desk/report/todo/todo.py:40
msgid "Assigned To/Owner"
msgstr "Ditugaskan Untuk / Owner"
-#: public/js/frappe/form/sidebar/assign_to.js:241
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:269
msgid "Assigning..."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Assignment"
-msgstr "Tugas"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "Tugas Selesai"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assignment Completed"
-msgstr "Tugas Selesai"
-
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#. Label of a Table field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
+#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Days"
-msgstr "Hari Penugasan"
-
-#: automation/doctype/assignment_rule/assignment_rule.py:64
-msgid "Assignment Day{0} {1} has been repeated."
msgstr ""
#. Name of a DocType
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgid "Assignment Rule"
-msgstr "Aturan Penugasan"
-
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Assignment Rule"
-msgid "Assignment Rule"
-msgstr "Aturan Penugasan"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Assignment Rule"
-msgstr "Aturan Penugasan"
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the assignment_rule (Link) field in DocType 'ToDo'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json
msgid "Assignment Rule"
msgstr "Aturan Penugasan"
#. Name of a DocType
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
msgid "Assignment Rule Day"
msgstr "Hari Aturan Penugasan"
#. Name of a DocType
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
msgid "Assignment Rule User"
msgstr "Pengguna Aturan Penugasan"
-#: automation/doctype/assignment_rule/assignment_rule.py:53
-msgid "Assignment Rule is not allowed on {0} document type"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+msgid "Assignment Rule is not allowed on document type {0}"
msgstr ""
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the assignment_rules_section (Section Break) field in DocType
+#. 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Rules"
-msgstr "Aturan Penugasan"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:157
+#: frappe/desk/doctype/notification_log/notification_log.py:153
msgid "Assignment Update on {0}"
msgstr "Pembaruan Tugas pada {0}"
-#: desk/form/assign_to.py:75
+#: frappe/desk/form/assign_to.py:78
msgid "Assignment for {0} {1}"
msgstr "Tugas untuk {0} {1}"
-#: desk/doctype/todo/todo.py:62
+#: frappe/desk/doctype/todo/todo.py:62
msgid "Assignment of {0} removed by {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:227
+#. Label of the enable_email_assignment (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
msgid "Assignments"
msgstr "Tugas"
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Assignments"
-msgstr "Tugas"
-
-#: public/js/frappe/form/grid_row.js:629
+#: frappe/public/js/frappe/form/grid_row.js:680
msgid "At least one column is required to show in the grid."
msgstr ""
-#: website/doctype/web_form/web_form.js:64
-msgid "Atleast one field is required in Web Form Fields Table"
+#: frappe/website/doctype/web_form/web_form.js:73
+msgid "At least one field is required in Web Form Fields Table"
msgstr ""
-#: core/doctype/data_export/data_export.js:44
-msgid "Atleast one field of Parent Document Type is mandatory"
-msgstr "Setidaknya satu bidang Jenis Dokumen Induk adalah wajib"
-
-#: public/js/frappe/form/controls/attach.js:5
-msgid "Attach"
-msgstr "Melampirkan"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach"
-msgstr "Melampirkan"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach"
-msgstr "Melampirkan"
+#: frappe/core/doctype/data_export/data_export.js:44
+msgid "At least one field of Parent Document Type is mandatory"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach"
-msgstr "Melampirkan"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15
+#: frappe/public/js/frappe/form/controls/attach.js:5
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Attach"
msgstr "Melampirkan"
-#: public/js/frappe/views/communication.js:139
+#: frappe/public/js/frappe/views/communication.js:155
msgid "Attach Document Print"
msgstr "Lampirkan Dokumen Cetak"
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach Image"
-msgstr "Pasang Gambar"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach Image"
-msgstr "Pasang Gambar"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach Image"
-msgstr "Pasang Gambar"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Attach Image"
-msgstr "Pasang Gambar"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Attach Image"
-msgstr "Pasang Gambar"
+msgstr ""
-#. Label of a Attach field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the attach_package (Attach) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Attach Package"
msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the attach_print (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Attach Print"
-msgstr "Lampirkan Cetak"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:8
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
+msgid "Attach a web link"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:8
msgid "Attach files / urls and add in table."
msgstr "Lampirkan file / url dan tambahkan dalam tabel."
-#. Label of a Code field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attached_file (Code) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attached File"
-msgstr "File terlampir"
+msgstr ""
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_doctype (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "Terlampir Untuk DocType"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_field (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "Terlampir ke lapangan"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr "Terlampir Untuk Nama"
+msgstr ""
-#: core/doctype/file/file.py:140
+#: frappe/core/doctype/file/file.py:142
msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Attachment"
-msgstr "Lampiran"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment"
-msgstr "Lampiran"
-
-#. Label of a Attach field in DocType 'Newsletter Attachment'
-#: email/doctype/newsletter_attachment/newsletter_attachment.json
-msgctxt "Newsletter Attachment"
-msgid "Attachment"
-msgstr "Lampiran"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the attachment_limit (Int) field in DocType 'Email Account'
+#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "Batas Lampiran (MB)"
+msgstr ""
-#. Label of a Int field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Attachment Limit (MB)"
-msgstr "Batas Lampiran (MB)"
-
-#: core/doctype/file/file.py:321
-#: public/js/frappe/form/sidebar/attachments.js:36
+#: frappe/core/doctype/file/file.py:324
+#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
-#. Label of a HTML field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attachment Link"
-msgstr "Tautan Lampiran"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Lampiran Dihapus"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment Removed"
-msgstr "Lampiran Dihapus"
-
-#: core/doctype/file/utils.py:40
-#: email/doctype/newsletter/templates/newsletter.html:47
-#: website/doctype/web_form/templates/web_form.html:103
+#. Label of the attachments (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
+#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
msgstr "Lampiran"
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Attachments"
-msgstr "Lampiran"
-
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Attachments"
-msgstr "Lampiran"
-
-#: public/js/frappe/form/print_utils.js:89
+#: frappe/public/js/frappe/form/print_utils.js:104
msgid "Attempting Connection to QZ Tray..."
msgstr "Mencoba Koneksi ke Baki QZ ..."
-#: public/js/frappe/form/print_utils.js:105
+#: frappe/public/js/frappe/form/print_utils.js:120
msgid "Attempting to launch QZ Tray..."
msgstr "Mencoba meluncurkan QZ Tray ..."
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Audience"
+#: frappe/www/attribution.html:9
+msgid "Attribution"
msgstr ""
#. Name of a report
-#: custom/report/audit_system_hooks/audit_system_hooks.json
+#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
msgstr ""
#. Name of a DocType
-#: core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "Audit Trail"
msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Auth URL Data"
-msgstr "Data URL Auth"
+msgstr ""
+#. Label of the backend_app_flow (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authenticate as Service Principal"
+msgstr ""
+
+#. Label of the authentication_column (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the authentication_credential_section (Section Break) field in
+#. DocType 'Push Notification Settings'
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Authentication"
msgstr "pembuktian keaslian"
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Authentication"
-msgstr "pembuktian keaslian"
-
-#: www/qrcode.html:19
+#: frappe/www/qrcode.html:19
msgid "Authentication Apps you can use are: "
msgstr "Aplikasi Otentikasi yang dapat Anda gunakan adalah:"
-#: email/doctype/email_account/email_account.py:294
+#: frappe/email/doctype/email_account/email_account.py:339
msgid "Authentication failed while receiving emails from Email Account: {0}."
msgstr "Autentikasi gagal saat menerima email dari Akun Email: {0}."
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the author (Data) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Author"
-msgstr "Penulis"
+msgstr ""
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "Authorization Code"
-msgstr "Kode otorisasi"
-
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Authorization Code"
-msgstr "Kode otorisasi"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Authorization Code"
-msgstr "Kode otorisasi"
-
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Authorization Code"
-msgstr "Kode otorisasi"
+#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Authorization"
+msgstr ""
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Calendar'
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Contacts'
+#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization
+#. Code'
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
-msgstr "Kode otorisasi"
+msgstr ""
-#. Label of a Small Text field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the authorization_uri (Small Text) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Authorization URI"
msgstr ""
-#: templates/includes/oauth_confirmation.html:32
+#: frappe/templates/includes/oauth_confirmation.html:35
msgid "Authorization error for {}."
msgstr ""
-#. Label of a Button field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the authorize_api_access (Button) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Authorize API Access"
msgstr ""
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the authorize_api_indexing_access (Button) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Authorize API Indexing Access"
-msgstr "Izinkan Akses Pengindeksan API"
+msgstr ""
-#. Label of a Button field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the authorize_google_calendar_access (Button) field in DocType
+#. 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Authorize Google Calendar Access"
-msgstr "Otorisasi Akses Kalender Google"
+msgstr ""
-#. Label of a Button field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the authorize_google_contacts_access (Button) field in DocType
+#. 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "Otorisasi Akses Kontak Google"
+msgstr ""
-#. Label of a Button field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Authorize Google Drive Access"
-msgstr "Otorisasi Akses Google Drive"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Authorize URL"
-msgstr "Otorisasi URL"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "resmi"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Auto"
-msgstr "Mobil"
+#: frappe/www/attribution.html:20
+msgid "Authors"
+msgstr ""
+
+#: frappe/www/attribution.html:37
+msgid "Authors / Maintainers"
+msgstr ""
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
#. Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Auto"
-msgstr "Mobil"
+msgstr ""
+#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#: email/doctype/auto_email_report/auto_email_report.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Auto Email Report"
msgstr "Laporan Surel Otomatis"
-#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Email Report"
-msgid "Auto Email Report"
-msgstr "Laporan Surel Otomatis"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the autoname (Data) field in DocType 'DocType'
+#. Label of the autoname (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Nama Otomatis"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Auto Name"
-msgstr "Nama Otomatis"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: public/js/frappe/utils/common.js:442
-msgid "Auto Repeat"
-msgstr "Ulangi Otomatis"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Repeat"
-msgid "Auto Repeat"
-msgstr "Ulangi Otomatis"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/utils/common.js:442
msgid "Auto Repeat"
msgstr "Ulangi Otomatis"
#. Name of a DocType
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
msgid "Auto Repeat Day"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:158
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165
msgid "Auto Repeat Day{0} {1} has been repeated."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:436
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448
msgid "Auto Repeat Document Creation Failed"
msgstr "Ulangi Pembuatan Dokumen Otomatis Gagal"
-#: automation/doctype/auto_repeat/auto_repeat.js:115
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117
msgid "Auto Repeat Schedule"
msgstr ""
-#: public/js/frappe/utils/common.js:434
+#: frappe/public/js/frappe/utils/common.js:434
msgid "Auto Repeat created for this document"
msgstr "Ulangi Otomatis dibuat untuk dokumen ini"
-#: automation/doctype/auto_repeat/auto_repeat.py:439
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451
msgid "Auto Repeat failed for {0}"
msgstr "Ulangi Otomatis gagal untuk {0}"
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Auto Reply Pesan"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:179
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
msgstr "Tugas otomatis gagal: {0}"
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_assigned_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are assigned to you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_shared_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are shared with you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_liked_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you Like"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_commented_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you comment on"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_created_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you create"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Autocomplete"
-msgstr ""
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Autocomplete"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227
+msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Autocomplete"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Autoincrement"
msgstr ""
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Automate processes and extend standard functionality using scripts and background jobs"
+msgstr ""
+
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Automated Message"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:69
-msgid "Automatic"
-msgstr ""
-
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/theme_switcher.js:69
msgid "Automatic"
msgstr ""
-#: email/doctype/email_account/email_account.py:675
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "Tautan Otomatis hanya dapat diaktifkan untuk satu Akun Email."
-#: email/doctype/email_account/email_account.py:670
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "Tautan Otomatis hanya dapat diaktifkan jika Incoming diaktifkan."
-#. Label of a Int field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of a DocType
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Automatically Assign Documents to Users"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:128
+msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
+msgstr ""
+
+#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Automatically delete account within (hours)"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Automation"
msgstr "Otomatisasi"
-#. Label of a Attach Image field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the avatar (Attach Image) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Avatar"
-msgstr "Avatar"
-
-#: public/js/frappe/form/controls/password.js:89
-#: public/js/frappe/ui/group_by/group_by.js:21
-msgid "Average"
-msgstr "Rata-rata"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Average"
-msgstr "Rata-rata"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/controls/password.js:88
+#: frappe/public/js/frappe/ui/group_by/group_by.js:21
msgid "Average"
msgstr "Rata-rata"
-#: public/js/frappe/ui/group_by/group_by.js:332
+#: frappe/public/js/frappe/ui/group_by/group_by.js:345
msgid "Average of {0}"
msgstr "Rata-rata dari {0}"
-#: utils/password_strength.py:132
+#: frappe/utils/password_strength.py:130
msgid "Avoid dates and years that are associated with you."
msgstr "Hindari tanggal dan tahun yang berkaitan dengan Anda."
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid recent years."
msgstr "Hindari beberapa tahun terakhir."
-#: utils/password_strength.py:119
+#: frappe/utils/password_strength.py:117
msgid "Avoid sequences like abc or 6543 as they are easy to guess"
msgstr "Hindari urutan seperti abc atau 6543 karena hal itu mudah ditebak"
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid years that are associated with you."
msgstr "Hindari tahun yang berkaitan dengan Anda."
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Label of the awaiting_password (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "Menunggu Kata Sandi"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the awaiting_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Awaiting password"
-msgstr "Menunggu Sandi"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:200
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
msgid "Awesome Work"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:358
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:353
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#: public/js/frappe/utils/number_systems.js:9
+#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B10"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B4"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B9"
msgstr ""
-#: public/js/frappe/views/communication.js:76
+#. Label of the bcc (Code) field in DocType 'Communication'
+#. Label of the bcc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:87
+msgctxt "Email Recipients"
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "BCC"
-msgstr "BCC"
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
+msgid "Back"
+msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:13
+#: frappe/templates/pages/integrations/gcalendar-success.html:13
msgid "Back to Desk"
msgstr "Kembali ke Meja"
-#: www/404.html:20
+#: frappe/www/404.html:26
msgid "Back to Home"
msgstr "Kembali ke rumah"
-#: www/login.html:181 www/login.html:212
+#: frappe/www/login.html:201 frappe/www/login.html:232
msgid "Back to Login"
msgstr "Kembali ke Login"
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the background_color (Color) field in DocType 'Number Card'
+#. Label of the background_color (Color) field in DocType 'Social Link
+#. Settings'
+#. Label of the background_color (Link) field in DocType 'Website Theme'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Background Color"
-msgstr "Warna Latar"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Background Color"
-msgstr "Warna Latar"
-
-#. Label of a Attach Image field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the background_image (Attach Image) field in DocType 'Web Page
+#. Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Background Image"
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:143
-msgid "Background Jobs"
-msgstr "Pekerjaan/Proses Latar"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "RQ Job"
+#. Label of the background_jobs_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183
msgid "Background Jobs"
msgstr "Pekerjaan/Proses Latar"
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the background_jobs_check (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Jobs Check"
+msgstr ""
+
+#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Background Jobs Queue"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:87
+msgid "Background Print (required for >25 documents)"
+msgstr ""
+
+#. Label of the background_workers (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the background_workers (Table) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Pekerja latar"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:31
-msgid "Backing up to Google Drive."
-msgstr "Mencadangkan ke Google Drive."
-
-#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Cadangan"
-
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Details"
-msgstr "Detail Cadangan"
-
-#: desk/page/backups/backups.js:26
+#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Files"
-msgstr "File Cadangan"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Backup Folder ID"
-msgstr "ID Folder Cadangan"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Backup Folder Name"
-msgstr "Nama Folder Cadangan"
-
-#. Label of a Select field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Backup Frequency"
-msgstr "Frekuensi Pencadangan"
-
-#. Label of a Select field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Frequency"
-msgstr "Frekuensi Pencadangan"
-
-#: desk/page/backups/backups.py:99
+#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "Pekerjaan cadangan sudah dalam antrian. Anda akan menerima surel dengan tautan unduh"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup public and private files along with the database."
-msgstr "Cadangkan file publik dan pribadi bersama dengan database."
-
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the backups_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the backups_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Backups"
-msgstr "Cadangan"
+msgstr ""
+
+#. Label of the backups_size (Float) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Backups (MB)"
+msgstr ""
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
+msgid "Bad Cron Expression"
+msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding"
msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding (legacy)"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner"
-msgstr "Spanduk"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner HTML"
-msgstr "Spanduk HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the banner_image (Attach Image) field in DocType 'User'
+#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Banner Image"
-msgstr "Spanduk Gambar"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Banner Image"
-msgstr "Spanduk Gambar"
+msgstr ""
#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner is above the Top Menu Bar."
-msgstr "Spanduk di atas Menu Atas."
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Bar"
-msgstr "Bar"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Barcode"
-msgstr "Kode batang"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Barcode"
-msgstr "Kode batang"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Barcode"
msgstr "Kode batang"
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Base Distinguished Name (DN)"
-msgstr "Dasar Pembedaan Nama (DN)"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
+#. Label of the base_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Base URL"
-msgstr "URL dasar"
+msgstr ""
-#: printing/page/print/print.js:266 printing/page/print/print.js:320
-msgid "Based On"
-msgstr "Berdasarkan"
-
-#. Label of a Link field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#. Label of the based_on (Link) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+#: frappe/printing/page/print/print.js:273
+#: frappe/printing/page/print/print.js:327
msgid "Based On"
msgstr "Berdasarkan"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Based on Field"
-msgstr "Berdasarkan Bidang"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the user (Link) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Based on Permissions For User"
-msgstr "Berdasarkan Izin Untuk Pengguna"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "Dasar"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the section_break_3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Basic Info"
msgstr ""
+#: frappe/public/js/frappe/ui/filters/filter.js:63
+#: frappe/public/js/frappe/ui/filters/filter.js:69
+msgid "Before"
+msgstr ""
+
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Cancel"
-msgstr "Sebelum Batalkan"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Delete"
-msgstr "Sebelum Hapus"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Insert"
-msgstr "Sebelum Memasukkan"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Print"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save"
-msgstr "Sebelum Menyimpan"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save (Submitted Document)"
-msgstr "Sebelum Menyimpan (Dokumen yang Dikirim)"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Submit"
-msgstr "Sebelum Kirim"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Validate"
msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Beginner"
-msgstr "Pemula"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:29
+#: frappe/public/js/frappe/form/link_selector.js:29
msgid "Beginning with"
msgstr "Dimulai dengan"
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the beta (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Beta"
-msgstr "beta"
+msgstr ""
-#: utils/password_strength.py:75
+#: frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Lebih baik tambahkan beberapa huruf atau gunakan kata lain"
-#: public/js/frappe/ui/filters/filter.js:27
+#: frappe/public/js/frappe/ui/filters/filter.js:27
msgid "Between"
msgstr "Antara"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "Penagihan"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
+#: frappe/public/js/frappe/form/templates/contact_list.html:27
+msgid "Billing Contact"
+msgstr ""
+
+#. Label of the binary_logging (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Binary Logging"
+msgstr ""
+
+#. Label of the bio (Small Text) field in DocType 'User'
+#. Label of the bio (Small Text) field in DocType 'About Us Team Member'
+#. Label of the bio (Small Text) field in DocType 'Blogger'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
msgid "Bio"
-msgstr "Bio"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Bio"
-msgstr "Bio"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Bio"
-msgstr "Bio"
-
-#. Label of a Date field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the birth_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Birth Date"
-msgstr "Tanggal lahir"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:41
+#: frappe/public/js/frappe/data_import/data_exporter.js:41
msgid "Blank Template"
msgstr "Templat Kosong"
#. Name of a DocType
-#: core/doctype/block_module/block_module.json
+#: frappe/core/doctype/block_module/block_module.json
msgid "Block Module"
msgstr "Blok Modul"
-#. Label of a Table field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the block_modules (Table) field in DocType 'Module Profile'
+#. Label of the block_modules (Table) field in DocType 'User'
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "Blok Modul"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Block Modules"
-msgstr "Blok Modul"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the blocked (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Blocked"
-msgstr "Diblokir"
+msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/doctype/blog_post/blog_post.py:239
-#: website/doctype/blog_post/templates/blog_post.html:13
-#: website/doctype/blog_post/templates/blog_post_list.html:2
-#: website/doctype/blog_post/templates/blog_post_list.html:11
-#: website/workspace/website/website.json
+#: frappe/website/doctype/blog_post/blog_post.py:245
+#: frappe/website/doctype/blog_post/templates/blog_post.html:13
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11
+#: frappe/website/workspace/website/website.json
msgid "Blog"
-msgstr "Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-msgid "Blog Category"
-msgstr "Kategori Blog"
-
+#. Label of the blog_category (Link) field in DocType 'Blog Post'
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Category"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Category"
msgstr "Kategori Blog"
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blog Category"
-msgstr "Kategori Blog"
-
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the blog_intro (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Blog Intro"
-msgstr "Pendahuluan Blog"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Introduction"
-msgstr "Pendahuluan Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_post/blog_post.json
-msgid "Blog Post"
-msgstr "Posting Blog"
-
-#. Linked DocType in Blog Category's connections
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Blog Post"
-msgstr "Posting Blog"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Post"
-msgid "Blog Post"
-msgstr "Posting Blog"
-
-#. Linked DocType in Blogger's connections
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Post"
msgstr "Posting Blog"
#. Name of a DocType
-#: website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Settings"
msgstr "Pengaturan Blog"
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_title (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Title"
-msgstr "Judul Blog"
+msgstr ""
#. Name of a role
+#. Label of the blogger (Link) field in DocType 'Blog Post'
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blogger"
-msgstr "Blogger"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/workspace/website/website.json
msgid "Blogger"
-msgstr "Blogger"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Subtitle of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Blogs, Website View Tracking, and more."
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Blue"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Blue"
+msgstr "Biru"
+
+#. Label of the bold (Check) field in DocType 'DocField'
+#. Label of the bold (Check) field in DocType 'Custom Field'
+#. Label of the bold (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Bold"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Bold"
-msgstr "Mencolok"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Bold"
-msgstr "Mencolok"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Bold"
-msgstr "Mencolok"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Bot"
-msgstr "Bot"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:126
+#: frappe/printing/page/print_format_builder/print_format_builder.js:126
msgid "Both DocType and Name required"
msgstr "Kedua DOCTYPE dan Nama diperlukan"
+#: frappe/templates/includes/login/login.js:24
+#: frappe/templates/includes/login/login.js:96
+msgid "Both login and password required"
+msgstr ""
+
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Bawah"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
msgid "Bottom Center"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Bottom Center"
-msgstr ""
-
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247
msgid "Bottom Left"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Bottom Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
msgid "Bottom Right"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Bounced"
-msgstr "Memantul"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand"
msgstr "Merek"
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "Merek HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "Image Merek"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid ""
-"Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
msgstr ""
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
+#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Breadcrumbs"
-msgstr "Tepung Roti"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Breadcrumbs"
-msgstr "Tepung Roti"
-
-#: website/doctype/blog_post/templates/blog_post_list.html:18
-#: website/doctype/blog_post/templates/blog_post_list.html:21
+#. Label of the browse_by_category (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Browse by category"
msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Browse by category"
+#. Label of the browser (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:36
+msgid "Browser"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:36
-msgid "Browser"
-msgstr "Browser"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Browser"
-msgstr "Browser"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the browser_version (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Browser Version"
-msgstr "Versi Peramban"
+msgstr ""
-#: public/js/frappe/desk.js:19
+#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
msgstr "Browser tidak didukung"
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the brute_force_security (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Brute Force Security"
-msgstr "Brute Force Security"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Bucket Name"
-msgstr "Nama Keranjang"
-
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66
-msgid "Bucket {0} not found."
+#. Label of the bufferpool_size (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Bufferpool Size"
msgstr ""
#. Name of a Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "Build"
msgstr ""
-#: workflow/doctype/workflow/workflow_list.js:18
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:18
msgid "Build {0}"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/templates/includes/footer/footer_powered.html:1
+msgid "Built on {0}"
+msgstr ""
+
+#. Label of the bulk_actions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bulk Actions"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:142
+#: frappe/core/doctype/user_permission/user_permission_list.js:142
msgid "Bulk Delete"
msgstr "Hapus Massal"
-#: public/js/frappe/list/bulk_operations.js:256
+#: frappe/public/js/frappe/list/bulk_operations.js:321
msgid "Bulk Edit"
msgstr ""
-#: public/js/frappe/form/grid.js:1151
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "Sunting Massal {0}"
-#. Name of a DocType
-#: desk/doctype/bulk_update/bulk_update.json
-msgid "Bulk Update"
-msgstr "Perbarui Massal"
+#: frappe/desk/reportview.py:602
+msgid "Bulk Operation Failed"
+msgstr ""
+
+#: frappe/desk/reportview.py:606
+msgid "Bulk Operation Successful"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:131
+msgid "Bulk PDF Export"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Bulk Update"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Bulk Update"
msgstr "Perbarui Massal"
-#: model/workflow.py:253
+#: frappe/model/workflow.py:254
msgid "Bulk approval only support up to 500 documents."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:57
+#: frappe/desk/doctype/bulk_update/bulk_update.py:56
msgid "Bulk operation is enqueued in background."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:70
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: model/workflow.py:243
+#: frappe/model/workflow.py:243
msgid "Bulk {0} is enqueued in background."
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Button"
-msgstr "Tombol"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Button"
-msgstr "Tombol"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Tombol"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_gradients (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Gradien Tombol"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Tombol Rounded Corners"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_shadows (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Bayangan Tombol"
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "By \"Naming Series\" field"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
msgstr ""
-#: website/doctype/web_page/web_page.js:111
-#: website/doctype/web_page/web_page.js:118
+#: frappe/website/doctype/web_page/web_page.js:111
+#: frappe/website/doctype/web_page/web_page.js:118
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "Secara default, judul digunakan sebagai judul meta, menambahkan nilai di sini akan menimpanya."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By fieldname"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By fieldname"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By script"
msgstr ""
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By script"
-msgstr ""
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Bypass Restricted IP Address Periksa Jika Two Factor Auth Diaktifkan"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "Bypass Two Factor Auth untuk pengguna yang masuk dari IP Address terbatas"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "Bypass restricted IP Address check Jika Two Factor Auth Diaktifkan"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "C5E"
msgstr ""
-#: templates/print_formats/standard_macros.html:212
+#: frappe/templates/print_formats/standard_macros.html:220
msgid "CANCELLED"
msgstr "DIBATALKAN"
-#: public/js/frappe/views/communication.js:71
+#. Label of the cc (Code) field in DocType 'Communication'
+#. Label of the cc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:77
+msgctxt "Email Recipients"
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "CC"
-msgstr "CC"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the cmd (Data) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "CMD"
msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "CSS"
-msgstr "CSS"
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "COLOR PICKER"
+msgstr ""
-#. Label of a Code field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
+#. Label of the css_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the css (Code) field in DocType 'Print Style'
+#. Label of the css (Code) field in DocType 'Web Page'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "CSS"
-msgstr "CSS"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "CSS"
-msgstr "CSS"
-
-#. Label of a Small Text field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the css_class (Small Text) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "CSS Class"
-msgstr "Kelas CSS"
+msgstr ""
#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "CSS selector for the element you want to highlight."
msgstr ""
-#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "CSV"
-msgstr "CSV"
-
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "CSV"
-msgstr "CSV"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_label (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA Label"
-msgstr "Label CTA"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_url (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA URL"
-msgstr "URL CTA"
+msgstr ""
-#: sessions.py:31
+#. Label of the cache_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Cache"
+msgstr ""
+
+#: frappe/sessions.py:35
msgid "Cache Cleared"
msgstr "Cache Dihapus"
-#: public/js/frappe/ui/toolbar/awesome_bar.js:181
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
msgid "Calculate"
msgstr "Menghitung"
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Event"
-msgid "Calendar"
-msgstr "Kalender"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Calendar"
-msgstr "Kalender"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Calendar"
-msgstr "Kalender"
+msgstr ""
-#. Label of a Data field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr "Nama Kalender"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/public/js/frappe/list/base_list.js:207
msgid "Calendar View"
msgstr "Tampilan kalender"
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Calendar View"
-msgstr "Tampilan kalender"
-
-#: contacts/doctype/contact/contact.js:50
-msgid "Call"
-msgstr "Panggilan Telpon"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/contacts/doctype/contact/contact.js:55
+#: frappe/desk/doctype/event/event.json
msgid "Call"
msgstr "Panggilan Telpon"
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action"
-msgstr "Panggilan untuk bertindak"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action URL"
-msgstr "URL Ajakan Bertindak"
+msgstr ""
-#. Label of a Section Break field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_section (Section Break) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Call to Action"
msgstr ""
-#. Label of a Small Text field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_message (Small Text) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Message"
-msgstr "Pesan Panggilan Balik"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr "Judul Panggilan Balik"
+msgstr ""
-#: public/js/frappe/ui/capture.js:326
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
+#: frappe/public/js/frappe/ui/capture.js:334
msgid "Camera"
msgstr "Kamera"
-#: public/js/frappe/utils/utils.js:1711
-#: website/report/website_analytics/website_analytics.js:39
+#. Label of the campaign (Data) field in DocType 'Web Page View'
+#: frappe/public/js/frappe/utils/utils.js:1729
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
-msgstr ""
+msgstr "Promosi"
-#. Label of a Link field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Small Text field in DocType 'Marketing Campaign'
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgctxt "Marketing Campaign"
+#. Label of the campaign_description (Small Text) field in DocType 'UTM
+#. Campaign'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Campaign Description (Optional)"
msgstr ""
-#: custom/doctype/custom_field/custom_field.py:360
+#: frappe/public/js/frappe/form/templates/set_sharing.html:4
+#: frappe/public/js/frappe/form/templates/set_sharing.html:50
+msgid "Can Read"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:7
+#: frappe/public/js/frappe/form/templates/set_sharing.html:53
+msgid "Can Share"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:6
+#: frappe/public/js/frappe/form/templates/set_sharing.html:52
+msgid "Can Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:5
+#: frappe/public/js/frappe/form/templates/set_sharing.html:51
+msgid "Can Write"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: core/doctype/doctype/doctype.py:1114
+#: frappe/core/doctype/doctype/doctype.py:1163
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
#. Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#: frappe/core/doctype/user_type/user_type.json
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: model/rename_doc.py:367
+#: frappe/desk/form/document_follow.py:48
+msgid "Can't follow since changes are not tracked."
+msgstr ""
+
+#: frappe/model/rename_doc.py:366
msgid "Can't rename {0} to {1} because {0} doesn't exist."
msgstr ""
-#: core/doctype/doctype/doctype_list.js:113
-#: public/js/frappe/form/reminders.js:54
+#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
+#. Label of the cancel (Check) field in DocType 'DocPerm'
+#. Label of the cancel (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/reminders.js:54
msgid "Cancel"
msgstr "Batalkan"
-#: public/js/frappe/list/list_view.js:1889
+#: frappe/public/js/frappe/list/list_view.js:2057
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Batalkan"
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Cancel"
-msgstr "Batalkan"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Cancel"
-msgstr "Batalkan"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Cancel"
-msgstr "Batalkan"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Cancel"
-msgstr "Batalkan"
-
-#: public/js/frappe/ui/messages.js:68
+#: frappe/public/js/frappe/ui/messages.js:68
msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Batalkan"
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Cancel"
-msgstr "Batalkan"
-
-#: public/js/frappe/form/form.js:998
+#: frappe/public/js/frappe/form/form.js:979
msgid "Cancel All"
msgstr ""
-#: public/js/frappe/form/form.js:985
+#: frappe/public/js/frappe/form/form.js:966
msgid "Cancel All Documents"
msgstr "Batalkan Semua Dokumen"
-#: email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
-#: public/js/frappe/list/list_view.js:1894
+#: frappe/public/js/frappe/list/list_view.js:2062
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Batalkan {0} dokumen?"
-#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78
-#: public/js/frappe/ui/filters/filter.js:495
-msgid "Cancelled"
-msgstr "Dibatalkan"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Cancelled"
-msgstr "Dibatalkan"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Cancelled"
-msgstr "Dibatalkan"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Cancelled"
-msgstr "Dibatalkan"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Cancelled"
-msgstr "Dibatalkan"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/form/save.py:64
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/model/indicator.js:78
+#: frappe/public/js/frappe/ui/filters/filter.js:540
msgid "Cancelled"
msgstr "Dibatalkan"
-#: core/doctype/deleted_document/deleted_document.py:51
+#: frappe/core/doctype/deleted_document/deleted_document.py:52
msgid "Cancelled Document restored as Draft"
msgstr "Dokumen yang Dibatalkan dipulihkan sebagai Konsep"
-#: public/js/frappe/form/save.js:13
+#: frappe/public/js/frappe/form/save.js:13
msgctxt "Freeze message while cancelling a document"
msgid "Cancelling"
msgstr "Membatalkan"
-#: desk/form/linked_with.py:379
+#: frappe/desk/form/linked_with.py:381
msgid "Cancelling documents"
msgstr "Membatalkan dokumen"
-#: desk/doctype/bulk_update/bulk_update.py:94
+#: frappe/desk/doctype/bulk_update/bulk_update.py:91
msgid "Cancelling {0}"
msgstr "Membatalkan {0}"
-#: core/doctype/prepared_report/prepared_report.py:244
+#: frappe/core/doctype/prepared_report/prepared_report.py:265
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: client.py:461
+#: frappe/client.py:452
msgid "Cannot Fetch Values"
msgstr ""
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "Cannot Remove"
msgstr "Tidak bisa Hapus"
-#: model/base_document.py:1034
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
-#: core/doctype/file/file.py:574
+#: frappe/core/doctype/file/file.py:621
msgid "Cannot access file path {0}"
msgstr ""
-#: public/js/workflow_builder/utils.js:183
+#: frappe/public/js/workflow_builder/utils.js:183
msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:112
+#: frappe/workflow/doctype/workflow/workflow.py:109
msgid "Cannot cancel before submitting. See Transition {0}"
msgstr "Tidak dapat membatalkan sebelum mengirimkan. Lihat Transition {0}"
-#: public/js/frappe/list/bulk_operations.js:229
+#: frappe/public/js/frappe/list/bulk_operations.js:294
msgid "Cannot cancel {0}."
msgstr ""
-#: model/document.py:838
+#: frappe/model/document.py:1013
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: model/document.py:852
+#: frappe/model/document.py:1027
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
-#: public/js/workflow_builder/utils.js:170
+#: frappe/public/js/workflow_builder/utils.js:170
msgid "Cannot change state of Cancelled Document ({0} State)"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:101
+#: frappe/workflow/doctype/workflow/workflow.py:98
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Tidak dapat mengubah keadaan Dibatalkan Dokumen. Transisi baris {0}"
-#: core/doctype/doctype/doctype.py:1104
+#: frappe/core/doctype/doctype/doctype.py:1153
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
-#: core/doctype/communication/communication.py:193
+#: frappe/core/doctype/communication/communication.py:169
msgid "Cannot create a {0} against a child document: {1}"
msgstr "tidak dapat membuat {0} terhadap dokumen anak: {1}"
-#: desk/doctype/workspace/workspace.py:250
+#: frappe/desk/doctype/workspace/workspace.py:272
msgid "Cannot create private workspace of other users"
msgstr ""
-#: core/doctype/file/file.py:151
+#: frappe/core/doctype/file/file.py:153
msgid "Cannot delete Home and Attachments folders"
msgstr "Tidak dapat menghapus Rumah dan Lampiran folder"
-#: model/delete_doc.py:367
+#: frappe/model/delete_doc.py:379
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Tidak dapat menghapus atau membatalkan karena {0} {1} dikaitkan dengan {2} {3} {4}"
-#: desk/doctype/workspace/workspace.py:417
-msgid "Cannot delete private workspace of other users"
-msgstr ""
-
-#: desk/doctype/workspace/workspace.py:410
-msgid "Cannot delete public workspace without Workspace Manager role"
-msgstr ""
-
-#: custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:369
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Tidak dapat menghapus tindakan standar. Anda bisa menyembunyikannya jika mau"
-#: custom/doctype/customize_form/customize_form.js:328
+#: frappe/custom/doctype/customize_form/customize_form.js:391
msgid "Cannot delete standard document state."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:276
+#: frappe/custom/doctype/customize_form/customize_form.js:321
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:298
+#: frappe/public/js/form_builder/components/Field.vue:38
+#: frappe/public/js/form_builder/components/Section.vue:117
+#: frappe/public/js/form_builder/components/Section.vue:190
+#: frappe/public/js/form_builder/components/Tabs.vue:56
+msgid "Cannot delete standard field. You can hide it if you want"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:347
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "Tidak dapat menghapus link standar. Anda bisa menyembunyikannya jika mau"
-#: custom/doctype/customize_form/customize_form.js:268
+#: frappe/custom/doctype/customize_form/customize_form.js:313
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:171
+#: frappe/public/js/frappe/list/bulk_operations.js:215
msgid "Cannot delete {0}"
msgstr "Tidak dapat menghapus {0}"
-#: utils/nestedset.py:302
+#: frappe/utils/nestedset.py:299
msgid "Cannot delete {0} as it has child nodes"
msgstr "Tidak dapat menghapus {0} karena memiliki node anak"
-#: desk/doctype/dashboard/dashboard.py:49
+#: frappe/desk/doctype/dashboard/dashboard.py:48
msgid "Cannot edit Standard Dashboards"
msgstr ""
-#: email/doctype/notification/notification.py:120
+#: frappe/email/doctype/notification/notification.py:192
msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it"
msgstr "Tidak dapat mengedit Pemberitahuan Standar. Untuk mengedit, nonaktifkan ini dan gandakan"
-#: desk/doctype/dashboard_chart/dashboard_chart.py:388
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388
msgid "Cannot edit Standard charts"
msgstr ""
-#: core/doctype/report/report.py:68
+#: frappe/core/doctype/report/report.py:72
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "tidak dapat mengedit laporan standar. Silakan menggandakan dan membuat laporan baru"
-#: model/document.py:858
+#: frappe/model/document.py:1033
msgid "Cannot edit cancelled document"
msgstr "Tidak dapat mengedit dokumen dibatalkan"
-#: desk/doctype/dashboard_chart/dashboard_chart.js:378
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378
msgid "Cannot edit filters for standard charts"
msgstr "Tidak dapat mengedit filter untuk bagan standar"
-#: client.py:166
+#: frappe/desk/doctype/number_card/number_card.js:277
+#: frappe/desk/doctype/number_card/number_card.js:364
+msgid "Cannot edit filters for standard number cards"
+msgstr ""
+
+#: frappe/client.py:166
msgid "Cannot edit standard fields"
msgstr "Tidak dapat mengedit bidang standar"
-#: automation/doctype/auto_repeat/auto_repeat.py:124
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: core/doctype/file/file.py:249
+#: frappe/core/doctype/file/file.py:252
msgid "Cannot find file {} on disk"
msgstr ""
-#: core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:561
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: printing/page/print/print.js:817
+#: frappe/printing/page/print/print.js:844
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Tidak dapat memetakan banyak printer ke format cetak tunggal."
-#: model/document.py:926
+#: frappe/public/js/frappe/form/grid.js:1132
+msgid "Cannot import table with more than 5000 rows."
+msgstr ""
+
+#: frappe/model/document.py:1101
msgid "Cannot link cancelled document: {0}"
msgstr "Tidak dapat menghubungkan dokumen dibatalkan: {0}"
-#: model/mapper.py:184
+#: frappe/model/mapper.py:175
msgid "Cannot map because following condition fails:"
msgstr ""
-#: core/doctype/data_import/importer.py:924
+#: frappe/core/doctype/data_import/importer.py:971
msgid "Cannot match column {0} with any field"
msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun"
-#: public/js/frappe/form/grid_row.js:172
+#: frappe/public/js/frappe/form/grid_row.js:175
msgid "Cannot move row"
msgstr "Tidak dapat memindahkan baris"
-#: public/js/frappe/views/reports/report_view.js:865
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "Tidak dapat menghapus bidang ID"
-#: email/doctype/notification/notification.py:136
-msgid "Cannot set Notification on Document Type {0}"
-msgstr "Tidak dapat mengatur Pemberitahuan pada Jenis Dokumen {0}"
+#: frappe/core/page/permission_manager/permission_manager.py:132
+msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
+msgstr ""
-#: core/doctype/docshare/docshare.py:69
+#: frappe/email/doctype/notification/notification.py:209
+msgid "Cannot set Notification with event {0} on Document Type {1}"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:67
msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:226
+#: frappe/public/js/frappe/list/bulk_operations.js:291
msgid "Cannot submit {0}."
msgstr ""
-#: desk/doctype/workspace/workspace.py:351
-msgid "Cannot update private workspace of other users"
-msgstr ""
-
-#: desk/doctype/bulk_update/bulk_update.js:26
-#: public/js/frappe/list/bulk_operations.js:301
+#: frappe/desk/doctype/bulk_update/bulk_update.js:26
+#: frappe/public/js/frappe/list/bulk_operations.js:366
msgid "Cannot update {0}"
msgstr "Tidak dapat memperbarui {0}"
-#: model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "tidak bisa menggunakan sub-query dalam rangka oleh"
-#: model/db_query.py:1143
+#: frappe/model/db_query.py:1147
msgid "Cannot use {0} in order/group by"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:232
+#: frappe/public/js/frappe/list/bulk_operations.js:297
msgid "Cannot {0} {1}."
msgstr ""
-#: utils/password_strength.py:185
+#: frappe/utils/password_strength.py:181
msgid "Capitalization doesn't help very much."
msgstr "Kapitalisasi tidak membantu sangat banyak."
-#: public/js/frappe/ui/capture.js:286
+#: frappe/public/js/frappe/ui/capture.js:294
msgid "Capture"
msgstr ""
-#. Label of a Link field in DocType 'Number Card Link'
-#: desk/doctype/number_card_link/number_card_link.json
-msgctxt "Number Card Link"
+#. Label of the card (Link) field in DocType 'Number Card Link'
+#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr "Kartu"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Card Break"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:262
msgid "Card Label"
msgstr "Label Kartu"
-#: public/js/frappe/widgets/widget_dialog.js:227
+#: frappe/public/js/frappe/widgets/widget_dialog.js:262
msgid "Card Links"
msgstr ""
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the cards (Table) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Cards"
-msgstr "Kartu-kartu"
+msgstr ""
-#: public/js/frappe/views/interaction.js:72
+#. Label of the category (Data) field in DocType 'Desktop Icon'
+#. Label of the category (Link) field in DocType 'Help Article'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/views/interaction.js:72
+#: frappe/website/doctype/help_article/help_article.json
msgid "Category"
msgstr "Kategori"
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Category"
-msgstr "Kategori"
-
-#. Label of a Link field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Category"
-msgstr "Kategori"
-
-#. Label of a Text field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_description (Text) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr "Kategori Deskripsi"
+msgstr ""
-#. Label of a Data field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_name (Data) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "Kategori Nama"
-
-#: utils/data.py:1491
-msgid "Cent"
-msgstr "Sen"
+msgstr ""
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Center"
-msgstr "Pusat"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "Pusat"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:82
+#: frappe/core/page/permission_manager/permission_manager_help.html:16
+msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
+msgstr ""
+
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:82
msgid "Chain Integrity"
msgstr "Integritas Rantai"
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Chaining Hash"
-msgstr "Chaining Hash"
+msgstr ""
-#: tests/test_translate.py:98
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
+#: frappe/tests/test_translate.py:111
msgid "Change"
msgstr "Perubahan"
-#: tests/test_translate.py:99
+#: frappe/tests/test_translate.py:112
msgctxt "Coins"
msgid "Change"
msgstr "Perubahan"
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38
+msgid "Change Image"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Change Label (via Custom Translation)"
-msgstr "Ganti Label (via Khusus Translation)"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
+msgid "Change Letter Head"
+msgstr ""
+
+#. Label of the change_password (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Ganti kata sandi"
+msgstr ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:27
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:51
-#: desk/page/user_profile/user_profile_controller.js:59
-msgid "Change User"
-msgstr "Ganti pengguna"
-
#. Description of the 'Update Series Counter' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Change the starting / current sequence number of an existing series.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Change the starting / current sequence number of an existing series.
\n\n"
"Warning: Incorrectly updating counters can prevent documents from getting created. "
msgstr ""
-#: email/doctype/email_domain/email_domain.js:5
+#. Label of the changed_at (Datetime) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed at"
+msgstr ""
+
+#. Label of the changed_by (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed by"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Changelog Feed"
+msgstr ""
+
+#. Label of the changed_values (HTML) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changes"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.js:5
msgid "Changing any setting will reflect on all the email accounts associated with this domain."
msgstr ""
-#: core/doctype/system_settings/system_settings.js:62
+#: frappe/core/doctype/system_settings/system_settings.js:67
msgid "Changing rounding method on site with data can result in unexpected behaviour."
msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the channel (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Channel"
-msgstr "Saluran"
+msgstr ""
-#. Label of a Link field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Chart"
msgstr "Grafik"
-#. Label of a Code field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
+#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr "Konfigurasi Grafik"
+msgstr ""
-#. Label of a Data field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
+#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/public/js/frappe/views/reports/query_report.js:289
+#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr "Nama Bagan"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Chart'
-#: desk/doctype/workspace_chart/workspace_chart.json
-msgctxt "Workspace Chart"
-msgid "Chart Name"
-msgstr "Nama Bagan"
-
-#. Label of a Code field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the chart_options (Code) field in DocType 'Dashboard'
+#. Label of the chart_options_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr "Opsi Bagan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Options"
-msgstr "Opsi Bagan"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the source (Link) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr "Sumber Bagan"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:479
+#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "Jenis bagan"
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Type"
-msgstr "Jenis bagan"
-
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the charts (Table) field in DocType 'Dashboard'
+#. Label of the charts (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr "Grafik"
-
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Charts"
-msgstr "Grafik"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Chat"
-msgstr "Obrolan"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Check"
-msgstr "Memeriksa"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Check"
-msgstr "Memeriksa"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Check"
-msgstr "Memeriksa"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Check"
-msgstr "Memeriksa"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Check"
-msgstr "Memeriksa"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Check"
-msgstr "Memeriksa"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "Memeriksa"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:95
+#: frappe/integrations/doctype/webhook/webhook.py:95
msgid "Check Request URL"
msgstr "Periksa Permintaan URL"
-#: email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
+msgid "Check columns to select, drag to set order."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:442
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454
msgid "Check the Error Log for more information: {0}"
msgstr "Periksa Log Kesalahan untuk informasi lebih lanjut: {0}"
-#: website/doctype/website_settings/website_settings.js:147
+#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "Centang ini jika Anda tidak ingin pengguna mendaftar akun di situs Anda. Pengguna tidak akan mendapatkan akses meja kecuali Anda menyediakannya secara eksplisit."
#. Description of the 'User must always select' (Check) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this."
-msgstr "Periksa ini jika Anda ingin untuk memaksa pengguna untuk memilih seri sebelum menyimpan. Tidak akan ada default jika Anda memeriksa ini."
-
-#: email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
msgstr ""
-#: public/js/frappe/desk.js:214
+#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Memeriksa satu saat"
-#: website/doctype/website_settings/website_settings.js:140
+#: frappe/website/doctype/website_settings/website_settings.js:140
msgid "Checking this will enable tracking page views for blogs, web pages, etc."
msgstr "Memeriksa ini akan mengaktifkan pelacakan tampilan halaman untuk blog, halaman web, dll."
#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in
#. DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "Memeriksa ini akan menyembunyikan jenis dokumen dan kartu laporan khusus di bagian Tautan"
+msgstr ""
-#: website/doctype/web_page/web_page.js:78
+#: frappe/website/doctype/web_page/web_page.js:78
msgid "Checking this will publish the page on your website and it'll be visible to everyone."
msgstr "Memeriksa ini akan menerbitkan halaman di situs web Anda dan akan terlihat oleh semua orang."
-#: website/doctype/web_page/web_page.js:104
+#: frappe/website/doctype/web_page/web_page.js:104
msgid "Checking this will show a text area where you can write custom javascript that will run on this page."
msgstr "Memeriksa ini akan menampilkan area teks tempat Anda dapat menulis javascript khusus yang akan berjalan di halaman ini."
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the checksum_version (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Checksum Version"
-msgstr "Versi Checksum"
+msgstr ""
-#: www/list.py:85
+#: frappe/www/list.py:85
msgid "Child DocTypes are not allowed"
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the child_doctype (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Child Doctype"
msgstr ""
-#: core/doctype/doctype/doctype.py:1588
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "Child Table {0} for field {1}"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:37
-msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain"
-
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:52
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain"
-#: public/js/frappe/widgets/widget_dialog.js:614
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Pilih Kartu yang Ada atau buat Kartu Baru"
-#: public/js/frappe/views/workspace/workspace.js:1385
+#: frappe/public/js/frappe/views/workspace/workspace.js:571
msgid "Choose a block or continue typing"
msgstr ""
-#: public/js/frappe/form/controls/color.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
+#: frappe/public/js/frappe/form/controls/color.js:5
msgid "Choose a color"
msgstr ""
-#: public/js/frappe/form/controls/icon.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:21
+#: frappe/public/js/frappe/form/controls/icon.js:5
msgid "Choose an icon"
msgstr ""
#. Description of the 'Two Factor Authentication method' (Select) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Pilih metode otentikasi yang akan digunakan oleh semua pengguna"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
msgstr "Kota"
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the city (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "City/Town"
-msgstr "Kota / Kota"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:12
+#: frappe/core/doctype/recorder/recorder_list.js:12
+#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Clear"
msgstr "Bersih"
-#: public/js/frappe/views/communication.js:325
+#: frappe/public/js/frappe/views/communication.js:435
msgid "Clear & Add Template"
msgstr ""
-#: public/js/frappe/views/communication.js:98
+#: frappe/public/js/frappe/views/communication.js:114
msgid "Clear & Add template"
msgstr ""
-#: public/js/frappe/ui/keyboard.js:275
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
+msgid "Clear All"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1963
+msgctxt "Button in list view actions menu"
+msgid "Clear Assignment"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:287
msgid "Clear Cache and Reload"
msgstr "Bersihkan Cache dan Reload"
-#: core/doctype/error_log/error_log_list.js:12
+#: frappe/core/doctype/error_log/error_log_list.js:12
msgid "Clear Error Logs"
msgstr "Log Kesalahan jelas"
-#. Label of a Int field in DocType 'Logs To Clear'
-#: core/doctype/logs_to_clear/logs_to_clear.json
-msgctxt "Logs To Clear"
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Clear Filters"
+msgstr ""
+
+#. Label of the days (Int) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Clear Logs After (days)"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:144
+#: frappe/core/doctype/user_permission/user_permission_list.js:144
msgid "Clear User Permissions"
msgstr "Hapus Izin Pengguna"
-#: public/js/frappe/views/communication.js:326
+#: frappe/public/js/frappe/views/communication.js:436
msgid "Clear the email message and add the template"
msgstr ""
-#: website/doctype/web_page/web_page.py:214
+#: frappe/website/doctype/web_page/web_page.py:215
msgid "Clearing end date, as it cannot be in the past for published pages."
msgstr "Menghapus tanggal akhir, karena tidak boleh di masa lalu untuk halaman yang dipublikasikan."
-#: website/doctype/web_form/templates/web_form.html:144
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194
+msgid "Click On Customize to add your first widget"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:147
msgid "Click here"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Klik di sini untuk memverifikasi"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
+msgid "Click on a file to select it."
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:46
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Klik pada Otorisasi Google Drive Access untuk mengotorisasi Google Drive Access."
-
-#: templates/emails/login_with_email_link.html:19
+#: frappe/templates/emails/login_with_email_link.html:19
msgid "Click on the button to log in to {0}"
msgstr ""
-#: templates/emails/data_deletion_approval.html:2
+#: frappe/templates/emails/data_deletion_approval.html:2
msgid "Click on the link below to approve the request"
msgstr "Klik tautan di bawah untuk menyetujui permintaan"
-#: templates/emails/new_user.html:7
+#: frappe/templates/emails/new_user.html:7
msgid "Click on the link below to complete your registration and set a new password"
msgstr "Klik link di bawah ini untuk melengkapi pendaftaran Anda dan mengatur sandi baru"
-#: templates/emails/download_data.html:3
+#: frappe/templates/emails/download_data.html:3
msgid "Click on the link below to download your data"
msgstr "Klik tautan di bawah untuk mengunduh data Anda"
-#: templates/emails/delete_data_confirmation.html:4
+#: frappe/templates/emails/delete_data_confirmation.html:4
msgid "Click on the link below to verify your request"
msgstr "Klik tautan di bawah untuk memverifikasi permintaan Anda"
-#: integrations/doctype/google_calendar/google_calendar.py:101
-#: integrations/doctype/google_contacts/google_contacts.py:40
-#: integrations/doctype/google_drive/google_drive.py:52
-#: website/doctype/website_settings/website_settings.py:161
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
+#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "Klik pada {0} untuk menghasilkan Refresh Token."
-#: email/doctype/auto_email_report/auto_email_report.js:96
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
+#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
+#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
msgstr "Klik tabel untuk mengedit"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
+#: frappe/desk/doctype/number_card/number_card.js:402
+msgid "Click to Set Dynamic Filters"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
+#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/website/doctype/web_form/web_form.js:262
+msgid "Click to Set Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:711
+msgid "Click to sort by {0}"
+msgstr ""
+
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Clicked"
-msgstr "Diklik"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the client (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the client (Link) field in DocType 'OAuth Bearer Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Client"
-msgstr "Client (Nasabah)"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Client"
-msgstr "Client (Nasabah)"
-
-#. Label of a Section Break field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the client_code_section (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "Kode Klien"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_client_credentials_section (Section Break) field in DocType
+#. 'Connected App'
+#. Label of the client_credentials (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr "Kredensial klien"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Credentials"
-msgstr "Kredensial klien"
-
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
+#. Label of the client_id (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr "ID klien"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client ID"
-msgstr "ID klien"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_id (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Client Id"
msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_information (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Informasi klien"
+msgstr ""
-#. Name of a DocType
-#: custom/doctype/client_script/client_script.json
-#: website/doctype/web_page/web_page.js:103
-msgid "Client Script"
-msgstr "Naskah Klien"
+#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Metadata"
+msgstr ""
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Client Script"
+#. Name of a DocType
+#. Label of the client_script (Code) field in DocType 'DocType Layout'
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/website/doctype/web_page/web_page.js:103
msgid "Client Script"
msgstr "Naskah Klien"
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Client Script"
-msgstr "Naskah Klien"
-
-#. Label of a Code field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Client Script"
-msgstr "Naskah Klien"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Client Script"
-msgstr "Naskah Klien"
-
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Client Script"
-msgstr "Naskah Klien"
-
-#. Label of a Password field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_secret (Password) field in DocType 'Connected App'
+#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
+#. Label of the client_secret (Password) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "Rahasia Klien"
+msgstr ""
-#. Label of a Password field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Client Secret"
-msgstr "Rahasia Klien"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Basic"
+msgstr ""
-#. Label of a Password field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Secret"
-msgstr "Rahasia Klien"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client Secret Post"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Client URI"
+msgstr ""
+
+#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
-msgstr "URL klien"
+msgstr ""
-#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23
-#: public/js/frappe/ui/messages.js:245
+#. Label of the client_script (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Client script"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:39
+#: frappe/desk/doctype/todo/todo.js:23
+#: frappe/public/js/frappe/form/form_tour.js:17
+#: frappe/public/js/frappe/ui/messages.js:251
+#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Tutup"
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Kondisi Tutup"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+msgid "Close properties"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Closed"
-msgstr "Tertutup"
-
#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Closed"
-msgstr "Tertutup"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Closed"
-msgstr "Tertutup"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
msgid "Closed"
msgstr "Tertutup"
-#: templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Cmd+Enter to add comment"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
-msgid "Code"
-msgstr "Kode"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Code"
-msgstr "Kode"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Code"
-msgstr "Kode"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Code"
-msgstr "Kode"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the code (Data) field in DocType 'Country'
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Kode"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code Challenge"
msgstr ""
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_editor_type (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Code Editor Type"
+msgstr ""
+
+#. Label of the code_challenge_method (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code challenge method"
msgstr ""
-#: public/js/frappe/form/form_tour.js:268
-#: public/js/frappe/widgets/base_widget.js:157
+#: frappe/public/js/frappe/form/form_tour.js:276
+#: frappe/public/js/frappe/ui/sidebar.html:11
+#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Collapse"
msgstr "Jatuh"
-#: public/js/frappe/form/controls/code.js:146
+#: frappe/public/js/frappe/form/controls/code.js:184
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Jatuh"
-#: public/js/frappe/views/treeview.js:121
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
+#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Perkecil Semua"
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible (Check) field in DocType 'DocField'
+#. Label of the collapsible (Check) field in DocType 'Custom Field'
+#. Label of the collapsible (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible"
-msgstr "Collapsible"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible"
-msgstr "Collapsible"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Collapsible"
-msgstr "Collapsible"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible Depends On"
-msgstr "Collapsible Tergantung Pada"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible Depends On"
-msgstr "Collapsible Tergantung Pada"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Collapsible Depends On (JS)"
msgstr ""
-#. Name of a DocType
-#: public/js/frappe/views/reports/query_report.js:1140
-#: public/js/frappe/widgets/widget_dialog.js:505
-#: public/js/frappe/widgets/widget_dialog.js:657
-#: website/doctype/color/color.json
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Color field in DocType 'Color'
-#: website/doctype/color/color.json
-msgctxt "Color"
-msgid "Color"
-msgstr "Warna"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Color"
-msgstr "Warna"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Color field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Color field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Color"
-msgstr "Warna"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Select field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Color field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Color field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
-msgid "Color"
-msgstr "Warna"
-
-#. Label of a Color field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Color"
-msgstr "Warna"
-
+#. Label of the color (Data) field in DocType 'DocType'
+#. Label of the color (Select) field in DocType 'DocType State'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the color (Color) field in DocType 'Dashboard Chart'
+#. Label of the color (Color) field in DocType 'Dashboard Chart Field'
+#. Label of the color (Data) field in DocType 'Desktop Icon'
+#. Label of the color (Color) field in DocType 'Event'
+#. Label of the color (Color) field in DocType 'Number Card'
+#. Label of the color (Color) field in DocType 'ToDo'
+#. Label of the color (Color) field in DocType 'Workspace Shortcut'
+#. Name of a DocType
+#. Label of the color (Color) field in DocType 'Color'
+#. Label of the color (Color) field in DocType 'Social Link Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1232
+#: frappe/public/js/frappe/widgets/widget_dialog.js:546
+#: frappe/public/js/frappe/widgets/widget_dialog.js:694
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Color"
msgstr "Warna"
-#. Label of a Color field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Color"
-msgstr "Warna"
+#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/public/js/form_builder/components/Section.vue:270
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
+msgid "Column"
+msgstr ""
-#: desk/doctype/kanban_board/kanban_board.py:85
+#: frappe/core/doctype/report/boilerplate/controller.py:28
+msgid "Column 1"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:33
+msgid "Column 2"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:84
msgid "Column {0} already exist."
msgstr "Kolom {0} sudah ada."
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Column Break"
-msgstr "Kolom Istirahat"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Column Break"
-msgstr "Kolom Istirahat"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Column Break"
-msgstr "Kolom Istirahat"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Column Break"
-msgstr "Kolom Istirahat"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Column Break"
-msgstr "Kolom Istirahat"
+msgstr ""
-#: core/doctype/data_export/exporter.py:140
+#: frappe/core/doctype/data_export/exporter.py:140
msgid "Column Labels:"
msgstr "Kolom Labels:"
-#: core/doctype/data_export/exporter.py:25
+#. Label of the column_name (Data) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/data_export/exporter.py:25
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Column Name"
msgstr "Kolom Nama"
-#. Label of a Data field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Column Name"
-msgstr "Kolom Nama"
-
-#: desk/doctype/kanban_board/kanban_board.py:44
+#: frappe/desk/doctype/kanban_board/kanban_board.py:45
msgid "Column Name cannot be empty"
msgstr "Nama kolom tidak boleh kosong"
-#: public/js/frappe/form/grid_row.js:593
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Column Width"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:645
msgid "Column width cannot be zero."
msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Columns"
-msgstr "kolom"
+#: frappe/core/doctype/data_import/data_import.js:380
+msgid "Column {0}"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the columns (Int) field in DocType 'DocField'
+#. Label of the columns_section (Section Break) field in DocType 'Report'
+#. Label of the columns (Table) field in DocType 'Report'
+#. Label of the columns (Int) field in DocType 'Custom Field'
+#. Label of the columns (Int) field in DocType 'Customize Form Field'
+#. Label of the columns (Table) field in DocType 'Kanban Board'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "kolom"
+msgstr ""
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Columns"
-msgstr "kolom"
-
-#. Label of a Table field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Columns"
-msgstr "kolom"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Columns"
-msgstr "kolom"
-
-#. Label of a HTML Editor field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the columns (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Kolom / Bidang"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:394
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Kolom berdasarkan"
-#: integrations/doctype/oauth_client/oauth_client.py:43
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:57
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
msgstr "Kombinasi Tipe Hibah ( {0} ) dan Tipe Respon ( {1} ) tidak diperbolehkan"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Comm10E"
msgstr ""
#. Name of a DocType
-#: core/doctype/comment/comment.json
-#: public/js/frappe/form/sidebar/assign_to.js:210
-#: templates/includes/comments/comments.html:34
-msgid "Comment"
-msgstr "Komentar"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/version/version_view.html:3
+#: frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:237
+#: frappe/templates/includes/comments/comments.html:34
msgid "Comment"
msgstr "Komentar"
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment"
-msgstr "Komentar"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_by (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr "Komentar By"
+msgstr ""
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_email (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr "Email Komentar"
+msgstr ""
-#. Label of a Select field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_type (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Type"
-msgstr "Komentar Type"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment Type"
-msgstr "Komentar Type"
-
-#: desk/form/utils.py:58
+#: frappe/desk/form/utils.py:58
msgid "Comment can only be edited by the owner"
msgstr "Komentar hanya bisa diedit oleh pemiliknya"
-#. Label of a Int field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the comment_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit"
msgstr ""
#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit per hour"
msgstr ""
-#: model/__init__.py:150 model/meta.py:54 public/js/frappe/model/meta.js:206
-#: public/js/frappe/model/model.js:125
-#: website/doctype/web_form/templates/web_form.html:119
+#: frappe/desk/form/utils.py:75
+msgid "Comment publicity can only be updated by the original author or a System Manager."
+msgstr ""
+
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/model/meta.js:209
+#: frappe/public/js/frappe/model/model.js:135
+#: frappe/website/doctype/web_form/templates/web_form.html:122
msgid "Comments"
msgstr "Komentar"
#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Comments and Communications will be associated with this linked document"
-msgstr "Komentar dan Komunikasi akan terkait dengan dokumen terkait ini"
+msgstr ""
-#: templates/includes/comments/comments.py:38
+#: frappe/templates/includes/comments/comments.py:38
msgid "Comments cannot have links or email addresses"
msgstr "Komentar tidak dapat memiliki tautan atau alamat email"
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Commercial Rounding"
msgstr ""
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the commit (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr "Melakukan"
+msgstr ""
-#. Label of a Check field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
+#. Label of the committed (Check) field in DocType 'Console Log'
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Committed"
msgstr ""
-#: utils/password_strength.py:180
+#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
msgstr "Nama-nama umum dan nama keluarga mudah ditebak."
#. Name of a DocType
-#: core/doctype/communication/communication.json tests/test_translate.py:35
-#: tests/test_translate.py:103
-msgid "Communication"
-msgstr "Komunikasi"
-
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Communication"
-msgstr "Komunikasi"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Communication"
-msgstr "Komunikasi"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Communication"
-msgstr "Komunikasi"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the communication (Data) field in DocType 'Email Flag Queue'
+#. Label of the communication (Link) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119
msgid "Communication"
msgstr "Komunikasi"
#. Name of a DocType
-#: core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/communication_link/communication_link.json
msgid "Communication Link"
msgstr "Tautan Komunikasi"
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Communication"
+#: frappe/core/workspace/build/build.json
msgid "Communication Logs"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_type (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Communication Type"
-msgstr "komunikasi Jenis"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:112
-msgid "Company"
-msgstr "Perusahaan"
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
+msgid "Communication secret not set"
+msgstr ""
#. Name of a DocType
-#: website/doctype/company_history/company_history.json www/about.html:29
+#: frappe/website/doctype/company_history/company_history.json
+#: frappe/www/about.html:29
msgid "Company History"
msgstr "Sejarah Perusahaan"
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the company_introduction (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Pendahuluan Perusahaan"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the company_name (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Company Name"
msgstr "Nama Perusahaan"
-#: core/doctype/server_script/server_script.js:14
-#: custom/doctype/client_script/client_script.js:54
-#: public/js/frappe/utils/diffview.js:27
+#: frappe/core/doctype/server_script/server_script.js:14
+#: frappe/custom/doctype/client_script/client_script.js:54
+#: frappe/public/js/frappe/utils/diffview.js:28
msgid "Compare Versions"
msgstr ""
-#: core/doctype/server_script/server_script.py:134
+#: frappe/core/doctype/server_script/server_script.py:157
msgid "Compilation warning"
msgstr ""
-#: website/doctype/website_theme/website_theme.py:125
+#: frappe/website/doctype/website_theme/website_theme.py:123
msgid "Compiled Successfully"
msgstr "Berhasil dikompilasi"
-#: www/complete_signup.html:21
-msgid "Complete"
-msgstr "Lengkap"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/www/complete_signup.html:21
msgid "Complete"
msgstr "Lengkap"
-#: public/js/frappe/form/sidebar/assign_to.js:176
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:203
msgid "Complete By"
msgstr "Lengkap Dengan"
-#: core/doctype/user/user.py:438 templates/emails/new_user.html:10
+#: frappe/core/doctype/user/user.py:479
+#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Pendaftaran Lengkap"
-#: utils/goal.py:117
-msgid "Completed"
-msgstr "Selesai"
+#: frappe/public/js/frappe/ui/slides.js:355
+msgctxt "Finish the setup wizard"
+msgid "Complete Setup"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Completed"
-msgstr "Selesai"
-
-#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Completed"
-msgstr "Selesai"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Completed"
-msgstr "Selesai"
-
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Completed"
-msgstr "Selesai"
-
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/utils/goal.py:117
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Selesai"
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by_role (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By Role"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By User"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#: frappe/website/doctype/web_template/web_template.json
msgid "Component"
-msgstr "Komponen"
+msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:184
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:184
msgid "Compose Email"
msgstr "Menulis Surel"
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Condition"
-msgstr "Kondisi"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Condition"
-msgstr "Kondisi"
-
-#. Label of a Code field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Condition"
-msgstr "Kondisi"
-
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Condition"
-msgstr "Kondisi"
-
-#. Label of a Data field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "Condition"
-msgstr "Kondisi"
-
-#. Label of a Small Text field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Condition"
-msgstr "Kondisi"
-
-#. Label of a Code field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Condition"
-msgstr "Kondisi"
-
-#. Label of a HTML field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Condition Description"
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Compressed"
msgstr ""
-#. Label of a JSON field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the condition (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the condition (Code) field in DocType 'Navbar Item'
+#. Label of the condition (Small Text) field in DocType 'Bulk Update'
+#. Label of the condition (Code) field in DocType 'Notification'
+#. Label of the condition (Data) field in DocType 'Notification Recipient'
+#. Label of the condition (Small Text) field in DocType 'Webhook'
+#. Label of the condition (Code) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr ""
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Condition JSON"
msgstr ""
-#. Label of a Table field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Conditions"
-msgstr "Kondisi"
+#. Label of the condition_description (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition description"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
+#. Label of the conditions (Section Break) field in DocType 'Workflow
+#. Transition'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Conditions"
-msgstr "Kondisi"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the config_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Config"
+msgstr ""
+
+#. Label of the configuration_section (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Configuration"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "Konfigurasikan Bagan"
-#: public/js/frappe/form/grid_row.js:381
+#: frappe/public/js/frappe/form/grid_row.js:390
msgid "Configure Columns"
msgstr ""
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr ""
+
#. Description of the 'Amended Documents' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Configure how amended documents will be named.
\n"
-"\n"
-"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure how amended documents will be named.
\n\n"
+"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n"
"Default Naming will make the amended document to behave same as new documents."
msgstr ""
-#: www/update-password.html:30
+#. Description of a DocType
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure various aspects of how document naming works like naming series, current counter."
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
+#: frappe/www/update-password.html:66
msgid "Confirm"
msgstr "Menegaskan"
-#: public/js/frappe/ui/messages.js:31
+#: frappe/public/js/frappe/ui/messages.js:31
msgctxt "Title of confirmation dialog"
msgid "Confirm"
msgstr "Menegaskan"
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100
+#: frappe/integrations/oauth2.py:138
+msgid "Confirm Access"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
msgid "Confirm Deletion of Account"
msgstr ""
-#: core/doctype/user/user.js:173
+#: frappe/core/doctype/user/user.js:191
msgid "Confirm New Password"
msgstr "Konfirmasi password baru"
-#: www/update-password.html:24
+#: frappe/www/update-password.html:55
msgid "Confirm Password"
msgstr ""
-#: templates/emails/data_deletion_approval.html:6
-#: templates/emails/delete_data_confirmation.html:7
+#: frappe/templates/emails/data_deletion_approval.html:6
+#: frappe/templates/emails/delete_data_confirmation.html:7
msgid "Confirm Request"
msgstr "Konfirmasikan Permintaan"
-#: email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Konfirmasi Email Anda"
-
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the confirmation_email_template (Link) field in DocType 'Email
+#. Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "Template Email Konfirmasi"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:381
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Dikonfirmasi"
-#: public/js/frappe/widgets/onboarding_widget.js:530
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:25
+#: frappe/integrations/doctype/connected_app/connected_app.js:25
msgid "Connect to {}"
msgstr ""
+#. Label of the connected_app (Link) field in DocType 'Email Account'
#. Name of a DocType
-#: integrations/doctype/connected_app/connected_app.json
+#. Label of the connected_app (Link) field in DocType 'Token Cache'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Connected App"
msgstr ""
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the connected_user (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Connected User"
msgstr ""
-#: public/js/frappe/form/print_utils.js:95
-#: public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:110
+#: frappe/public/js/frappe/form/print_utils.js:134
msgid "Connected to QZ Tray!"
msgstr "Terhubung ke Baki QZ!"
-#: public/js/frappe/request.js:34
+#: frappe/public/js/frappe/request.js:36
msgid "Connection Lost"
msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:3
+#: frappe/templates/pages/integrations/gcalendar-success.html:3
msgid "Connection Success"
msgstr "Sukses Koneksi"
-#: public/js/frappe/dom.js:433
+#: frappe/public/js/frappe/dom.js:446
msgid "Connection lost. Some features might not work."
msgstr "Koneksi terputus. Beberapa fitur mungkin tidak bekerja."
-#: public/js/frappe/form/dashboard.js:54
+#. Label of the connections_tab (Tab Break) field in DocType 'DocType'
+#. Label of the connections_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the connections_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:54
msgid "Connections"
msgstr ""
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Code field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the console (Code) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr "Menghibur"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Console Log"
msgstr "Log Konsol"
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#: frappe/desk/doctype/console_log/console_log.py:24
+msgid "Console Logs can not be deleted"
+msgstr ""
+
+#. Label of the constraints_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact/contact.json
-#: core/doctype/communication/communication.js:113
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.js:113
msgid "Contact"
msgstr "Kontak"
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Contact"
-msgstr "Kontak"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sb_01 (Section Break) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "Kontak Detail"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_email/contact_email.json
+#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Contact Email"
msgstr "Email Kontak"
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the phone_nos (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "Nomor kontak"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_phone/contact_phone.json
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Contact Phone"
msgstr "Hubungi Telepon"
-#: integrations/doctype/google_contacts/google_contacts.py:288
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:291
msgid "Contact Synced with Google Contacts."
msgstr "Kontak Disinkronkan dengan Kontak Google."
-#. Name of a DocType
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgid "Contact Us Settings"
-msgstr "Hubungi Kami Settings"
+#: frappe/www/contact.html:4
+msgid "Contact Us"
+msgstr ""
+#. Name of a DocType
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Contact Us Settings"
msgstr "Hubungi Kami Settings"
#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us
#. Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
-msgstr "Opsi kontak, seperti \"Penjualan Query, Dukungan Query\" dll masing-masing pada baris baru atau dipisahkan dengan koma."
+msgstr ""
-#. Label of a Text Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Contacts"
+msgstr ""
+
+#: frappe/utils/change_log.py:362
+msgid "Contains {0} security fix"
+msgstr ""
+
+#: frappe/utils/change_log.py:360
+msgid "Contains {0} security fixes"
+msgstr ""
+
+#. Label of the content (HTML Editor) field in DocType 'Comment'
+#. Label of the content (Text Editor) field in DocType 'Note'
+#. Label of the content (Long Text) field in DocType 'Workspace'
+#. Label of the content (Text Editor) field in DocType 'Blog Post'
+#. Label of the content (Text Editor) field in DocType 'Help Article'
+#. Label of the section_title (Tab Break) field in DocType 'Web Page'
+#. Label of the sb1 (Section Break) field in DocType 'Web Page'
+#. Label of the content (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/utils/utils.js:1745
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:41
msgid "Content"
-msgstr "Isi Halaman"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Content"
-msgstr "Isi Halaman"
-
-#. Label of a Text Editor field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Content"
-msgstr "Isi Halaman"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content"
-msgstr "Isi Halaman"
-
-#. Label of a Text Editor field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Content"
-msgstr "Isi Halaman"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content"
-msgstr "Isi Halaman"
-
-#. Label of a Long Text field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Content"
-msgstr "Isi Halaman"
-
-#. Label of a HTML Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_html (HTML Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (HTML)"
-msgstr "Konten (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (Markdown)"
-msgstr "Konten (penurunan harga)"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the content_hash (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Content Hash"
-msgstr "Content Hash"
+msgstr ""
-#. Label of a Select field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_type (Select) field in DocType 'Blog Post'
+#. Label of the content_type (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "Tipe Konten"
+msgstr ""
-#. Label of a Select field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content Type"
-msgstr "Tipe Konten"
-
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content Type"
-msgstr "Tipe Konten"
-
-#: desk/doctype/workspace/workspace.py:79
+#: frappe/desk/doctype/workspace/workspace.py:86
msgid "Content data shoud be a list"
msgstr ""
-#: website/doctype/web_page/web_page.js:91
+#: frappe/website/doctype/web_page/web_page.js:91
msgid "Content type for building the page"
msgstr "Jenis konten untuk membangun halaman"
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#. Label of the context (Data) field in DocType 'Translation'
+#. Label of the context_section (Section Break) field in DocType 'Web Page'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Context"
-msgstr "Konteks"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Context"
-msgstr "Konteks"
-
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the context_script (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Context Script"
-msgstr "Skrip Konteks"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:209
-#: public/js/frappe/widgets/onboarding_widget.js:237
-#: public/js/frappe/widgets/onboarding_widget.js:277
-#: public/js/frappe/widgets/onboarding_widget.js:317
-#: public/js/frappe/widgets/onboarding_widget.js:366
-#: public/js/frappe/widgets/onboarding_widget.js:388
-#: public/js/frappe/widgets/onboarding_widget.js:428
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:204
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:232
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:272
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:312
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:361
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:383
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:423
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:531
msgid "Continue"
msgstr "Terus"
-#. Label of a Check field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#. Label of the contributed (Check) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
msgid "Contributed"
-msgstr "Berkontribusi"
-
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Document Name"
-msgstr "Nama Dokumen Kontribusi"
-
-#. Label of a Select field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Status"
-msgstr "Status Kontribusi"
-
-#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. "
msgstr ""
-#: public/js/frappe/utils/utils.js:1030
+#. Label of the contribution_docname (Data) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contribution Document Name"
+msgstr ""
+
+#. Label of the contribution_status (Select) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+msgid "Contribution Status"
+msgstr ""
+
+#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1036
msgid "Copied to clipboard."
msgstr "Disalin ke papan klip."
-#: public/js/frappe/request.js:615
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93
+msgid "Copy Link"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:29
+msgid "Copy embed code"
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:620
msgid "Copy error to clipboard"
msgstr ""
-#: public/js/frappe/form/toolbar.js:388
+#: frappe/public/js/frappe/form/toolbar.js:507
msgid "Copy to Clipboard"
msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the copyright (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Hak cipta"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:118
+#: frappe/custom/doctype/customize_form/customize_form.py:122
msgid "Core DocTypes cannot be customized."
msgstr "Core DocTypes tidak dapat dikustomisasi."
-#: desk/doctype/global_search_settings/global_search_settings.py:35
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Modul Inti {0} tidak dapat dicari dalam Pencarian Global."
-#: email/smtp.py:77
+#: frappe/printing/page/print/print.js:620
+msgid "Correct version :"
+msgstr ""
+
+#: frappe/email/smtp.py:78
msgid "Could not connect to outgoing email server"
msgstr "Tidak dapat terhubung ke server email keluar"
-#: model/document.py:922
+#: frappe/model/document.py:1097
msgid "Could not find {0}"
msgstr "Tidak dapat menemukan {0}"
-#: core/doctype/data_import/importer.py:886
+#: frappe/core/doctype/data_import/importer.py:933
msgid "Could not map column {0} to field {1}"
msgstr "Tidak dapat memetakan kolom {0} ke bidang {1}"
-#: public/js/frappe/web_form/web_form.js:355
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:234
+msgid "Could not start up: "
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:359
msgid "Couldn't save, please check the data you have entered"
msgstr "Tidak dapat menyimpan, harap periksa data yang telah Anda masukkan"
-#: public/js/frappe/ui/group_by/group_by.js:19
-#: public/js/frappe/ui/group_by/group_by.js:318
-msgid "Count"
-msgstr "Menghitung"
-
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Count"
-msgstr "Menghitung"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the count (Int) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:19
+#: frappe/public/js/frappe/ui/group_by/group_by.js:328
+#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
msgstr "Menghitung"
-#: public/js/frappe/widgets/widget_dialog.js:499
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "Hitung Kustomisasi"
-#: public/js/frappe/widgets/widget_dialog.js:484
+#. Label of the section_break_5 (Section Break) field in DocType 'Workspace
+#. Shortcut'
+#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "Hitung Filter"
-#. Label of a Section Break field in DocType 'Workspace Shortcut'
-#. Label of a Code field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Count Filter"
-msgstr "Hitung Filter"
+#: frappe/public/js/frappe/form/dashboard.js:509
+msgid "Count of linked documents"
+msgstr ""
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the counter (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
-msgstr "Melawan"
+msgstr ""
+#. Label of the country (Link) field in DocType 'Address'
+#. Label of the country (Link) field in DocType 'Address Template'
+#. Label of the country (Link) field in DocType 'System Settings'
#. Name of a DocType
-#: geo/doctype/country/country.json
+#. Label of the country (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
msgstr "Negara"
-#. Label of a Link field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Country"
-msgstr "Negara"
-
-#. Label of a Link field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
-msgid "Country"
-msgstr "Negara"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Country"
-msgstr "Negara"
-
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Country"
-msgstr "Negara"
-
-#: utils/__init__.py:116
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the country_name (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr "Nama Negara"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the county (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "County"
-msgstr "daerah"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:23
-#: public/js/frappe/utils/number_systems.js:45
+#: frappe/public/js/frappe/utils/number_systems.js:23
+#: frappe/public/js/frappe/utils/number_systems.js:45
msgctxt "Number system"
msgid "Cr"
msgstr ""
-#: core/doctype/communication/communication.js:117
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: public/js/frappe/form/reminders.js:49
-#: public/js/frappe/views/file/file_view.js:112
-#: public/js/frappe/views/interaction.js:18
-#: public/js/frappe/views/reports/query_report.js:1172
-#: public/js/frappe/views/workspace/workspace.js:1217
-#: workflow/page/workflow_builder/workflow_builder.js:46
+#. Label of the create (Check) field in DocType 'Custom DocPerm'
+#. Label of the create (Check) field in DocType 'DocPerm'
+#. Label of the create (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/communication/communication.js:117
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/public/js/frappe/form/reminders.js:49
+#: frappe/public/js/frappe/views/file/file_view.js:112
+#: frappe/public/js/frappe/views/interaction.js:18
+#: frappe/public/js/frappe/views/reports/query_report.js:1264
+#: frappe/public/js/frappe/views/workspace/workspace.js:469
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Buat"
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Create"
-msgstr "Buat"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Create"
-msgstr "Buat"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Create"
-msgstr "Buat"
-
-#: core/doctype/doctype/doctype_list.js:85
+#: frappe/core/doctype/doctype/doctype_list.js:102
msgid "Create & Continue"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/create_blogger/create_blogger.json
-msgid "Create Blogger"
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
+msgid "Create Address"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:186
-#: public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:187
+#: frappe/public/js/frappe/views/reports/query_report.js:232
msgid "Create Card"
msgstr "Buat Kartu"
-#: public/js/frappe/views/reports/query_report.js:284
-#: public/js/frappe/views/reports/query_report.js:1099
+#: frappe/public/js/frappe/views/reports/query_report.js:285
+#: frappe/public/js/frappe/views/reports/query_report.js:1191
msgid "Create Chart"
msgstr "Buat Bagan"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Create Contacts from Incoming Emails"
-msgstr "Buat Kontak dari Email Masuk"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid "Create Custom Fields"
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:62
+msgid "Create Child Doctype"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:925
-msgid "Create Duplicate"
+#. Label of the create_contact (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Create Contacts from Incoming Emails"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Create Entry"
-msgstr "Buat Entri"
+msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
+msgid "Create Letter Head"
+msgstr ""
+
+#. Label of the create_log (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Create Log"
-msgstr "Buat Log"
+msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41
-#: public/js/frappe/views/treeview.js:361
-#: workflow/page/workflow_builder/workflow_builder.js:41
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
+#: frappe/public/js/frappe/views/treeview.js:378
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:41
msgid "Create New"
msgstr "Buat New"
-#: core/doctype/doctype/doctype_list.js:83
+#: frappe/public/js/frappe/list/list_view.js:509
+msgctxt "Create a new document from list view"
+msgid "Create New"
+msgstr "Buat New"
+
+#: frappe/core/doctype/doctype/doctype_list.js:100
msgid "Create New DocType"
msgstr ""
-#: public/js/frappe/list/list_view_select.js:204
+#: frappe/public/js/frappe/list/list_view_select.js:204
msgid "Create New Kanban Board"
msgstr ""
-#: core/doctype/user/user.js:251
+#: frappe/core/doctype/user/user.js:270
msgid "Create User Email"
msgstr "Buat Email Pengguna"
-#: public/js/frappe/views/workspace/workspace.js:465
-msgid "Create Workspace"
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16
+msgid "Create a New Format"
msgstr ""
-#: public/js/frappe/form/reminders.js:9
+#: frappe/public/js/frappe/form/reminders.js:9
msgid "Create a Reminder"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:521
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537
msgid "Create a new ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:156
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156
msgid "Create a new record"
msgstr "Buat catatan baru"
-#: public/js/frappe/form/controls/link.js:291
-#: public/js/frappe/form/controls/link.js:293
-#: public/js/frappe/form/link_selector.js:139
-#: public/js/frappe/list/list_view.js:470
+#: frappe/public/js/frappe/form/controls/link.js:311
+#: frappe/public/js/frappe/form/controls/link.js:313
+#: frappe/public/js/frappe/form/link_selector.js:139
+#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/web_form/web_form_list.js:225
msgid "Create a new {0}"
msgstr "Buat baru {0}"
-#: www/login.html:142
+#: frappe/www/login.html:162
msgid "Create a {0} Account"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:34
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
msgid "Create or Edit Workflow"
msgstr ""
-#: public/js/frappe/list/list_view.js:473
+#: frappe/public/js/frappe/list/list_view.js:504
msgid "Create your first {0}"
msgstr "Buat {0} pertama Anda"
-#: workflow/doctype/workflow/workflow.js:16
+#: frappe/workflow/doctype/workflow/workflow.js:16
msgid "Create your workflow visually using the Workflow Builder."
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Created"
-msgstr "Dibuat"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Created"
-msgstr "Dibuat"
-
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
msgstr ""
-#: model/__init__.py:138 model/meta.py:51
-#: public/js/frappe/list/list_sidebar_group_by.js:73
-#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113
+#: frappe/model/meta.py:58
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73
+#: frappe/public/js/frappe/model/meta.js:206
+#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Dibuat Oleh"
-#: workflow/doctype/workflow/workflow.py:65
+#: frappe/workflow/doctype/workflow/workflow.py:64
msgid "Created Custom Field {0} in {1}"
msgstr "Dibuat Bidang Kustom {0} pada {1}"
-#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140
-#: model/meta.py:46 public/js/frappe/model/meta.js:198
-#: public/js/frappe/model/model.js:115
-#: public/js/frappe/views/dashboard/dashboard_view.js:478
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
+#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53
+#: frappe/public/js/frappe/model/meta.js:201
+#: frappe/public/js/frappe/model/model.js:125
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479
msgid "Created On"
msgstr "Dibuat pada"
-#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376
+#: frappe/public/js/frappe/desk.js:523
+#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "Membuat {0}"
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Criticism"
-msgstr "Kritik"
-
-#: public/js/frappe/form/sidebar/review.js:66
-msgid "Criticize"
-msgstr "Mengkritik"
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
+msgid "Creation of this document is only permitted in developer mode."
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Cron"
-msgstr "Cron"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron"
-msgstr "Cron"
+msgstr ""
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type'
+#. Label of the cron_format (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr "Format Cron"
+msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Cron Format"
-msgstr "Format Cron"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
+msgid "Cron format is required for job types with Cron frequency."
+msgstr ""
-#: templates/includes/comments/comments.html:32
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
+msgid "Crop"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Down"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Up"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:32
msgid "Ctrl+Enter to add comment"
msgstr "Ctrl + Enter untuk menambahkan komentar"
-#. Name of a DocType
-#: desk/page/setup_wizard/setup_wizard.js:403
-#: geo/doctype/currency/currency.json
-msgid "Currency"
-msgstr "Mata uang"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Currency"
-msgstr "Mata uang"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Currency"
-msgstr "Mata uang"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Currency"
-msgstr "Mata uang"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Currency"
-msgstr "Mata uang"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Currency"
-msgstr "Mata uang"
-
+#. Label of the currency (Link) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the currency (Link) field in DocType 'Dashboard Chart'
+#. Label of the currency (Link) field in DocType 'Number Card'
+#. Name of a DocType
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:414
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Currency"
msgstr "Mata uang"
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the currency_name (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Nama Mata Uang"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the currency_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Presisi mata uang"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency list stores the currency value, its symbol and fraction unit"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Current"
msgstr "Arus"
-#. Label of a Link field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
msgstr ""
-#. Label of a Int field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
msgstr ""
-#: public/js/frappe/form/form_viewers.js:5
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Current status"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_viewers.js:5
msgid "Currently Viewing"
msgstr "Sedang Melihat"
-#: public/js/frappe/form/sidebar/review.js:77
-msgid "Currently you have {0} review points"
-msgstr "Saat ini Anda memiliki {0} poin ulasan"
-
-#: core/doctype/user_type/user_type_list.js:7
-#: public/js/frappe/form/reminders.js:20
-msgid "Custom"
-msgstr "Disesuaikan"
-
+#. Label of the custom (Check) field in DocType 'DocType Action'
+#. Label of the custom (Check) field in DocType 'DocType Link'
+#. Label of the custom (Check) field in DocType 'DocType State'
+#. Label of the custom (Check) field in DocType 'Module Def'
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Label of a Check field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Label of a Check field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Label of a Check field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Custom"
-msgstr "Disesuaikan"
-
+#. Label of the custom (Check) field in DocType 'Desktop Icon'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Custom"
-msgstr "Disesuaikan"
-
-#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Custom"
-msgstr "Disesuaikan"
-
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_type/user_type_list.js:7
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/frappe/form/reminders.js:20
msgid "Custom"
msgstr "Disesuaikan"
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Custom Base URL"
-msgstr "URL Basis Kustom"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Custom Block'
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
-msgctxt "Workspace Custom Block"
+#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
+#. Block'
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Custom Block Name"
msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the custom_blocks (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Custom Blocks"
msgstr ""
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the css (Code) field in DocType 'Print Format'
+#. Label of the custom_css (Code) field in DocType 'Web Form'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Custom CSS"
-msgstr "Kustom CSS"
+msgstr ""
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Custom CSS"
-msgstr "Kustom CSS"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the custom_configuration_section (Section Break) field in DocType
+#. 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Custom Configuration"
-msgstr "Konfigurasi Kustom"
+msgstr ""
+
+#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Custom Delimiters"
+msgstr ""
#. Name of a DocType
-#: core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
msgid "Custom DocPerm"
msgstr "kustom DocPerm"
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "Custom Document Types"
-msgstr ""
-
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the custom_select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Custom Document Types (Select Permission)"
msgstr ""
-#: core/doctype/user_type/user_type.py:104
+#: frappe/core/doctype/user_type/user_type.py:105
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: desk/desktop.py:483
+#: frappe/desk/desktop.py:524
msgid "Custom Documents"
msgstr "Dokumen Kustom"
-#. Name of a DocType
-#: custom/doctype/custom_field/custom_field.json
-msgid "Custom Field"
-msgstr "Bidang Kustom"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Custom Field"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Custom Field"
msgstr "Bidang Kustom"
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom Field"
-msgstr "Bidang Kustom"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom Field"
-msgstr "Bidang Kustom"
-
-#: custom/doctype/custom_field/custom_field.py:216
+#: frappe/custom/doctype/custom_field/custom_field.py:220
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "Bidang Khusus {0} dibuat oleh Administrator dan hanya dapat dihapus melalui akun Administrator."
-#. Subtitle of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports"
-msgstr ""
-
-#: custom/doctype/custom_field/custom_field.py:260
+#: frappe/custom/doctype/custom_field/custom_field.py:277
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Bidang Kustom hanya dapat ditambahkan ke DocType standar."
-#: custom/doctype/custom_field/custom_field.py:257
+#: frappe/custom/doctype/custom_field/custom_field.py:274
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Bidang Kustom tidak dapat ditambahkan ke DocTypes inti."
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the custom_footer_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Custom Footer"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_format (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom Format"
-msgstr "Kustom Format"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Custom Group Search"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:119
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:190
-#: printing/page/print_format_builder/print_format_builder.js:720
+#: frappe/printing/page/print_format_builder/print_format_builder.js:190
+#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
-msgstr "Custom HTML"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "Custom HTML Block"
msgstr ""
-#. Label of a HTML field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom HTML Help"
-msgstr "Custom HTML Bantuan"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:111
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
msgstr ""
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the label (Data) field in DocType 'Web Form Field'
+#. Label of the label (Data) field in DocType 'Web Form List Column'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Custom Label"
msgstr ""
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Custom Label"
-msgstr ""
-
-#. Label of a Table field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Menu Items"
-msgstr "Kustom Menu Produk"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Custom Options"
-msgstr "Opsi Kustom"
+msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr "Penggantian Kustom"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Custom Report"
-msgstr "Laporan Kustom"
+msgstr ""
-#: desk/desktop.py:484
+#: frappe/desk/desktop.py:525
msgid "Custom Reports"
msgstr "Laporan Kustom"
#. Name of a DocType
-#: core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "Custom Role"
msgstr "Peran kustom"
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr "SCSS Kustom"
+msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr "Kustom Sidebar menu"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Translation"
+#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:65
-msgid "Custom?"
-msgstr "Kustom?"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom?"
-msgstr "Kustom?"
-
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Custom?"
-msgstr "Kustom?"
-
-#. Label of a Card Break in the Build Workspace
-#. Title of the Module Onboarding 'Customization'
-#: core/workspace/build/build.json
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization"
-msgstr "Kustomisasi"
-
-#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Customization"
-msgstr "Kustomisasi"
-
-#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Customization"
-msgstr "Kustomisasi"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Customization"
-msgstr "Kustomisasi"
-
-#. Success message of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization onboarding is all done!"
+#: frappe/custom/doctype/custom_field/custom_field.py:423
+msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:511
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
+#. Label of the custom (Check) field in DocType 'DocType'
+#. Label of the custom (Check) field in DocType 'Website Theme'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom?"
+msgstr "Kustom?"
+
+#. Group in DocType's connections
+#. Group in Module Def's connections
+#. Label of a Card Break in the Build Workspace
+#. Label of the customization_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Customization"
+msgstr "Kustomisasi"
+
+#: frappe/public/js/frappe/views/workspace/workspace.js:358
msgid "Customizations Discarded"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:397
+#: frappe/custom/doctype/customize_form/customize_form.js:465
msgid "Customizations Reset"
msgstr "Penyesuaian ulang Reset"
-#: modules/utils.py:95
+#: frappe/modules/utils.py:96
msgid "Customizations for {0} exported to:
{1}"
msgstr "Penyesuaian untuk {0} diekspor ke:
{1}"
-#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527
+#: frappe/printing/page/print/print.js:171
+#: frappe/public/js/frappe/form/templates/print_layout.html:39
+#: frappe/public/js/frappe/form/toolbar.js:600
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Sesuaikan"
-#: public/js/frappe/list/list_view.js:1664
+#: frappe/public/js/frappe/list/list_view.js:1800
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Sesuaikan"
-#: custom/doctype/customize_form/customize_form.js:89
+#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:37
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
msgid "Customize Dashboard"
msgstr ""
-#. Name of a DocType
-#: custom/doctype/customize_form/customize_form.json
-#: public/js/frappe/views/kanban/kanban_view.js:340
-msgid "Customize Form"
-msgstr "Sesuaikan Form"
-
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Customize Form"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33
+#: frappe/core/doctype/doctype/doctype.js:61
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Sesuaikan Form"
-#: custom/doctype/customize_form/customize_form.js:100
+#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
msgstr ""
#. Name of a DocType
-#: custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
msgstr "Sesuaikan Form Lapangan"
-#. Title of an Onboarding Step
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Customize Print Formats"
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Customize properties, naming, fields and more for standard doctypes"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:144
+#: frappe/public/js/frappe/views/file/file_view.js:144
msgid "Cut"
msgstr "Memotong"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Cyan"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Cyan"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "DELETE"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
msgstr ""
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "DESC"
-msgstr "DESC"
-
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "DESC"
-msgstr "DESC"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "DLE"
msgstr ""
-#: templates/print_formats/standard_macros.html:207
+#: frappe/templates/print_formats/standard_macros.html:215
msgid "DRAFT"
msgstr "Draf"
-#: public/js/frappe/utils/common.js:398
-#: website/report/website_analytics/website_analytics.js:23
-msgid "Daily"
-msgstr "Sehari-hari"
-
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Frequency' (Select) field in DocType 'User'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:398
+#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
msgstr "Sehari-hari"
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Daily"
-msgstr "Sehari-hari"
-
-#: templates/emails/upcoming_events.html:8
+#: frappe/templates/emails/upcoming_events.html:8
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Harian Kegiatan Digest dikirim untuk Kalender Acara di mana pengingat ditetapkan."
-#: desk/doctype/event/event.py:93
+#: frappe/desk/doctype/event/event.py:100
msgid "Daily Events should finish on the Same Day."
msgstr "Acara Harian harus selesai pada Hari yang Sama."
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily Long"
-msgstr "Long setiap hari"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr "Long setiap hari"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Daily Maintenance"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr "Bahaya"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Dark"
msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the dark_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr "Warna gelap"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:65
+#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
msgstr ""
-#. Name of a DocType
-#: core/page/dashboard_view/dashboard_view.js:10
-#: desk/doctype/dashboard/dashboard.json
-#: public/js/frappe/ui/toolbar/search_utils.js:546
-msgid "Dashboard"
-msgstr "Dasbor"
-
+#. Label of the dashboard (Check) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard"
-msgid "Dashboard"
-msgstr "Dasbor"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Dashboard"
-msgstr "Dasbor"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Dashboard"
-msgstr "Dasbor"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:10
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
+#: frappe/public/js/frappe/utils/utils.js:935
msgid "Dashboard"
msgstr "Dasbor"
-#. Name of a DocType
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
-msgid "Dashboard Chart"
-msgstr "Bagan Dasbor"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard Chart"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
msgid "Dashboard Chart"
msgstr "Bagan Dasbor"
#. Name of a DocType
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
msgid "Dashboard Chart Field"
msgstr "Bidang Bagan Dasbor"
#. Name of a DocType
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Dashboard Chart Link"
msgstr "Tautan Bagan Dasbor"
#. Name of a DocType
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Dashboard Chart Source"
msgstr "Sumber Bagan Dasbor"
#. Name of a role
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Dashboard Manager"
msgstr "Manajer Dasbor"
-#. Label of a Data field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr "Nama Dashboard"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Dashboard Settings"
msgstr "Pengaturan Dashboard"
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/public/js/frappe/list/base_list.js:204
+msgid "Dashboard View"
+msgstr ""
+
+#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr "Dasbor"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgid "Data"
-msgstr "Data"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Data"
-msgstr "Data"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Code field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
-msgid "Data"
-msgstr "Data"
-
+#. Label of the data (Code) field in DocType 'Deleted Document'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Data"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Data"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Long Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Code field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Data"
-msgstr "Data"
-
+#. Label of the data (Long Text) field in DocType 'Transaction Log'
+#. Label of the data (Code) field in DocType 'Version'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the webhook_data (Table) field in DocType 'Webhook'
+#. Label of the data (Code) field in DocType 'Webhook Request Log'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Data"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Data"
-msgstr "Data"
+msgstr ""
-#. Label of a Table field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Data"
-msgstr "Data"
-
-#: public/js/frappe/form/controls/data.js:58
+#: frappe/public/js/frappe/form/controls/data.js:59
msgid "Data Clipped"
msgstr ""
#. Name of a DocType
-#: core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_export/data_export.json
msgid "Data Export"
msgstr "Ekspor Data"
#. Name of a DocType
-#: core/doctype/data_import/data_import.json
-msgid "Data Import"
-msgstr "Impor data"
-
-#. Label of a Link field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the data_import (Link) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import"
msgstr "Impor data"
#. Name of a DocType
-#: core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import Log"
msgstr ""
-#: core/doctype/data_export/exporter.py:174
+#: frappe/core/doctype/data_export/exporter.py:174
msgid "Data Import Template"
msgstr "Impor Template Data"
-#: custom/doctype/customize_form/customize_form.py:614
+#: frappe/custom/doctype/customize_form/customize_form.py:614
msgid "Data Too Long"
msgstr "Data Terlalu Panjang"
-#: model/base_document.py:703
-msgid "Data missing in table"
-msgstr "Data hilang dalam tabel"
+#. Label of the database (Data) field in DocType 'System Health Report'
+#. Label of the database_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the engine (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Database Engine"
-msgstr "database Engine"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the database_processes_section (Section Break) field in DocType
+#. 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Database Processes"
msgstr ""
-#: public/js/frappe/doctype/index.js:38
+#: frappe/public/js/frappe/doctype/index.js:38
msgid "Database Row Size Utilization"
msgstr ""
#. Name of a report
-#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
msgid "Database Storage Usage By Tables"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:244
+#: frappe/custom/doctype/customize_form/customize_form.py:248
msgid "Database Table Row Size Limit"
msgstr ""
-#: public/js/frappe/doctype/index.js:40
+#: frappe/public/js/frappe/doctype/index.js:40
msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
msgstr ""
-#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109
-#: public/js/frappe/views/interaction.js:80
-msgid "Date"
-msgstr "Tanggal"
-
-#. Label of a Datetime field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Date"
-msgstr "Tanggal"
-
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Date"
-msgstr "Tanggal"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Date"
-msgstr "Tanggal"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Date"
-msgstr "Tanggal"
+#. Label of the database_version (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database Version"
+msgstr ""
+#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
+#. Label of the communication_date (Datetime) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Date"
-msgstr "Tanggal"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Date"
-msgstr "Tanggal"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Date"
-msgstr "Tanggal"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/report/todo/todo.py:38
+#: frappe/public/js/frappe/views/interaction.js:80
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
msgstr "Tanggal"
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the date_format (Select) field in DocType 'Language'
+#. Label of the date_format (Select) field in DocType 'System Settings'
+#. Label of the date_format (Data) field in DocType 'Country'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr "Format Tanggal"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Date Format"
-msgstr "Format Tanggal"
-
-#: desk/page/leaderboard/leaderboard.js:165
+#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/widgets/chart_widget.js:237
msgid "Date Range"
msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Date Range"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the date_and_number_format (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr "Tanggal dan Nomor Format"
+msgstr ""
-#: public/js/frappe/form/controls/date.js:163
+#: frappe/public/js/frappe/form/controls/date.js:247
msgid "Date {0} must be in format: {1}"
msgstr "Tanggal {0} harus dalam format: {1}"
-#: utils/password_strength.py:131
+#: frappe/utils/password_strength.py:129
msgid "Dates are often easy to guess."
msgstr "Tanggal seringkali mudah ditebak."
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Datetime"
-msgstr "Datetime"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Datetime"
-msgstr "Datetime"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Datetime"
-msgstr "Datetime"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Datetime"
-msgstr "Datetime"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Datetime"
-msgstr "Datetime"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Datetime"
-msgstr "Datetime"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:270
+#. Label of the day (Select) field in DocType 'Assignment Rule Day'
+#. Label of the day (Select) field in DocType 'Auto Repeat Day'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/public/js/frappe/views/calendar/calendar.js:277
msgid "Day"
msgstr "Hari"
-#. Label of a Select field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Day"
-msgstr "Hari"
-
-#. Label of a Select field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Day"
-msgstr "Hari"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Day of Week"
-msgstr "Hari dalam seminggu"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr "Setelah hari"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr "Sebelum hari"
+msgstr ""
-#. Label of a Int field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the days_in_advance (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "Sebelum hari atau setelah"
+msgstr ""
-#: public/js/frappe/request.js:249
+#: frappe/public/js/frappe/request.js:252
msgid "Deadlock Occurred"
msgstr ""
-#: templates/emails/password_reset.html:1
+#: frappe/templates/emails/password_reset.html:1
msgid "Dear"
msgstr "Kepada Yth."
-#: templates/emails/administrator_logged_in.html:1
+#: frappe/templates/emails/administrator_logged_in.html:1
msgid "Dear System Manager,"
msgstr "Kepada System Manager Yth.,"
-#: templates/emails/account_deletion_notification.html:1
-#: templates/emails/delete_data_confirmation.html:1
+#: frappe/templates/emails/account_deletion_notification.html:1
+#: frappe/templates/emails/delete_data_confirmation.html:1
msgid "Dear User,"
msgstr "Pengguna yang terhormat,"
-#: templates/emails/download_data.html:1
+#: frappe/templates/emails/download_data.html:1
msgid "Dear {0}"
msgstr "Yth {0}"
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Debug Log"
msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Default"
-msgstr "Standar"
+#: frappe/public/js/frappe/views/reports/report_utils.js:308
+msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
+msgstr ""
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Default"
-msgstr "Standar"
+#: frappe/public/js/frappe/views/reports/report_utils.js:300
+msgid "Decimal Separator must be a single character"
+msgstr ""
+#. Label of the default (Small Text) field in DocType 'DocField'
+#. Label of the default (Small Text) field in DocType 'Report Filter'
+#. Label of the default (Small Text) field in DocType 'Customize Form Field'
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the default (Data) field in DocType 'Web Form Field'
+#. Label of the default (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/templates/form_grid/fields.html:30
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Default"
msgstr "Standar"
-#. Label of a Small Text field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Default"
-msgstr "Standar"
-
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Default"
-msgstr "Standar"
-
-#. Label of a Small Text field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Default"
-msgstr "Standar"
-
-#: contacts/doctype/address_template/address_template.py:40
+#: frappe/contacts/doctype/address_template/address_template.py:41
msgid "Default Address Template cannot be deleted"
msgstr "Template Default Address tidak bisa dihapus"
-#. Label of a Select field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the default_amend_naming (Select) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Amendment Naming"
msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_app (Select) field in DocType 'System Settings'
+#. Label of the default_app (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Default App"
+msgstr ""
+
+#. Label of the default_email_template (Link) field in DocType 'DocType'
+#. Label of the default_email_template (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Email Template"
msgstr ""
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Email Template"
-msgstr ""
-
-#: email/doctype/email_account/email_account_list.js:13
+#: frappe/email/doctype/email_account/email_account_list.js:13
msgid "Default Inbox"
msgstr "Standar Inbox"
-#: email/doctype/email_account/email_account.py:194
+#. Label of the default_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:224
msgid "Default Incoming"
msgstr "Standar Masuk"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Incoming"
-msgstr "Standar Masuk"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the is_default (Check) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Default Letter Head"
-msgstr "Standar Surat Kepala"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Default Naming"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Naming"
msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the default_outgoing (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:232
msgid "Default Outgoing"
msgstr "Standar Outgoing"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Outgoing"
-msgstr "Standar Outgoing"
-
-#. Label of a Data field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Portal Home"
-msgstr "Beranda Portal Default"
+msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_print_format (Data) field in DocType 'DocType'
+#. Label of the default_print_format (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Standar Print Format"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Print Format"
-msgstr "Standar Print Format"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the default_print_language (Link) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Bahasa Cetak Default"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "Bawaan Redirect URI"
+msgstr ""
-#. Label of a Link field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_role (Link) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "Peran bawaan di Waktu Pendaftaran"
+msgstr ""
-#: email/doctype/email_account/email_account_list.js:16
+#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
msgstr "Default Mengirim"
-#: email/doctype/email_account/email_account_list.js:7
+#: frappe/email/doctype/email_account/email_account_list.js:7
msgid "Default Sending and Inbox"
msgstr "Default Mengirim dan Inbox"
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Bidang Sortir Default"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_order (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Urutan Sortir Default"
+msgstr ""
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the field (Data) field in DocType 'Print Format Field Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Default Template For Field"
msgstr ""
-#: website/doctype/website_theme/website_theme.js:28
+#: frappe/website/doctype/website_theme/website_theme.js:28
msgid "Default Theme"
msgstr "Tema Default"
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_role (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Role"
msgstr ""
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Type"
msgstr ""
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the default (Text) field in DocType 'Custom Field'
+#. Label of the default_value (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Default Value"
-msgstr "Nilai Awal"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Default Value"
-msgstr "Nilai Awal"
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_view (Select) field in DocType 'DocType'
+#. Label of the default_view (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default View"
msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default View"
+#. Label of the default_workspace (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Default Workspace"
msgstr ""
-#: core/doctype/doctype/doctype.py:1327
+#. Description of the 'Currency' (Link) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Default display currency"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1376
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "Default untuk jenis bidang 'Cek' {0} harus berupa '0' atau '1'"
-#: core/doctype/doctype/doctype.py:1340
+#: frappe/core/doctype/doctype/doctype.py:1389
msgid "Default value for {0} must be in the list of options."
msgstr "Nilai bawaan untuk {0} harus ada di daftar opsi."
-#: core/doctype/session_default_settings/session_default_settings.py:37
+#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
msgid "Default {0}"
-msgstr "Default {0}"
+msgstr ""
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Default: \"Contact Us\""
-msgstr "Default: \"Hubungi Kami\""
+msgstr ""
#. Name of a DocType
-#: core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
msgid "DefaultValue"
-msgstr "DefaultValue"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the defaults_section (Section Break) field in DocType 'DocField'
+#. Label of the sb2 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr "Standar"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Defaults"
-msgstr "Standar"
-
-#: email/doctype/email_account/email_account.py:207
+#: frappe/email/doctype/email_account/email_account.py:243
msgid "Defaults Updated"
msgstr ""
-#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Delayed"
-msgstr "Terlambat"
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Defines actions on states and the next step and allowed roles."
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:189
-#: public/js/frappe/form/toolbar.js:423
-#: public/js/frappe/views/reports/report_view.js:1645
-#: public/js/frappe/views/treeview.js:313
-#: public/js/frappe/views/workspace/workspace.js:823
-#: templates/discussions/reply_card.html:35
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Defines workflow states and rules for a document."
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Delayed"
+msgstr ""
+
+#. Label of the delete (Check) field in DocType 'Custom DocPerm'
+#. Label of the delete (Check) field in DocType 'DocPerm'
+#. Label of the delete (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:189
+#: frappe/public/js/frappe/form/footer/form_timeline.js:626
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/toolbar.js:464
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
+#: frappe/templates/discussions/reply_card.html:35
+#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
msgstr "Hapus"
-#: public/js/frappe/list/list_view.js:1857
+#: frappe/public/js/frappe/list/list_view.js:2025
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Hapus"
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Delete"
-msgstr "Hapus"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Delete"
-msgstr "Hapus"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Delete"
-msgstr "Hapus"
-
-#: www/me.html:75
+#: frappe/www/me.html:65
msgid "Delete Account"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete All"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:196
+msgctxt "Title of confirmation dialog"
+msgid "Delete Column"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
msgid "Delete Data"
msgstr "Hapus Data"
-#: public/js/frappe/views/kanban/kanban_view.js:103
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
msgid "Delete Kanban Board"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:824
-msgid "Delete Workspace"
+#: frappe/public/js/form_builder/components/Section.vue:125
+msgctxt "Title of confirmation dialog"
+msgid "Delete Section"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:696
+#: frappe/public/js/form_builder/components/Tabs.vue:64
+msgctxt "Title of confirmation dialog"
+msgid "Delete Tab"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:935
+msgid "Delete and Generate New"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:203
+msgctxt "Button text"
+msgid "Delete column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "Hapus komentar?"
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:30
+#: frappe/public/js/form_builder/components/Section.vue:205
+msgctxt "Button text"
+msgid "Delete entire column with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:134
+msgctxt "Button text"
+msgid "Delete entire section with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:73
+msgctxt "Button text"
+msgid "Delete entire tab with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:132
+msgctxt "Button text"
+msgid "Delete section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:71
+msgctxt "Button text"
+msgid "Delete tab"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
msgid "Delete this record to allow sending to this email address"
msgstr "Hapus data ini untuk bisa mengirim ke alamat surel ini"
-#: public/js/frappe/list/list_view.js:1862
+#: frappe/public/js/frappe/list/list_view.js:2030
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: public/js/frappe/list/list_view.js:1868
+#: frappe/public/js/frappe/list/list_view.js:2036
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Hapus {0} item secara permanen?"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Deleted"
-msgstr "Dihapus"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Deleted"
-msgstr "Dihapus"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Deleted"
-msgstr "Dihapus"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Deleted"
-msgstr "Dihapus"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr "DocType dihapus"
+msgstr ""
#. Name of a DocType
-#: core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Document"
msgstr "Dokumen dihapus"
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Deleted Document"
+#: frappe/automation/workspace/tools/tools.json
msgid "Deleted Documents"
-msgstr "Dokumen yang dihapus"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "Nama dihapus"
+msgstr ""
-#: desk/reportview.py:488
+#: frappe/desk/reportview.py:606
+msgid "Deleted all documents successfully"
+msgstr ""
+
+#: frappe/desk/reportview.py:583
msgid "Deleting {0}"
msgstr "Menghapus {0}"
-#: public/js/frappe/list/bulk_operations.js:158
+#: frappe/public/js/frappe/list/bulk_operations.js:202
msgid "Deleting {0} records..."
msgstr ""
-#: public/js/frappe/model/model.js:706
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
-#. Label of a Table field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Deletion Steps "
msgstr ""
-#: core/doctype/page/page.py:108
+#: frappe/core/doctype/page/page.py:110
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
msgid "Deletion of this document is only permitted in developer mode."
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:276
+#. Label of the delimiter_options (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Delimiter Options"
+msgstr ""
+
+#: frappe/utils/csvutils.py:76
+msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:296
msgid "Delimiter must be a single character"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the delivery_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Delivery Status"
msgstr "Status Pengiriman"
-#: templates/includes/oauth_confirmation.html:14
-msgid "Deny"
-msgstr ""
-
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:17
msgid "Deny"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the department (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Department"
msgstr "Departemen"
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the dependencies (Data) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
+#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Depends On"
-msgstr "Tergantung Pada"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Dependencies & Licenses"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the depends_on (Code) field in DocType 'Custom Field'
+#. Label of the depends_on (Code) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Depends On"
-msgstr "Tergantung Pada"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:32
+#: frappe/public/js/frappe/ui/filters/filter.js:32
msgid "Descendants Of"
-msgstr "Descendants Of"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:33
+#: frappe/public/js/frappe/ui/filters/filter.js:33
msgid "Descendants Of (inclusive)"
msgstr ""
-#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Text Editor field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a HTML Editor field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Section Break field in DocType 'Onboarding Step'
-#. Label of a Markdown Editor field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'Print Heading'
-#: printing/doctype/print_heading/print_heading.json
-msgctxt "Print Heading"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'Tag'
-#: desk/doctype/tag/tag.json
-msgctxt "Tag"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Text Editor field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Text field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Small Text field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Description"
-msgstr "Deskripsi"
-
-#. Label of a Text field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
+#. Label of the description (Small Text) field in DocType 'Assignment Rule'
+#. Label of the description (Small Text) field in DocType 'Reminder'
+#. Label of the description (Small Text) field in DocType 'DocField'
+#. Label of the description (Small Text) field in DocType 'DocType'
+#. Label of the description (Text) field in DocType 'Customize Form Field'
+#. Label of the description (Small Text) field in DocType 'Desktop Icon'
+#. Label of the description (Text Editor) field in DocType 'Event'
+#. Label of the description (HTML Editor) field in DocType 'Form Tour Step'
+#. Label of the description_section (Section Break) field in DocType
+#. 'Onboarding Step'
+#. Label of the description (Markdown Editor) field in DocType 'Onboarding
+#. Step'
+#. Label of the description (Small Text) field in DocType 'Tag'
+#. Label of the description (Text Editor) field in DocType 'ToDo'
+#. Label of the description (HTML Editor) field in DocType 'Workspace Link'
+#. Label of the description (Small Text) field in DocType 'Print Heading'
+#. Label of the description (Small Text) field in DocType 'Blog Category'
+#. Label of the description (Small Text) field in DocType 'UTM Medium'
+#. Label of the description (Small Text) field in DocType 'UTM Source'
+#. Label of the description (Text) field in DocType 'Web Form Field'
+#. Label of the meta_description (Small Text) field in DocType 'Web Page'
+#. Label of the description (Text) field in DocType 'Website Slideshow Item'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/report/todo/todo.py:39
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/public/js/frappe/form/reminders.js:44
+#: frappe/public/js/frappe/widgets/widget_dialog.js:256
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/www/attribution.html:24
msgid "Description"
msgstr "Deskripsi"
#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)"
-msgstr "Deskripsi untuk halaman daftar, dalam teks biasa, hanya beberapa baris. (maks 200 karakter)"
+msgstr ""
#. Description of the 'Description' (Section Break) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Description to inform the user about any action that is going to be performed"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the designation (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Designation"
msgstr "Penunjukan"
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the desk_access (Check) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
msgid "Desk Access"
-msgstr "meja Access"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_settings_section (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Settings"
msgstr ""
-#. Label of a Select field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_theme (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Theme"
msgstr ""
#. Name of a role
-#: automation/doctype/reminder/reminder.json core/doctype/report/report.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/user_group/user_group.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_filter/list_filter.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_template/email_template.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Desk User"
msgstr ""
#. Name of a DocType
-#: desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Desktop Icon"
-msgstr "Desktop Icon"
+msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:230
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225
msgid "Desktop Icon already exists"
msgstr "Ikon Desktop sudah ada"
-#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38
-#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276
+#. Label of the details_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the details (Code) field in DocType 'Scheduled Job Log'
+#. Label of the details_tab (Tab Break) field in DocType 'Customize Form'
+#. Label of the details (Section Break) field in DocType 'Event'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/form_builder/components/Tabs.vue:92
+#: frappe/public/js/form_builder/store.js:259
+#: frappe/public/js/form_builder/utils.js:38
+#: frappe/public/js/frappe/form/layout.js:153
+#: frappe/public/js/frappe/views/treeview.js:292
msgid "Details"
msgstr "Penjelasan"
-#. Label of a Tab Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Details"
-msgstr "Penjelasan"
+#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Detect CSV type"
+msgstr ""
-#. Label of a Section Break field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Details"
-msgstr "Penjelasan"
-
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Details"
-msgstr "Penjelasan"
-
-#: core/page/permission_manager/permission_manager.js:477
+#: frappe/core/page/permission_manager/permission_manager.js:494
msgid "Did not add"
msgstr "Tidak menambahkan"
-#: core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:388
msgid "Did not remove"
msgstr "Tidak menghapus"
-#: public/js/frappe/utils/diffview.js:56
+#: frappe/public/js/frappe/utils/diffview.js:57
msgid "Diff"
msgstr ""
#. Description of the 'States' (Section Break) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc."
-msgstr "Berbeda \"Negara\" dokumen ini dapat eksis masuk Like \"Open\", \"Menunggu Persetujuan\" dll"
+msgstr ""
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Digit"
+msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Directory Server"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_auto_refresh (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Nonaktifkan Refresh Otomatis"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_automatic_recency_filters (Check) field in DocType
+#. 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Automatic Recency Filters"
+msgstr ""
+
+#. Label of the disable_change_log_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Change Log Notification"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_comment_count (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Comment Count"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_comments (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Comments"
-msgstr "Nonaktifkan Komentar"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_contact_us (Check) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Disable Contact Us Page"
+msgstr ""
+
+#. Label of the disable_count (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Count"
-msgstr "Nonaktifkan Count"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_document_sharing (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Document Sharing"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_likes (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Likes"
msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Disable Report"
msgstr "Nonaktifkan Laporan"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Disable SMTP server authentication"
-msgstr "Nonaktifkan otentikasi server SMTP"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_sidebar_stats (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Sidebar Stats"
-msgstr "Nonaktifkan Status Bilah Samping"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:146
+#: frappe/website/doctype/website_settings/website_settings.js:146
msgid "Disable Signup for your site"
msgstr "Nonaktifkan Pendaftaran untuk situs Anda"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_standard_email_footer (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Nonaktifkan standard catatan kaki pada surel"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_system_update_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable System Update Notification"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_user_pass_login (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Username/Password Login"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the disable_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Disable signups"
msgstr ""
-#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108
-#: public/js/frappe/model/indicator.js:115
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Auto Repeat'
+#. Label of the disabled (Check) field in DocType 'Assignment Rule'
+#. Label of the disabled (Check) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the disabled (Check) field in DocType 'Milestone Tracker'
+#. Label of the disabled (Check) field in DocType 'Address'
+#. Label of the disabled (Check) field in DocType 'Document Naming Rule'
+#. Label of the disabled (Check) field in DocType 'Report'
+#. Label of the disabled (Check) field in DocType 'Role'
+#. Label of the disabled (Check) field in DocType 'Server Script'
+#. Label of the disabled (Check) field in DocType 'Letter Head'
+#. Label of the disabled (Check) field in DocType 'Print Format'
+#. Label of the disabled (Check) field in DocType 'Print Style'
+#. Label of the disabled (Check) field in DocType 'Blogger'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user_list.js:14
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/templates/address_list.html:35
+#: frappe/public/js/frappe/model/indicator.js:112
+#: frappe/public/js/frappe/model/indicator.js:119
+#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
msgstr "Dinonaktifkan"
-#. Label of a Check field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Disabled"
-msgstr "Dinonaktifkan"
-
-#: email/doctype/email_account/email_account.js:237
+#: frappe/email/doctype/email_account/email_account.js:300
msgid "Disabled Auto Reply"
msgstr "Balas Otomatis Dinonaktifkan"
-#: public/js/frappe/views/communication.js:30
-#: public/js/frappe/views/dashboard/dashboard_view.js:70
-#: public/js/frappe/views/workspace/workspace.js:502
-#: public/js/frappe/web_form/web_form.js:187
-#: website/doctype/web_form/templates/web_form.html:41
+#: frappe/public/js/frappe/form/toolbar.js:338
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
+#: frappe/public/js/frappe/views/workspace/workspace.js:351
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Discard"
msgstr "Membuang"
-#: public/js/frappe/web_form/web_form.js:184
+#: frappe/website/doctype/web_form/templates/web_form.html:44
+msgctxt "Button in web form"
+msgid "Discard"
+msgstr "Membuang"
+
+#: frappe/public/js/frappe/views/communication.js:30
+msgctxt "Discard Email"
+msgid "Discard"
+msgstr "Membuang"
+
+#: frappe/public/js/frappe/form/form.js:848
+msgid "Discard {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:184
msgid "Discard?"
msgstr ""
+#: frappe/desk/form/save.py:75
+msgid "Discarded"
+msgstr ""
+
+#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help."
+msgstr ""
+
#. Name of a DocType
-#: website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Discussion Reply"
msgstr ""
#. Name of a DocType
-#: website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Discussion Topic"
msgstr ""
-#: templates/discussions/reply_card.html:16
+#: frappe/public/js/frappe/form/footer/form_timeline.js:638
+#: frappe/templates/discussions/reply_card.html:16
+#: frappe/templates/discussions/reply_section.html:29
msgid "Dismiss"
msgstr "Memberhentikan"
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Display"
-msgstr "Tampilan"
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:572
+msgctxt "Stop showing the onboarding widget."
+msgid "Dismiss"
+msgstr "Memberhentikan"
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the display (Section Break) field in DocType 'DocField'
+#. Label of the updates_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the display (Section Break) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Display"
-msgstr "Tampilan"
+msgstr ""
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Display Depends On"
-msgstr "Tampilan Tergantung Pada"
+msgstr ""
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Display Depends On (JS)"
msgstr ""
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180
+msgid "Divider"
+msgstr ""
+
+#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do Not Create New User "
msgstr ""
#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: public/js/frappe/form/grid.js:1156
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "Jangan edit header yang sudah ada di template"
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
-#: core/doctype/system_settings/system_settings.js:66
+#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
-#: public/js/frappe/form/form.js:977
+#: frappe/public/js/frappe/form/form.js:958
msgid "Do you want to cancel all linked documents?"
msgstr "Apakah Anda ingin membatalkan semua dokumen yang ditautkan?"
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_docevent (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Event"
-msgstr "Acara dok"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Events"
-msgstr "Acara Dok"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the doc_status (Select) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Doc Status"
-msgstr "Status Doc"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docfield/docfield.json
-msgid "DocField"
-msgstr "DocField"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocField"
-msgstr "DocField"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "DocPerm"
-msgstr "DocPerm"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docshare/docshare.json
+#: frappe/core/doctype/docshare/docshare.json
msgid "DocShare"
-msgstr "DocShare"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:264
-msgid ""
-"DocStatus of the following states have changed:
{0}
\n"
+#: frappe/workflow/doctype/workflow/workflow.js:264
+msgid "DocStatus of the following states have changed:
{0}
\n"
"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n"
"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n"
"\t\t\t\t"
msgstr ""
+#. Label of the document_type (Link) field in DocType 'Amended Document Naming
+#. Settings'
+#. Label of the doctype_name (Link) field in DocType 'Audit Trail'
#. Name of a DocType
-#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
-#: website/doctype/website_slideshow/website_slideshow.js:18
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "DocType"
-msgid "DocType"
-msgstr "DocType"
-
#. Group in Module Def's connections
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "DocType"
-msgstr "DOCTYPE"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector'
+#. Label of the ref_doctype (Link) field in DocType 'Version'
+#. Label of a shortcut in the Build Workspace
+#. Label of the dt (Link) field in DocType 'Client Script'
+#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#. Label of a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the doc_type (Link) field in DocType 'Property Setter'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
+#. Label of the doc_type (Link) field in DocType 'Print Format'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/data_export/exporter.py:26
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:164
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:18
msgid "DocType"
-msgstr "DocType"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1528
+#: frappe/core/doctype/doctype/doctype.py:1577
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr "DocType {0} yang disediakan untuk bidang {1} harus memiliki minimal satu bidang Tautan"
#. Name of a DocType
-#: core/doctype/doctype_action/doctype_action.json
-msgid "DocType Action"
-msgstr "Tindakan DocType"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Action"
msgstr "Tindakan DocType"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the doctype_event (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "DocType Event"
-msgstr "Acara DocType"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
msgid "DocType Layout"
msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
msgid "DocType Layout Field"
msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_link/doctype_link.json
-msgid "DocType Link"
-msgstr "Tautan DocType"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Link"
msgstr "Tautan DocType"
-#: core/doctype/doctype/doctype_list.js:10
-msgid "DocType Name"
-msgstr ""
-
#. Name of a DocType
-#: core/doctype/doctype_state/doctype_state.json
-msgid "DocType State"
-msgstr ""
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType State"
msgstr ""
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
-msgstr "Tampilan DocType"
+msgstr ""
-#: core/doctype/doctype/doctype.py:646
+#: frappe/core/doctype/doctype/doctype.py:656
msgid "DocType can not be merged"
msgstr "DocType tidak dapat digabungkan"
-#: core/doctype/doctype/doctype.py:640
+#: frappe/core/doctype/doctype/doctype.py:650
msgid "DocType can only be renamed by Administrator"
msgstr "DOCTYPE hanya dapat diganti oleh Administrator"
-#: integrations/doctype/webhook/webhook.py:79
+#. Description of a DocType
+#: frappe/core/doctype/doctype/doctype.json
+msgid "DocType is a Table / Form in the application."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:79
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType harus Submittable untuk Doc Event yang dipilih"
-#: client.py:421
+#: frappe/client.py:403
msgid "DocType must be a string"
msgstr ""
-#: public/js/form_builder/store.js:149
+#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:57
+#: frappe/core/doctype/log_settings/log_settings.py:57
msgid "DocType not supported by Log Settings."
msgstr ""
#. Description of the 'Document Type' (Link) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "DocType on which this Workflow is applicable."
-msgstr "DocType yang menerapkan Alur Kerja ini."
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_settings.js:4
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
msgstr ""
-#: modules/utils.py:161
+#: frappe/modules/utils.py:175
msgid "DocType {0} does not exist."
msgstr ""
-#: modules/utils.py:224
+#: frappe/modules/utils.py:238
msgid "DocType {} not found"
msgstr ""
-#: core/doctype/doctype/doctype.py:1009
+#: frappe/core/doctype/doctype/doctype.py:1028
msgid "DocType's name should not start or end with whitespace"
msgstr "Nama DocType tidak boleh dimulai atau diakhiri dengan spasi"
-#: core/doctype/doctype/doctype.js:70
-msgid "DocTypes can not be modified, please use {0} instead"
+#: frappe/core/doctype/doctype/doctype.js:67
+msgid "DocTypes cannot be modified, please use {0} instead"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:645
+#. Label of the ref_doctype (Link) field in DocType 'Document Follow'
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "DOCTYPE"
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "Doctype"
-msgstr "DOCTYPE"
-
-#: core/doctype/doctype/doctype.py:1004
+#: frappe/core/doctype/doctype/doctype.py:1022
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:3
+#: frappe/public/js/frappe/list/bulk_operations.js:3
msgid "Doctype required"
msgstr "Jenis dokumen diperlukan"
-#: public/js/frappe/views/workspace/workspace.js:1303
-msgid "Doctype with same route already exist. Please choose different title."
+#. Label of the reference_name (Data) field in DocType 'Milestone'
+#. Label of the document (Dynamic Link) field in DocType 'Audit Trail'
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector'
+#. Label of the document (Link) field in DocType 'Notification Subscribed
+#. Document'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
+#: frappe/public/js/frappe/views/render_preview.js:42
+msgid "Document"
msgstr ""
-#. Label of a Dynamic Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Document"
-msgstr "Dokumen"
-
-#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Document"
-msgstr "Dokumen"
-
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document"
-msgstr "Dokumen"
-
-#. Label of a Link field in DocType 'Notification Subscribed Document'
-#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json
-msgctxt "Notification Subscribed Document"
-msgid "Document"
-msgstr "Dokumen"
-
-#. Label of a Dynamic Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "Document"
-msgstr "Dokumen"
-
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the actions (Table) field in DocType 'DocType'
+#. Label of the document_actions_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Actions"
-msgstr "Tindakan Dokumen"
+msgstr ""
+#. Label of the document_follow_notifications_section (Section Break) field in
+#. DocType 'User'
#. Name of a DocType
-#: email/doctype/document_follow/document_follow.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/document_follow/document_follow.json
msgid "Document Follow"
msgstr "Ikuti Dokumen"
-#. Label of a Section Break field in DocType 'User'
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Document Follow"
-msgstr "Ikuti Dokumen"
-
-#: desk/form/document_follow.py:84
+#: frappe/desk/form/document_follow.py:94
msgid "Document Follow Notification"
msgstr "Dokumen Ikuti Pemberitahuan"
-#. Label of a Data field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the document_name (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Document Link"
-msgstr "Tautan Dokumen"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the section_break_12 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Document Linking"
msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the links (Table) field in DocType 'DocType'
+#. Label of the document_links_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Links"
-msgstr "Tautan Dokumen"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1162
+#: frappe/core/doctype/doctype/doctype.py:1211
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1182
+#: frappe/core/doctype/doctype/doctype.py:1231
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: core/doctype/doctype/doctype.py:1145
+#: frappe/core/doctype/doctype/doctype.py:1194
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: core/doctype/doctype/doctype.py:1151
+#: frappe/core/doctype/doctype/doctype.py:1200
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:36
-#: public/js/frappe/form/form_tour.js:58
+#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
+#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
+#. Label of the document_name (Data) field in DocType 'Transaction Log'
+#. Label of the docname (Data) field in DocType 'Version'
+#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link'
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:36
+#: frappe/core/doctype/version/version.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/form/form_tour.js:62
msgid "Document Name"
msgstr "Dokumen Nama"
-#. Label of a Dynamic Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Name"
-msgstr "Dokumen Nama"
-
-#. Label of a Dynamic Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "Document Name"
-msgstr "Dokumen Nama"
-
-#. Label of a Dynamic Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Name"
-msgstr "Dokumen Nama"
-
-#. Label of a Dynamic Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Name"
-msgstr "Dokumen Nama"
-
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Document Name"
-msgstr "Dokumen Nama"
-
-#. Label of a Data field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Document Name"
-msgstr "Dokumen Nama"
-
-#: client.py:424
+#: frappe/client.py:406
msgid "Document Name must be a string"
msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Document Naming Rule"
msgstr "Aturan Penamaan Dokumen"
#. Name of a DocType
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "Document Naming Rule Condition"
msgstr "Kondisi Aturan Penamaan Dokumen"
#. Name of a DocType
-#: core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Document Naming Settings"
msgstr ""
-#: model/document.py:1519
+#: frappe/model/document.py:478
msgid "Document Queued"
msgstr "dokumen Antri"
-#: core/doctype/deleted_document/deleted_document_list.js:38
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:38
msgid "Document Restoration Summary"
msgstr "Ringkasan Restorasi Dokumen"
-#: core/doctype/deleted_document/deleted_document.py:67
+#: frappe/core/doctype/deleted_document/deleted_document.py:68
msgid "Document Restored"
msgstr "Dokumen dipulihkan"
-#: public/js/frappe/widgets/onboarding_widget.js:359
-#: public/js/frappe/widgets/onboarding_widget.js:401
-#: public/js/frappe/widgets/onboarding_widget.js:420
-#: public/js/frappe/widgets/onboarding_widget.js:439
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:354
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:396
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:415
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Document Saved"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_share (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Document Share"
-msgstr "Berbagi Dokumen"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
msgid "Document Share Key"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the document_share_key_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Document Share Key Expiry (in Days)"
msgstr ""
#. Name of a report
#. Label of a Link in the Users Workspace
-#: core/report/document_share_report/document_share_report.json
-#: core/workspace/users/users.json
+#: frappe/core/report/document_share_report/document_share_report.json
+#: frappe/core/workspace/users/users.json
msgid "Document Share Report"
msgstr "Dokumen Saham Laporkan"
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the states (Table) field in DocType 'DocType'
+#. Label of the document_states_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the states (Table) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document States"
-msgstr "Dokumen Negara"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Document States"
-msgstr "Dokumen Negara"
-
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document States"
-msgstr "Dokumen Negara"
-
-#: model/__init__.py:152 model/meta.py:47 public/js/frappe/model/meta.js:199
-#: public/js/frappe/model/model.js:127
+#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202
+#: frappe/public/js/frappe/model/model.js:137
msgid "Document Status"
msgstr "Dokumen Status"
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the tag (Link) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Tag"
-msgstr "Tag dokumen"
+msgstr ""
-#. Label of a Data field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the title (Data) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Title"
-msgstr "Judul dokumen"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:26
-#: core/page/permission_manager/permission_manager.js:49
-#: core/page/permission_manager/permission_manager.js:211
-#: core/page/permission_manager/permission_manager.js:432
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Global Search DocType'
-#: desk/doctype/global_search_doctype/global_search_doctype.json
-msgctxt "Global Search DocType"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Number Card'
+#. Label of the document_type (Link) field in DocType 'Assignment Rule'
+#. Label of the reference_type (Link) field in DocType 'Milestone'
+#. Label of the reminder_doctype (Link) field in DocType 'Reminder'
+#. Label of the reference_doctype (Link) field in DocType 'Data Import'
+#. Label of the share_doctype (Link) field in DocType 'DocShare'
+#. Label of the document_type (Link) field in DocType 'Document Naming Rule'
+#. Label of the ref_doctype (Link) field in DocType 'Session Default'
+#. Label of the document_type (Link) field in DocType 'User Document Type'
+#. Label of the document_type (Link) field in DocType 'User Select Document
+#. Type'
+#. Label of the document_type (Link) field in DocType 'DocType Layout'
+#. Label of the document_type (Link) field in DocType 'Bulk Update'
+#. Label of the document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the document_type (Link) field in DocType 'Global Search DocType'
+#. Label of the document_type (Link) field in DocType 'Notification Log'
+#. Label of the document_type (Link) field in DocType 'Number Card'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the document_type (Link) field in DocType 'Tag Link'
+#. Label of the document_type (Link) field in DocType 'Notification'
+#. Label of the document_type (Link) field in DocType 'Print Format Field
+#. Template'
+#. Label of the document_type (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the document_type (Link) field in DocType 'Workflow'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/session_default/session_default.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:26
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/page/permission_manager/permission_manager.js:49
+#: frappe/core/page/permission_manager/permission_manager.js:218
+#: frappe/core/page/permission_manager/permission_manager.js:449
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
msgstr "Jenis Dokumen"
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Session Default'
-#: core/doctype/session_default/session_default.json
-msgctxt "Session Default"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'User Select Document Type'
-#: core/doctype/user_select_document_type/user_select_document_type.json
-msgctxt "User Select Document Type"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#. Label of a Link field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document Type"
-msgstr "Jenis Dokumen"
-
-#: desk/doctype/number_card/number_card.py:55
+#: frappe/desk/doctype/number_card/number_card.py:59
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: permissions.py:149
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "Jenis Dokumen tidak dapat diimpor"
-#: permissions.py:145
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "Jenis Dokumen tidak dapat dikirim"
-#. Label of a Link field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Jenis Dokumen untuk Dilacak"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:39
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
msgstr "Jenis Dokumen {0} telah diulang."
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr "Jenis Dokumen"
+msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types (Select Permissions Only)"
msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types and Permissions"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:162
+#: frappe/core/doctype/submission_queue/submission_queue.py:163
+#: frappe/model/document.py:1952
msgid "Document Unlocked"
msgstr ""
-#: public/js/frappe/list/list_view.js:1054
+#: frappe/desk/form/document_follow.py:56
+msgid "Document follow is not enabled for this user."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1157
msgid "Document has been cancelled"
msgstr ""
-#: public/js/frappe/list/list_view.js:1053
+#: frappe/public/js/frappe/list/list_view.js:1156
msgid "Document has been submitted"
msgstr ""
-#: public/js/frappe/list/list_view.js:1052
+#: frappe/public/js/frappe/list/list_view.js:1155
msgid "Document is in draft state"
msgstr ""
-#: core/doctype/communication/communication.js:182
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Document is only editable by users with role"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:182
msgid "Document not Relinked"
msgstr ""
-#: model/rename_doc.py:230 public/js/frappe/form/toolbar.js:145
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
msgid "Document renamed from {0} to {1}"
msgstr "Dokumen diubah namanya dari {0} ke {1}"
-#: public/js/frappe/form/toolbar.js:154
+#: frappe/public/js/frappe/form/toolbar.js:164
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:397
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
msgstr "Jenis dokumen diperlukan untuk membuat bagan dasbor"
-#: core/doctype/deleted_document/deleted_document.py:44
+#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
msgstr "Dokumen {0} Sudah Dipulihkan"
-#: workflow/doctype/workflow_action/workflow_action.py:203
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Dokumen {0} telah diatur untuk menyatakan {1} oleh {2}"
-#: client.py:443
+#: frappe/client.py:430
msgid "Document {0} {1} does not exist"
msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the documentation (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Tautan Dokumentasi"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the documentation_url (Data) field in DocType 'DocField'
+#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr "URL Dokumentasi"
+msgstr ""
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Documentation URL"
-msgstr "URL Dokumentasi"
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
+msgid "Documents"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:25
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
msgid "Documents restored successfully"
msgstr "Dokumen berhasil dipulihkan"
-#: core/doctype/deleted_document/deleted_document_list.js:33
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
msgid "Documents that failed to restore"
msgstr "Dokumen yang gagal dipulihkan"
-#: core/doctype/deleted_document/deleted_document_list.js:29
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
msgid "Documents that were already restored"
msgstr "Dokumen yang sudah dipulihkan"
#. Name of a DocType
-#: core/doctype/domain/domain.json
+#. Label of the domain (Data) field in DocType 'Domain'
+#. Label of the domain (Link) field in DocType 'Has Domain'
+#. Label of the domain (Link) field in DocType 'Email Account'
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
+#: frappe/email/doctype/email_account/email_account.json
msgid "Domain"
-msgstr "Domain"
+msgstr ""
-#. Label of a Data field in DocType 'Domain'
-#: core/doctype/domain/domain.json
-msgctxt "Domain"
-msgid "Domain"
-msgstr "Domain"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Domain"
-msgstr "Domain"
-
-#. Label of a Link field in DocType 'Has Domain'
-#: core/doctype/has_domain/has_domain.json
-msgctxt "Has Domain"
-msgid "Domain"
-msgstr "Domain"
-
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the domain_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Domain Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domain Settings"
msgstr "Pengaturan Domain"
-#. Label of a HTML field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr "Domain HTML"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "Jangan tag HTML Encode HTML seperti <script> atau hanya karakter seperti <atau>, karena mereka dapat sengaja digunakan dalam bidang ini"
+msgstr ""
-#: public/js/frappe/data_import/import_preview.js:268
+#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
msgstr "Jangan Impor"
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the override_status (Check) field in DocType 'Workflow'
+#. Label of the avoid_status_override (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr "Jangan Override Status"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Don't Override Status"
-msgstr "Jangan Override Status"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the mute_emails (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Don't Send Emails"
-msgstr "Jangan Kirim Email"
-
-#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
-#. Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
-#: www/login.html:119 www/login.html:135 www/update-password.html:34
+#: frappe/www/login.html:139 frappe/www/login.html:155
+#: frappe/www/update-password.html:70
msgid "Don't have an account?"
msgstr ""
-#: public/js/frappe/ui/messages.js:233
-#: public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/frappe/form/form_tour.js:16
+#: frappe/public/js/frappe/ui/messages.js:238
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Done"
-msgstr ""
+msgstr "Matang"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr "Donat"
+msgstr ""
-#: core/doctype/file/file.js:5
-#: email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/form_builder/components/EditableInput.vue:43
+msgid "Double click to edit label"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:15
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
msgstr "Unduh"
-#: public/js/frappe/views/reports/report_utils.js:229
+#: frappe/public/js/frappe/views/reports/report_utils.js:237
msgctxt "Export report"
msgid "Download"
msgstr "Unduh"
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/page/backups/backups.js:4
msgid "Download Backups"
msgstr "Unduh Cadangan"
-#: templates/emails/download_data.html:6
+#: frappe/templates/emails/download_data.html:6
msgid "Download Data"
msgstr "Unduh Data"
-#: desk/page/backups/backups.js:12
+#: frappe/desk/page/backups/backups.js:14
msgid "Download Files Backup"
msgstr "Unduh File Cadangan"
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "Download Link"
msgstr "Unduh Tautan"
-#: public/js/frappe/views/reports/query_report.js:764
+#: frappe/public/js/frappe/list/bulk_operations.js:134
+msgid "Download PDF"
+msgstr "Unduh PDF"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:831
msgid "Download Report"
msgstr "Unduh Laporan"
-#. Label of a Button field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the download_template (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Download Template"
msgstr "Unduh Template"
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:60
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:68
-#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "Unduh Data Anda"
-#: public/js/frappe/model/indicator.js:73
-#: public/js/frappe/ui/filters/filter.js:493
+#: frappe/core/doctype/prepared_report/prepared_report.js:49
+msgid "Download as CSV"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.js:98
+msgid "Download vCard"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact_list.js:4
+msgid "Download vCards"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:46
+msgid "Dr"
+msgstr ""
+
+#: frappe/public/js/frappe/model/indicator.js:73
+#: frappe/public/js/frappe/ui/filters/filter.js:538
msgid "Draft"
msgstr "Draf"
-#: public/js/frappe/views/workspace/blocks/header.js:46
-#: public/js/frappe/views/workspace/blocks/paragraph.js:136
-#: public/js/frappe/views/workspace/blocks/spacer.js:44
-#: public/js/frappe/views/workspace/workspace.js:565
-#: public/js/frappe/widgets/base_widget.js:33
+#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
+#: frappe/public/js/frappe/widgets/base_widget.js:33
msgid "Drag"
msgstr ""
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Access Token"
-msgstr "Token Akses Dropbox"
-
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Refresh Token"
+#: frappe/public/js/form_builder/components/Tabs.vue:189
+msgid "Drag & Drop a section here from another tab"
msgstr ""
-#. Name of a DocType
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Settings"
-msgstr "Pengaturan dropbox"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14
+msgid "Drag and drop files here or upload from"
+msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Settings"
-msgstr "Pengaturan dropbox"
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76
+msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed."
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Dropbox Setup"
-msgstr "dropbox Pengaturan"
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3
+msgid "Drag elements from the sidebar to add. Drag them back to trash."
+msgstr ""
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296
+msgid "Drag to add state"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172
+msgid "Drop files here"
+msgstr ""
+
+#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr "Dropdown"
+msgstr ""
-#. Label of a Date field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the date (Date) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Due Date"
msgstr "Tanggal Jatuh Tempo"
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Due Date Based On"
-msgstr "Tanggal Jatuh Tempo Berdasarkan"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:377
-#: public/js/frappe/views/workspace/workspace.js:808
-#: public/js/frappe/views/workspace/workspace.js:975
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+#: frappe/public/js/frappe/form/toolbar.js:422
msgid "Duplicate"
msgstr "Duplikat"
-#: printing/doctype/print_format_field_template/print_format_field_template.py:52
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
msgid "Duplicate Entry"
msgstr ""
-#: public/js/frappe/list/list_filter.js:137
+#: frappe/public/js/frappe/list/list_filter.js:144
msgid "Duplicate Filter Name"
msgstr "Nama filter duplikat"
-#: model/base_document.py:563 model/rename_doc.py:113
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nama Duplikat"
-#: public/js/frappe/views/workspace/workspace.js:547
-#: public/js/frappe/views/workspace/workspace.js:809
-msgid "Duplicate Workspace"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate Row"
msgstr ""
-#: public/js/frappe/form/form.js:208
+#: frappe/public/js/frappe/form/form.js:209
msgid "Duplicate current row"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:990
-msgid "Duplicate of {0} named as {1} is created successfully"
+#: frappe/public/js/form_builder/components/Field.vue:245
+msgid "Duplicate field"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Duration"
-msgstr "Lamanya"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Duration"
-msgstr "Lamanya"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Duration"
-msgstr "Lamanya"
-
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Duration"
-msgstr "Lamanya"
-
-#. Label of a Float field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Duration"
-msgstr "Lamanya"
-
+#. Label of the duration (Float) field in DocType 'Recorder'
+#. Label of the duration (Float) field in DocType 'Recorder Query'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Duration"
-msgstr "Lamanya"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Duration"
msgstr "Lamanya"
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters"
-msgstr "Filter Dinamis"
-
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters JSON"
-msgstr "Filter Dinamis JSON"
-
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters JSON"
-msgstr "Filter Dinamis JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters Section"
-msgstr "Bagian Filter Dinamis"
-
-#. Name of a DocType
-#: core/doctype/dynamic_link/dynamic_link.json
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Dynamic Report Filters"
-msgstr "Filter Laporan Dinamis"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Route"
-msgstr "Rute Dinamis"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Template"
-msgstr "Template Dinamis"
-
-#. Description of the Onboarding Step 'Setup Naming Series'
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n"
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Dynamic"
msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:169
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85
-#: public/js/frappe/form/controls/markdown_editor.js:31
-#: public/js/frappe/form/footer/form_timeline.js:638
-#: public/js/frappe/form/toolbar.js:672
-#: public/js/frappe/views/reports/query_report.js:809
-#: public/js/frappe/views/reports/query_report.js:1617
-#: public/js/frappe/views/workspace/workspace.js:448
-#: public/js/frappe/views/workspace/workspace.js:802
-#: public/js/frappe/widgets/base_widget.js:64
-#: public/js/frappe/widgets/chart_widget.js:298
-#: public/js/frappe/widgets/number_card_widget.js:314
-#: templates/discussions/reply_card.html:29
-#: workflow/page/workflow_builder/workflow_builder.js:46
-#: workflow/page/workflow_builder/workflow_builder.js:84
-msgid "Edit"
-msgstr "Edit"
+#. Label of the dynamic_filters_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Dynamic Filters"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1943
-msgctxt "Button in list view actions menu"
-msgid "Edit"
-msgstr "Edit"
+#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dynamic Filters JSON"
+msgstr ""
+
+#. Label of the dynamic_filters_section (Section Break) field in DocType
+#. 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dynamic Filters Section"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Name of a DocType
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Dynamic Link"
+msgstr ""
+
+#. Label of the dynamic_report_filters_section (Section Break) field in DocType
+#. 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Dynamic Report Filters"
+msgstr ""
+
+#. Label of the dynamic_route (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Dynamic Route"
+msgstr ""
+
+#. Label of the dynamic_template (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Dynamic Template"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "ESC"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:169
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
+#: frappe/public/js/frappe/form/templates/address_list.html:13
+#: frappe/public/js/frappe/form/templates/contact_list.html:13
+#: frappe/public/js/frappe/form/toolbar.js:748
+#: frappe/public/js/frappe/views/reports/query_report.js:879
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/public/js/frappe/widgets/base_widget.js:64
+#: frappe/public/js/frappe/widgets/chart_widget.js:299
+#: frappe/public/js/frappe/widgets/number_card_widget.js:347
+#: frappe/templates/discussions/reply_card.html:29
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
msgid "Edit"
-msgstr "Edit"
+msgstr ""
-#: templates/emails/auto_email_report.html:63
+#: frappe/public/js/frappe/list/list_view.js:2111
+msgctxt "Button in list view actions menu"
+msgid "Edit"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:23
+msgctxt "Button in web form"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:345
+msgctxt "Edit grid row"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
+msgid "Edit Address in Form"
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:63
msgid "Edit Auto Email Report Settings"
msgstr "Edit Pengaturan Laporan Surel Otomatis"
-#: printing/page/print_format_builder/print_format_builder.js:719
+#: frappe/public/js/frappe/widgets/widget_dialog.js:38
+msgid "Edit Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:50
+msgid "Edit Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:727
msgid "Edit Custom HTML"
msgstr "Mengedit Custom HTML"
-#: public/js/frappe/form/toolbar.js:546
+#: frappe/public/js/frappe/form/toolbar.js:619
msgid "Edit DocType"
msgstr "mengedit DocType"
-#: public/js/frappe/list/list_view.js:1691
+#: frappe/public/js/frappe/list/list_view.js:1827
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "mengedit DocType"
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42
-#: workflow/page/workflow_builder/workflow_builder.js:42
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
msgid "Edit Existing"
msgstr ""
-#: printing/doctype/print_format/print_format.js:28
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
+msgid "Edit Filters"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:29
+msgid "Edit Footer"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:28
msgid "Edit Format"
msgstr "Mengedit Format"
-#: public/js/frappe/form/quick_entry.js:275
+#: frappe/public/js/frappe/form/quick_entry.js:326
msgid "Edit Full Form"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:602
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27
+#: frappe/public/js/print_format_builder/Field.vue:83
+msgid "Edit HTML"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:9
+msgid "Edit Header"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:609
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8
msgid "Edit Heading"
msgstr "Mengedit Heading"
-#: public/js/print_format_builder/print_format_builder.bundle.js:24
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
+msgid "Edit Letter Head"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:35
+msgid "Edit Letter Head Footer"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:42
+msgid "Edit Links"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:44
+msgid "Edit Number Card"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:46
+msgid "Edit Onboarding"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24
msgid "Edit Print Format"
msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27
+#: frappe/www/me.html:38
msgid "Edit Profile"
-msgstr "Edit Profile"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:173
+#: frappe/printing/page/print_format_builder/print_format_builder.js:173
msgid "Edit Properties"
-msgstr "Edit Properties"
-
-#: website/doctype/web_form/templates/web_form.html:20
-msgid "Edit Response"
msgstr ""
-#: public/js/frappe/utils/web_template.js:5
-msgid "Edit Values"
-msgstr "Edit Nilai"
-
-#. Label of a Button field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
-msgid "Edit Values"
-msgstr "Edit Nilai"
-
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Edit Values"
-msgstr "Edit Nilai"
-
-#: public/js/frappe/views/workspace/workspace.js:803
-msgid "Edit Workspace"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:48
+msgid "Edit Quick List"
msgstr ""
-#: desk/doctype/note/note.js:11
+#: frappe/public/js/frappe/widgets/widget_dialog.js:40
+msgid "Edit Shortcut"
+msgstr ""
+
+#. Label of the edit_values (Button) field in DocType 'Web Page Block'
+#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
+#. Settings'
+#. Label of the edit_footer_template_values (Button) field in DocType 'Website
+#. Settings'
+#: frappe/public/js/frappe/utils/web_template.js:5
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Edit Values"
+msgstr "Edit Nilai"
+
+#: frappe/desk/doctype/note/note.js:11
msgid "Edit mode"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:713
+#: frappe/public/js/form_builder/components/Field.vue:254
+msgid "Edit the {0} Doctype"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:721
msgid "Edit to add content"
msgstr "Edit untuk menambahkan konten"
-#: workflow/doctype/workflow/workflow.js:18
+#: frappe/public/js/frappe/web_form/web_form.js:446
+msgctxt "Button in web form"
+msgid "Edit your response"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:18
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:652
+#: frappe/public/js/frappe/views/reports/report_view.js:678
+#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
-msgstr "Edit {0}"
+msgstr ""
-#: core/doctype/doctype/doctype_list.js:41
+#. Label of the editable_grid (Check) field in DocType 'DocType'
+#. Label of the editable_grid (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
msgstr "diedit Grid"
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Editable Grid"
-msgstr "diedit Grid"
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Editing Row"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Editable Grid"
-msgstr "diedit Grid"
-
-#: public/js/print_format_builder/print_format_builder.bundle.js:14
-#: public/js/workflow_builder/workflow_builder.bundle.js:20
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
msgid "Editing {0}"
msgstr ""
#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr "Misalnya. smsgateway.com / api / send_sms.cgi"
+msgstr ""
-#: rate_limiter.py:139
+#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Element Selector"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-#: core/doctype/success_action/success_action.js:57
-#: email/doctype/newsletter/newsletter.js:156
-#: public/js/frappe/form/success_action.js:85
-#: public/js/frappe/form/toolbar.js:341
-#: templates/includes/comments/comments.html:25 templates/signup.html:9
-#: www/login.html:7 www/login.py:93
-msgid "Email"
-msgstr "Surel"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email"
-msgstr "Surel"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Email"
-msgstr "Surel"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Email"
-msgstr "Surel"
-
-#. Label of a Data field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email"
-msgstr "Surel"
-
-#. Label of a Data field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Email"
-msgstr "Surel"
-
-#. Label of a Data field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Email"
-msgstr "Surel"
-
-#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Email"
-msgstr "Surel"
-
-#. Label of a Data field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Email"
-msgstr "Surel"
-
+#. Label of the email (Check) field in DocType 'Custom DocPerm'
+#. Label of the email (Check) field in DocType 'DocPerm'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the email (Data) field in DocType 'User'
+#. Label of the email_settings (Section Break) field in DocType 'User'
+#. Label of the email (Check) field in DocType 'User Document Type'
+#. Label of the email (Data) field in DocType 'Event Participants'
+#. Label of the email (Data) field in DocType 'Email Group Member'
+#. Label of the email (Data) field in DocType 'Email Unsubscribe'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:59
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:85
+#: frappe/public/js/frappe/form/toolbar.js:382
+#: frappe/templates/includes/comments/comments.html:25
+#: frappe/templates/signup.html:9
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
msgstr "Surel"
-#. Label of a Data field in DocType 'User'
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Email"
-msgstr "Surel"
-
-#. Name of a DocType
-#: core/doctype/communication/communication.js:199
-#: email/doctype/email_account/email_account.json
-msgid "Email Account"
-msgstr "Akun Email"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Account"
-msgstr "Akun Email"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Account"
+#. Label of the email_account (Link) field in DocType 'Communication'
+#. Label of the email_account (Link) field in DocType 'User Email'
+#. Name of a DocType
+#. Label of the email_account (Data) field in DocType 'Email Flag Queue'
+#. Label of the email_account (Link) field in DocType 'Email Queue'
+#. Label of the email_account (Link) field in DocType 'Unhandled Email'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.js:199
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Email Account"
msgstr "Akun Email"
-#. Linked DocType in Email Domain's connections
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Email Account"
-msgstr "Akun Email"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Email Account"
-msgstr "Akun Email"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Email Account"
-msgstr "Akun Email"
-
-#. Label of a Link field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "Email Account"
-msgstr "Akun Email"
-
-#. Label of a Link field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email Account"
-msgstr "Akun Email"
-
-#: email/doctype/email_account/email_account.py:298
+#: frappe/email/doctype/email_account/email_account.py:343
msgid "Email Account Disabled."
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_account_name (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Account Name"
-msgstr "Nama akun surel"
+msgstr ""
-#: core/doctype/user/user.py:697
+#: frappe/core/doctype/user/user.py:742
msgid "Email Account added multiple times"
msgstr "Akun surel ditambahkan beberapa kali"
-#: email/smtp.py:42
+#: frappe/email/smtp.py:43
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11
-#: www/login.html:164 www/login.html:196
-msgid "Email Address"
-msgstr "Alamat email"
+#: frappe/email/doctype/email_account/email_account.py:576
+msgid "Email Account {0} Disabled"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Email Address"
-msgstr "Alamat email"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Email Address"
-msgstr "Alamat email"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Address"
-msgstr "Alamat email"
-
-#. Label of a Data field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the email_id (Data) field in DocType 'Address'
+#. Label of the email_id (Data) field in DocType 'Contact'
+#. Label of the email_id (Data) field in DocType 'Email Account'
+#. Label of the email_id (Data) field in DocType 'Google Contacts'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/www/complete_signup.html:11 frappe/www/login.html:184
+#: frappe/www/login.html:216
msgid "Email Address"
msgstr "Alamat email"
#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Email Address whose Google Contacts are to be synced."
-msgstr "Alamat Email yang Kontak Google-nya harus disinkronkan."
+msgstr ""
-#: email/doctype/email_group/email_group.js:43
+#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
msgstr "Alamat Surel"
-#. Description of the 'Send Notification to' (Small Text) field in DocType
-#. 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Addresses"
-msgstr "Alamat Surel"
-
-#. Name of a DocType
-#: email/doctype/email_domain/email_domain.json
-msgid "Email Domain"
-msgstr "Domain Email"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Domain"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Email Domain"
msgstr "Domain Email"
#. Name of a DocType
-#: email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Email Flag Queue"
msgstr "Tanda Antrian Surel"
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_footer_address (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Alamat Footer Surel"
-
-#. Name of a DocType
-#: email/doctype/email_group/email_group.json
-msgid "Email Group"
-msgstr "Kelompok Surel"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Group"
-msgid "Email Group"
-msgstr "Kelompok Surel"
-
-#. Label of a Link field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email Group"
-msgstr "Kelompok Surel"
-
-#. Label of a Link field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
+#. Name of a DocType
+#. Label of the email_group (Link) field in DocType 'Email Group Member'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
msgid "Email Group"
msgstr "Kelompok Surel"
#. Name of a DocType
-#: email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
msgid "Email Group Member"
msgstr "Anggota Kelompok Surel"
-#. Linked DocType in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Email Group Member"
-msgstr "Anggota Kelompok Surel"
+#. Label of the email_header (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Email Header"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Email'
-#: contacts/doctype/contact_email/contact_email.json
-msgctxt "Contact Email"
+#. Label of the email_id (Data) field in DocType 'Contact Email'
+#. Label of the email_id (Data) field in DocType 'User Email'
+#. Label of the email_id (Data) field in DocType 'Email Rule'
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact_email/contact_email.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email ID"
-msgstr "ID Email"
+msgstr ""
-#. Label of a Data field in DocType 'Email Rule'
-#: email/doctype/email_rule/email_rule.json
-msgctxt "Email Rule"
-msgid "Email ID"
-msgstr "ID Email"
-
-#. Label of a Data field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email ID"
-msgstr "ID Email"
-
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the email_ids (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr "Email Id"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
msgstr "Id Email"
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_inbox (Section Break) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "Kotak Masuk Email"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue"
msgstr "Antrian Surel"
#. Name of a DocType
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Email Queue Recipient"
msgstr "Penerima Antrian Surel"
-#: email/queue.py:163
+#: frappe/email/queue.py:161
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
-#. Label of a HTML field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Email Reply Help"
-msgstr "Bantuan Balasan Email"
+#. Description of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue records."
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Help"
+msgstr ""
+
+#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Retry Limit"
msgstr ""
#. Name of a DocType
-#: email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email Rule"
msgstr "Aturan Surel"
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the email_sent (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
-msgstr "Email Terkirim"
-
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Email Sent"
-msgstr "Email Terkirim"
-
-#. Label of a Datetime field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Email Sent At"
msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
+#. Label of the email_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the column_break_3 (Section Break) field in DocType 'Notification
+#. Settings'
+#. Label of the email_settings (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr "Pengaturan Email"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Email Settings"
-msgstr "Pengaturan Email"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Email Settings"
-msgstr "Pengaturan Email"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Email Settings"
-msgstr "Pengaturan Email"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the email_signature (Text Editor) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr "Email Signature"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr "Status Surel"
+msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_sync_option (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Sync Option"
-msgstr "Opsi Sinkronisasi Surel"
-
-#. Name of a DocType
-#: email/doctype/email_template/email_template.json
-#: public/js/frappe/views/communication.js:91
-msgid "Email Template"
-msgstr "Template Email"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Template"
-msgstr "Template Email"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Template"
+#. Label of the email_template (Link) field in DocType 'Communication'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:107
msgid "Email Template"
msgstr "Template Email"
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_threads_on_assigned_document (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Email Threads on Assigned Document"
msgstr ""
-#. Label of a Small Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email To"
-msgstr "Surel Ke"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Email Unsubscribe"
msgstr "Email Berhenti berlangganan"
-#: core/doctype/communication/communication.js:342
+#: frappe/core/doctype/communication/communication.js:342
msgid "Email has been marked as spam"
msgstr "Email telah ditandai sebagai spam"
-#: core/doctype/communication/communication.js:355
+#: frappe/core/doctype/communication/communication.js:355
msgid "Email has been moved to trash"
msgstr "Email telah dipindahkan ke sampah"
-#: public/js/frappe/views/communication.js:707
+#: frappe/core/doctype/user/user.js:272
+msgid "Email is mandatory to create User Email"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:819
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Surel tidak dikirim ke {0} (tidak berlangganan / dinonaktifkan)"
-#: utils/oauth.py:163
+#: frappe/utils/oauth.py:163
msgid "Email not verified with {0}"
msgstr "Email tidak diverifikasi dengan {0}"
-#: email/queue.py:141
+#: frappe/email/doctype/email_queue/email_queue.js:19
+msgid "Email queue is currently suspended. Resume to automatically send other emails."
+msgstr ""
+
+#. Label of the section_break_udjs (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Emails"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:216
+msgid "Emails Pulled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:934
+msgid "Emails are already being pulled from this account."
+msgstr ""
+
+#: frappe/email/queue.py:138
msgid "Emails are muted"
msgstr "Surel diabaikan sementara"
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr "Email akan dikirim dengan tindakan alur kerja berikutnya"
+msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/website/doctype/web_form/web_form.js:34
+msgid "Embed code copied"
+msgstr ""
+
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:285
+msgid "Empty column"
+msgstr ""
+
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
+#. Label of the enable (Check) field in DocType 'Google Calendar'
+#. Label of the enable (Check) field in DocType 'Google Contacts'
+#. Label of the enable (Check) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr "Aktifkan"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Enable"
-msgstr "Aktifkan"
+#. Label of the enable_address_autocompletion (Check) field in DocType
+#. 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Enable Address Autocompletion"
+msgstr ""
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Enable"
-msgstr "Aktifkan"
-
-#. Label of a Check field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Enable"
-msgstr "Aktifkan"
-
-#: automation/doctype/auto_repeat/auto_repeat.py:116
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119
msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
msgstr "Aktifkan Perbolehkan Ulangi Otomatis untuk doctype {0} di Customize Form"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr "Aktifkan Auto Reply"
+msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Enable Automatic Backup"
-msgstr "Aktifkan Backup Otomatis"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_automatic_linking (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr "Aktifkan Penghubungan Otomatis di Dokumen"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the enable_comments (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Aktifkan Komentar"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the enable_dynamic_client_registration (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Enable Dynamic Client Registration"
+msgstr ""
+
+#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_notifications (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr "Aktifkan Pemberitahuan Email"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:89
-#: integrations/doctype/google_contacts/google_contacts.py:35
-#: website/doctype/website_settings/website_settings.py:129
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
+#: frappe/website/doctype/website_settings/website_settings.py:129
msgid "Enable Google API in Google Settings."
msgstr "Aktifkan Google API di Pengaturan Google."
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_google_indexing (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable Google indexing"
msgstr ""
-#: email/doctype/email_account/email_account.py:194
+#. Label of the enable_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:225
msgid "Enable Incoming"
msgstr "Aktifkan masuk"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Incoming"
-msgstr "Aktifkan masuk"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr "Aktifkan Onboarding"
+msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the enable_outgoing (Check) field in DocType 'User Email'
+#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:233
msgid "Enable Outgoing"
msgstr "Aktifkan Keluar"
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Outgoing"
-msgstr "Aktifkan Keluar"
-
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Enable Outgoing"
-msgstr "Aktifkan Keluar"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_password_policy (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr "Aktifkan Kebijakan Kata Sandi"
+msgstr ""
-#. Label of a Check field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the enable_prepared_report (Check) field in DocType 'Role
+#. Permission for Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Enable Prepared Report"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Print Server"
-msgstr "Aktifkan Server Cetak"
+msgstr ""
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enable Push Notification Relay"
+msgstr ""
+
+#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Enable Rate Limit"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Raw Printing"
-msgstr "Aktifkan Pencetakan Mentah"
+msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
msgstr "Aktifkan Laporan"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Scheduled Jobs"
-msgstr "Aktifkan Jobs Terjadwal"
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:23
+#: frappe/core/doctype/rq_job/rq_job_list.js:23
msgid "Enable Scheduler"
msgstr ""
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the enable_security (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr "Aktifkan Keamanan"
+msgstr ""
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the enable_social_login (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Enable Social Login"
-msgstr "Aktifkan Login Sosial"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Enable Social Sharing"
-msgstr "Aktifkan Berbagi Sosial"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:139
+#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
msgstr "Aktifkan Tampilan Halaman Pelacakan"
-#: twofactor.py:456
+#. Label of the enable_two_factor_auth (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/twofactor.py:433
msgid "Enable Two Factor Auth"
msgstr "Aktifkan Dua Faktor Auth"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Enable Two Factor Auth"
-msgstr "Aktifkan Dua Faktor Auth"
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json
-msgid "Enable Website Tracking"
-msgstr ""
-
-#: printing/doctype/print_format_field_template/print_format_field_template.py:27
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28
msgid "Enable developer mode to create a standard Print Template"
msgstr ""
-#: website/doctype/web_template/web_template.py:33
+#: frappe/website/doctype/web_template/web_template.py:33
msgid "Enable developer mode to create a standard Web Template"
msgstr "Aktifkan mode pengembang untuk membuat Template Web standar"
#. Description of the 'Enable Email Notification' (Check) field in DocType
#. 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable email notification for any comment or likes received on your Blog Post."
msgstr ""
#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid ""
-"Enable if on click\n"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Enable if on click\n"
"opens modal."
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_view_tracking (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable in-app website tracking"
msgstr ""
-#: public/js/frappe/model/indicator.js:106
-#: public/js/frappe/model/indicator.js:117
+#. Label of the enabled (Check) field in DocType 'Language'
+#. Label of the enabled (Check) field in DocType 'User'
+#. Label of the enabled (Check) field in DocType 'Client Script'
+#. Label of the enabled (Check) field in DocType 'Notification Settings'
+#. Label of the enabled (Check) field in DocType 'Auto Email Report'
+#. Label of the enabled (Check) field in DocType 'Notification'
+#. Label of the enabled (Check) field in DocType 'Currency'
+#. Label of the enabled (Check) field in DocType 'LDAP Settings'
+#. Label of the enabled (Check) field in DocType 'Webhook'
+#. Label of the enabled (Check) field in DocType 'Portal Menu Item'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/model/indicator.js:110
+#: frappe/public/js/frappe/model/indicator.js:121
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
msgstr "Diaktifkan"
-#. Label of a Check field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Enabled"
-msgstr "Diaktifkan"
-
-#: core/doctype/rq_job/rq_job_list.js:29
+#: frappe/core/doctype/rq_job/rq_job_list.js:29
msgid "Enabled Scheduler"
msgstr ""
-#: email/doctype/email_account/email_account.py:896
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "Kotak masuk email yang diaktifkan untuk pengguna {0}"
-#: core/doctype/server_script/server_script.py:262
-msgid "Enabled scheduled execution for script {0}"
-msgstr "Mengaktifkan eksekusi terjadwal untuk skrip {0}"
-
-#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enables Calendar and Gantt views."
-msgstr ""
-
#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
msgstr ""
-#: email/doctype/email_account/email_account.js:232
+#: frappe/email/doctype/email_account/email_account.js:295
msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
msgstr ""
-#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enabling this will submit documents in background"
+#. Description of a DocType
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
+msgstr ""
+
+#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. "
msgstr ""
#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enabling this will submit documents in background"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Encrypt Backups"
msgstr ""
-#: utils/password.py:184
+#: frappe/utils/password.py:197
msgid "Encryption key is in invalid format!"
msgstr ""
-#: utils/password.py:198
+#: frappe/utils/password.py:212
msgid "Encryption key is invalid! Please check site_config.json"
msgstr ""
-#: public/js/frappe/utils/common.js:416
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51
+msgid "End"
+msgstr ""
+
+#. Label of the end_date (Date) field in DocType 'Auto Repeat'
+#. Label of the end_date (Date) field in DocType 'Audit Trail'
+#. Label of the end_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:416
+#: frappe/website/doctype/web_page/web_page.json
msgid "End Date"
msgstr "Tanggal Berakhir"
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "End Date"
-msgstr "Tanggal Berakhir"
-
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "End Date"
-msgstr "Tanggal Berakhir"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "End Date"
-msgstr "Tanggal Berakhir"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the end_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Bidang tanggal akhir"
+msgstr ""
-#: website/doctype/web_page/web_page.py:207
+#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
msgstr "Tanggal Akhir tidak boleh sebelum Tanggal Mulai!"
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the ended_at (Datetime) field in DocType 'RQ Job'
+#. Label of the ended_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
msgstr ""
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Ended At"
-msgstr ""
-
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Endpoint URL"
-msgstr "URL titik akhir"
-
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_endpoints_section (Section Break) field in DocType
+#. 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
msgstr ""
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the ends_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Berakhir pada"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr "Titik Energi"
+msgstr ""
-#. Name of a DocType
-#: social/doctype/energy_point_log/energy_point_log.json
-msgid "Energy Point Log"
-msgstr "Energy Point Log"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Energy Point Log"
-msgstr "Energy Point Log"
-
-#. Name of a DocType
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgid "Energy Point Rule"
-msgstr "Aturan Titik Energi"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Energy Point Rule"
-msgstr "Aturan Titik Energi"
-
-#. Name of a DocType
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgid "Energy Point Settings"
-msgstr "Pengaturan Titik Energi"
-
-#: desk/doctype/notification_log/notification_log.py:159
-msgid "Energy Point Update on {0}"
-msgstr "Pembaruan Titik Energi pada {0}"
-
-#: templates/emails/energy_points_summary.html:39
-msgid "Energy Points"
-msgstr "Poin Energi"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Energy Points"
-msgstr "Poin Energi"
-
-#. Label of a Data field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
+#: frappe/core/doctype/recorder/recorder.py:125
+msgid "Enqueued creation of indexes"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
msgid "Ensure the user and group search paths are correct."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:92
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Masukkan Id Klien dan Rahasia Klien di Pengaturan Google."
-#: public/js/frappe/views/communication.js:663
+#: frappe/templates/includes/login/login.js:351
+msgid "Enter Code displayed in OTP App."
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:774
msgid "Enter Email Recipient(s)"
msgstr "Masukkan Penerima Surel"
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the doc_type (Link) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enter Form Type"
-msgstr "Masukkan Form Type"
+msgstr ""
-#: public/js/frappe/ui/messages.js:94
+#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
msgid "Enter Value"
msgstr "Masukkan Nilai"
-#: public/js/frappe/form/form_tour.js:56
+#: frappe/public/js/frappe/form/form_tour.js:60
msgid "Enter a name for this {0}"
msgstr ""
#. Description of the 'User Defaults' (Table) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"."
-msgstr "Masukkan bidang nilai default (kunci) dan nilai-nilai. Jika Anda menambahkan beberapa nilai untuk field, yang pertama akan dijemput. Default ini juga digunakan untuk mengatur "pertandingan" aturan izin. Untuk melihat daftar bidang, pergi ke "Customize Form"."
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:111
+#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
msgstr "Masukkan nama folder"
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
-msgstr "Entrikan parameter url statis di sini (Misalnya pengirim = ERPNext, username = ERPNext, password = 1234 dll)"
+msgstr ""
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr "Entrikan parameter url untuk pesan"
+msgstr ""
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr "Entrikan parameter url untuk penerima nos"
+msgstr ""
-#: public/js/frappe/ui/messages.js:334
+#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
msgstr "Masukkan password Anda"
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
msgid "Entity Name"
msgstr "Nama kesatuan"
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
msgid "Entity Type"
msgstr "Jenis Entitas"
-#: public/js/frappe/ui/filters/filter.js:16
+#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
-msgstr "Equals"
-
-#: desk/page/backups/backups.js:35 model/base_document.py:703
-#: model/base_document.py:708 public/js/frappe/ui/messages.js:22
-msgid "Error"
-msgstr "Kesalahan"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Error"
-msgstr "Kesalahan"
-
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Error"
-msgstr "Kesalahan"
-
-#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Error"
-msgstr "Kesalahan"
-
-#. Label of a Code field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Error"
-msgstr "Kesalahan"
-
-#. Label of a Code field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Error"
-msgstr "Kesalahan"
-
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Error"
-msgstr "Kesalahan"
-
+#. Label of the error (Code) field in DocType 'Error Log'
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue Recipient'
+#. Label of the error (Code) field in DocType 'Integration Request'
+#. Label of the error (Text) field in DocType 'Webhook Request Log'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/page/backups/backups.js:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/ui/messages.js:22
msgid "Error"
msgstr "Kesalahan"
-#: public/js/frappe/web_form/web_form.js:240
+#: frappe/public/js/frappe/web_form/web_form.js:240
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Kesalahan"
-#. Label of a Text field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Error"
-msgstr "Kesalahan"
-
-#: www/error.html:34
-msgid "Error Code: {0}"
-msgstr "Kode Kesalahan: {0}"
-
#. Name of a DocType
-#: core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log.json
msgid "Error Log"
msgstr "Catatan eror"
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Error Log"
+#: frappe/core/workspace/build/build.json
msgid "Error Logs"
msgstr ""
-#. Label of a Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
-msgstr "Pesan eror"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:126
+#: frappe/public/js/frappe/form/print_utils.js:141
msgid "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."
msgstr "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 ."
-#: email/doctype/email_domain/email_domain.py:32
+#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Error connecting via IMAP/POP3: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:33
+#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Error connecting via SMTP: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:98
+#: frappe/email/doctype/email_domain/email_domain.py:101
msgid "Error has occurred in {0}"
msgstr "Galat telah terjadi di {0}"
-#: public/js/frappe/form/script_manager.js:187
+#: frappe/public/js/frappe/form/script_manager.js:199
msgid "Error in Client Script"
msgstr ""
-#: public/js/frappe/form/script_manager.js:241
+#: frappe/public/js/frappe/form/script_manager.js:256
msgid "Error in Client Script."
msgstr ""
-#: email/doctype/notification/notification.py:391
-#: email/doctype/notification/notification.py:507
-#: email/doctype/notification/notification.py:513
+#: frappe/printing/doctype/letter_head/letter_head.js:21
+msgid "Error in Header/Footer Script"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:598
+#: frappe/email/doctype/notification/notification.py:735
+#: frappe/email/doctype/notification/notification.py:741
msgid "Error in Notification"
msgstr "Kesalahan dalam Notifikasi"
-#: utils/pdf.py:48
+#: frappe/utils/pdf.py:59
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:586
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Kesalahan saat menyambung ke akun email {0}"
-#: email/doctype/notification/notification.py:504
+#: frappe/email/doctype/notification/notification.py:732
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda."
-#: model/document.py:808
-msgid "Error: Document has been modified after you have opened it"
-msgstr "Kesalahan: Dokumen telah dimodifikasi setelah Anda membukanya"
+#: frappe/model/base_document.py:803
+msgid "Error: Data missing in table {0}"
+msgstr ""
-#: model/base_document.py:716
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "Kesalahan: Nilai yang hilang untuk {0}: {1}"
-#. Name of a DocType
-#: desk/doctype/event/event.json
-msgid "Event"
-msgstr "Acara"
+#: frappe/model/base_document.py:807
+msgid "Error: {0} Row #{1}: Value missing for: {2}"
+msgstr ""
+
+#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Errors"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Event"
-msgstr "Acara"
-
+#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Event"
msgstr "Acara"
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the event_category (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Kategori Peristiwa"
+msgstr ""
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the event_frequency (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
msgstr ""
+#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
-#: desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
msgid "Event Participants"
msgstr "Peserta Acara"
-#. Label of a Table field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Event Participants"
-msgstr "Peserta Acara"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_event_reminders (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Event Reminders"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:455
-#: integrations/doctype/google_calendar/google_calendar.py:539
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
msgid "Event Synced with Google Calendar."
msgstr "Acara Disinkronkan dengan Kalender Google."
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the event_type (Data) field in DocType 'Recorder'
+#. Label of the event_type (Select) field in DocType 'Event'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/event/event.json
msgid "Event Type"
-msgstr "Event Type"
+msgstr ""
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Event Type"
-msgstr "Event Type"
+#: frappe/public/js/frappe/ui/notifications/notifications.js:56
+msgid "Events"
+msgstr ""
-#: desk/doctype/event/event.py:263
+#: frappe/desk/doctype/event/event.py:274
msgid "Events in Today's Calendar"
msgstr "Acara Dalam Kalender Hari ini"
-#. Description of the Onboarding Step 'Create Custom Fields'
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid ""
-"Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n"
-"\n"
-"Once custom fields are added, you can use them for reports and analytics charts as well.\n"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
+#. Label of the everyone (Check) field in DocType 'DocShare'
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:11
msgid "Everyone"
-msgstr "Semua orang"
+msgstr ""
#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
-msgstr "Contoh: "colors": ["# d1d8dd", "# ff5858"]"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Exact Copies"
msgstr ""
-#. Label of a HTML field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Contoh"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Example: \"/desk\""
-msgstr "Contoh: "/ desk""
+msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Contoh: # Pohon / Akun"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Contoh: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
msgstr ""
#. Description of the 'Description' (Small Text) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Example: {{ subject }}"
-msgstr "Contoh: {{subjek}}"
+msgstr ""
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr "Unggul"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:91
+#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
msgstr ""
-#. Label of a Text field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the exception (Text) field in DocType 'Data Import Log'
+#. Label of the exc_info (Code) field in DocType 'RQ Job'
+#. Label of the exception (Long Text) field in DocType 'Submission Queue'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr "Pengecualian"
+msgstr ""
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Exception"
-msgstr "Pengecualian"
-
-#. Label of a Long Text field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Exception"
-msgstr "Pengecualian"
-
-#: desk/doctype/system_console/system_console.js:17
-#: desk/doctype/system_console/system_console.js:22
+#. Label of the execute_section (Section Break) field in DocType 'System
+#. Console'
+#: frappe/desk/doctype/system_console/system_console.js:17
+#: frappe/desk/doctype/system_console/system_console.js:22
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Execute"
msgstr "Menjalankan"
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Execute"
-msgstr "Menjalankan"
-
-#: desk/doctype/system_console/system_console.js:10
+#: frappe/desk/doctype/system_console/system_console.js:10
msgid "Execute Console script"
msgstr "Jalankan skrip Konsol"
-#: desk/doctype/system_console/system_console.js:18
+#: frappe/public/js/frappe/ui/dropdown_console.js:125
+msgid "Executing Code"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:18
msgid "Executing..."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1961
+#: frappe/public/js/frappe/views/reports/query_report.js:2121
msgid "Execution Time: {0} sec"
msgstr "Waktu Eksekusi: {0} dtk"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
msgstr ""
-#: public/js/frappe/widgets/base_widget.js:157
+#. Label of the existing_role (Link) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Existing Role"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:115
+#: frappe/public/js/frappe/views/treeview.js:127
+#: frappe/public/js/frappe/views/treeview.js:137
+#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Expand"
msgstr "Memperluas"
-#: public/js/frappe/form/controls/code.js:147
+#: frappe/public/js/frappe/form/controls/code.js:185
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Memperluas"
-#: public/js/frappe/views/treeview.js:125
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
+#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Melebarkan semua"
-#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Expert"
-msgstr "Ahli"
-
-#. Label of a Datetime field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Expiration time"
-msgstr "waktu berakhirnya"
-
-#. Label of a Datetime field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Expiration time"
-msgstr "waktu berakhirnya"
-
-#. Label of a Date field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Expire Notification On"
-msgstr "Berakhir Pemberitahuan On"
-
-#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Expired"
-msgstr "Expired"
-
-#. Label of a Int field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Expires In"
-msgstr "Kadaluarsa dalam"
-
-#. Label of a Int field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Expires In"
-msgstr "Kadaluarsa dalam"
-
-#. Label of a Date field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
-msgid "Expires On"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Expiry time of QR Code Image Page"
-msgstr "Waktu kadaluwarsa QR Code Image Page"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "Experimental"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:42
-#: public/js/frappe/data_import/data_exporter.js:88
-#: public/js/frappe/data_import/data_exporter.js:239
-#: public/js/frappe/views/reports/query_report.js:1652
-#: public/js/frappe/views/reports/report_view.js:1552
+#. Option for the 'Level' (Select) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
+msgid "Expert"
+msgstr ""
+
+#. Label of the expiration_time (Datetime) field in DocType 'OAuth
+#. Authorization Code'
+#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer
+#. Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+msgid "Expiration time"
+msgstr ""
+
+#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
+msgid "Expire Notification On"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Expired"
+msgstr ""
+
+#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token'
+#. Label of the expires_in (Int) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Expires In"
+msgstr ""
+
+#. Label of the expires_on (Date) field in DocType 'Document Share Key'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+msgid "Expires On"
+msgstr "Kadaluarsa pada"
+
+#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Expiry time of QR Code Image Page"
+msgstr ""
+
+#. Label of the export (Check) field in DocType 'Custom DocPerm'
+#. Label of the export (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/public/js/frappe/data_import/data_exporter.js:92
+#: frappe/public/js/frappe/data_import/data_exporter.js:243
+#: frappe/public/js/frappe/views/reports/query_report.js:1809
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
+#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Ekspor"
-#: public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:2133
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Ekspor"
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Export"
-msgstr "Ekspor"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Export"
-msgstr "Ekspor"
-
-#: public/js/frappe/data_import/data_exporter.js:241
+#: frappe/public/js/frappe/data_import/data_exporter.js:245
msgid "Export 1 record"
msgstr "Ekspor 1 catatan"
-#: public/js/frappe/views/reports/report_view.js:1563
-msgid "Export All {0} rows?"
-msgstr "Ekspor Semua {0} baris?"
-
-#: custom/doctype/customize_form/customize_form.js:220
+#: frappe/custom/doctype/customize_form/customize_form.js:262
msgid "Export Custom Permissions"
msgstr "Izin khusus ekspor"
-#: custom/doctype/customize_form/customize_form.js:200
+#: frappe/custom/doctype/customize_form/customize_form.js:242
msgid "Export Customizations"
msgstr "Kustomisasi ekspor"
-#: public/js/frappe/data_import/data_exporter.js:14
-msgid "Export Data"
-msgstr "Ekspor Data"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Data Export"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:14
msgid "Export Data"
msgstr "Ekspor Data"
-#: core/doctype/data_import/data_import.js:86
-#: public/js/frappe/data_import/import_preview.js:195
+#: frappe/core/doctype/data_import/data_import.js:86
+#: frappe/public/js/frappe/data_import/import_preview.js:199
msgid "Export Errored Rows"
msgstr "Ekspor Baris yang Salah"
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the export_from (Data) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr "Ekspor Dari"
+msgstr ""
-#: core/doctype/data_import/data_import.js:535
+#: frappe/core/doctype/data_import/data_import.js:518
msgid "Export Import Log"
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:227
+#: frappe/public/js/frappe/views/reports/report_utils.js:235
msgctxt "Export report"
msgid "Export Report: {0}"
msgstr "Laporan Ekspor: {0}"
-#: public/js/frappe/data_import/data_exporter.js:26
+#: frappe/public/js/frappe/data_import/data_exporter.js:26
msgid "Export Type"
msgstr "Jenis ekspor"
-#: public/js/frappe/views/file/file_view.js:154
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
+msgid "Export all matching rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
+msgid "Export all {0} rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:154
msgid "Export as zip"
msgstr ""
-#: public/js/frappe/utils/tools.js:11
+#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
msgstr "Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor."
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
msgstr ""
-#. Label of a Check field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the export_without_main_header (Check) field in DocType 'Data
+#. Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export without main header"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:243
+#: frappe/public/js/frappe/data_import/data_exporter.js:247
msgid "Export {0} records"
msgstr "Ekspor {0} catatan"
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/custom/doctype/customize_form/customize_form.js:263
+msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
+msgstr ""
+
+#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "Paparan Penerima"
+msgstr ""
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Expression"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Expression (old style)"
-msgstr ""
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression (old style)"
msgstr ""
#. Description of the 'Condition' (Data) field in DocType 'Notification
#. Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr "Expression, Opsional"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the external_link (Data) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:426
+msgid "External Link"
+msgstr ""
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Connected
+#. App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Extra Parameters"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Facebook"
-msgstr "Facebook"
+msgstr ""
+
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Fail"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Failed"
-msgstr "Gagal"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Failed"
-msgstr "Gagal"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Failed"
-msgstr "Gagal"
-
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Failed"
msgstr "Gagal"
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the failed_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Emails"
+msgstr ""
+
+#. Label of the failed_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Failed Job Count"
msgstr ""
-#: model/workflow.py:305
+#. Label of the failed_jobs (Int) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Failed Jobs"
+msgstr ""
+
+#. Label of the failed_logins (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Logins (Last 30 days)"
+msgstr ""
+
+#: frappe/model/workflow.py:306
msgid "Failed Transactions"
msgstr "Transaksi Gagal"
-#: utils/synchronization.py:46
+#: frappe/utils/synchronization.py:46
msgid "Failed to aquire lock: {}. Lock may be held by another process."
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:360
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359
msgid "Failed to change password."
msgstr "Gagal mengubah kata sandi."
-#: desk/page/setup_wizard/setup_wizard.js:220
+#: frappe/desk/page/setup_wizard/setup_wizard.js:232
+#: frappe/desk/page/setup_wizard/setup_wizard.py:42
msgid "Failed to complete setup"
msgstr "Gagal menyelesaikan penyiapan"
-#: integrations/doctype/webhook/webhook.py:148
+#: frappe/integrations/doctype/webhook/webhook.py:137
msgid "Failed to compute request body: {}"
msgstr ""
-#: printing/doctype/network_printer_settings/network_printer_settings.py:45
-#: printing/doctype/network_printer_settings/network_printer_settings.py:47
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48
msgid "Failed to connect to server"
msgstr "Gagal terhubung ke server"
-#: auth.py:649
+#: frappe/auth.py:698
msgid "Failed to decode token, please provide a valid base64-encoded token."
msgstr "Gagal mendekode token, berikan token berenkode base64 yang valid."
-#: core/doctype/rq_job/rq_job_list.js:33
+#: frappe/utils/password.py:211
+msgid "Failed to decrypt key {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:600
+msgid "Failed to delete {0} documents: {1}"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:33
msgid "Failed to enable scheduler: {0}"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:136
+#: frappe/email/doctype/notification/notification.py:99
+#: frappe/integrations/doctype/webhook/webhook.py:127
msgid "Failed to evaluate conditions: {}"
msgstr ""
-#: types/exporter.py:197
+#: frappe/types/exporter.py:205
msgid "Failed to export python type hints"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:252
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249
msgid "Failed to generate names from the series"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:75
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
msgid "Failed to generate preview of series"
msgstr ""
-#: handler.py:76
+#: frappe/handler.py:75
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: api/v2.py:48
+#: frappe/api/v2.py:46
msgid "Failed to get method {0} with {1}"
msgstr ""
-#: model/virtual_doctype.py:64
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
+msgid "Failed to get site info"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: utils/image.py:75
+#: frappe/utils/image.py:75
msgid "Failed to optimize image: {0}"
msgstr ""
-#: email/doctype/email_queue/email_queue.py:278
+#: frappe/email/doctype/notification/notification.py:116
+msgid "Failed to render message: {}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:134
+msgid "Failed to render subject: {}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
+msgid "Failed to request login to Frappe Cloud"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
msgstr ""
-#: desk/doctype/notification_log/notification_log.py:41
+#: frappe/desk/doctype/notification_log/notification_log.py:43
msgid "Failed to send notification email"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:24
+#: frappe/desk/page/setup_wizard/setup_wizard.py:24
msgid "Failed to update global settings"
msgstr ""
-#: core/doctype/data_import/data_import.js:470
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
+msgid "Failed while calling API {0}"
+msgstr ""
+
+#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failing Scheduled Jobs (last 7 days)"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:459
msgid "Failure"
msgstr "Kegagalan"
-#. Label of a Attach field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the failure_rate (Percent) field in DocType 'System Health Report
+#. Failing Jobs'
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "Failure Rate"
+msgstr ""
+
+#. Label of the favicon (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "FavIcon"
-msgstr "FavIcon"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the fax (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr "Fax"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_row.html:19
+#. Label of the featured (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19
msgid "Featured"
msgstr "Unggulan"
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Featured"
-msgstr "Unggulan"
-
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
msgid "Feedback"
msgstr "Umpan balik"
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Feedback Request"
-msgstr "Masukan Permintaan"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:29
+msgid "Female"
+msgstr ""
-#. Label of a Small Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_from (Small Text) field in DocType 'DocField'
+#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
+#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Ambil Dari"
+msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch From"
-msgstr "Ambil Dari"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch From"
-msgstr "Ambil Dari"
-
-#: website/doctype/website_slideshow/website_slideshow.js:15
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
msgstr "Ambil Gambar"
-#: website/doctype/website_slideshow/website_slideshow.js:13
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
msgid "Fetch attached images from document"
msgstr "Ambil gambar terlampir dari dokumen"
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
+#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
+#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fetch on Save if Empty"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#: desk/doctype/global_search_settings/global_search_settings.py:60
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
msgid "Fetching default Global Search documents."
msgstr "Mengambil dokumen Penelusuran Global default."
-#: desk/page/leaderboard/leaderboard.js:131
-#: public/js/frappe/list/bulk_operations.js:262
-#: public/js/frappe/views/reports/query_report.js:235
-#: public/js/frappe/views/reports/query_report.js:1706
+#. Label of the field (Select) field in DocType 'Assignment Rule'
+#. Label of the field (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the field (Select) field in DocType 'Bulk Update'
+#. Label of the report_field (Select) field in DocType 'Number Card'
+#. Label of the field (Select) field in DocType 'Onboarding Step'
+#. Label of the fieldname (Select) field in DocType 'Web Form Field'
+#. Label of the fieldname (Select) field in DocType 'Web Form List Column'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/public/js/frappe/list/bulk_operations.js:327
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
+#: frappe/public/js/frappe/views/reports/query_report.js:236
+#: frappe/public/js/frappe/views/reports/query_report.js:1868
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
msgstr "Bidang"
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Field"
-msgstr "Bidang"
-
-#. Label of a Select field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Field"
-msgstr "Bidang"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Field"
-msgstr "Bidang"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Field"
-msgstr "Bidang"
-
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Field"
-msgstr "Bidang"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Field"
-msgstr "Bidang"
-
-#. Label of a Select field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Field"
-msgstr "Bidang"
-
-#: core/doctype/doctype/doctype.py:419
+#: frappe/core/doctype/doctype/doctype.py:417
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Bidang "rute" adalah wajib untuk Tampilan Web"
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.js:17
+#: frappe/desk/doctype/bulk_update/bulk_update.js:17
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Kolom \"nilai\" adalah wajib. Silakan tentukan nilai untuk diperbarui"
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the description (Text) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Bidang Deskripsi"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1040
+#: frappe/core/doctype/doctype/doctype.py:1077
msgid "Field Missing"
msgstr ""
-#. Label of a Select field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
+#. Label of the field_name (Data) field in DocType 'Property Setter'
+#. Label of the field_name (Select) field in DocType 'Kanban Board'
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Field Name"
-msgstr "Nama Field"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Field Name"
-msgstr "Nama Field"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141
+msgid "Field Orientation (Left-Right)"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Field To Check"
-msgstr "Field Untuk Memeriksa"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148
+msgid "Field Orientation (Top-Down)"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233
+#: frappe/public/js/print_format_builder/utils.js:69
+msgid "Field Template"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/templates/form_grid/fields.html:40
msgid "Field Type"
-msgstr "Field Type"
+msgstr ""
-#: desk/reportview.py:165
+#: frappe/desk/reportview.py:201
msgid "Field not permitted in query"
msgstr ""
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "Kolom yang mewakili Status Alur Kerja transaksi (jika kolom tidak tersedia, Kolom Kustom yang tersembunyi akan dibuat)"
+msgstr ""
-#. Label of a Select field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the track_field (Select) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Field to Track"
-msgstr "Field to Track"
+msgstr ""
-#: custom/doctype/property_setter/property_setter.py:50
+#: frappe/custom/doctype/property_setter/property_setter.py:51
msgid "Field type cannot be changed for {0}"
msgstr "Jenis lapangan tidak dapat diubah untuk {0}"
-#: database/database.py:783
+#: frappe/database/database.py:919
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: desk/form/meta.py:203
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: public/js/frappe/form/form.js:1727
+#: frappe/public/js/frappe/form/form.js:1754
msgid "Field {0} not found."
msgstr "Bidang {0} tidak ditemukan"
-#: custom/doctype/custom_field/custom_field.js:119
-msgid "Fieldname"
-msgstr "Fieldname"
+#: frappe/email/doctype/notification/notification.py:503
+msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fieldname (Data) field in DocType 'Report Column'
+#. Label of the fieldname (Data) field in DocType 'Report Filter'
+#. Label of the fieldname (Data) field in DocType 'Custom Field'
+#. Label of the fieldname (Select) field in DocType 'DocType Layout Field'
+#. Label of the fieldname (Select) field in DocType 'Form Tour Step'
+#. Label of the fieldname (Select) field in DocType 'Webhook Data'
+#. Label of the fieldname (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.js:120
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
-msgstr "Fieldname"
+msgstr ""
-#. Label of a Select field in DocType 'DocType Layout Field'
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
-msgctxt "DocType Layout Field"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Data field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Data field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Select field in DocType 'Webhook Data'
-#: integrations/doctype/webhook_data/webhook_data.json
-msgctxt "Webhook Data"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#: core/doctype/doctype/doctype.py:270
+#: frappe/core/doctype/doctype/doctype.py:270
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1039
+#: frappe/core/doctype/doctype/doctype.py:1076
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: database/schema.py:125 database/schema.py:359
+#: frappe/database/schema.py:127 frappe/database/schema.py:404
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Fieldname dibatasi 64 karakter ({0})"
-#: custom/doctype/custom_field/custom_field.py:193
+#: frappe/custom/doctype/custom_field/custom_field.py:197
msgid "Fieldname not set for Custom Field"
msgstr "Fieldname tidak ditetapkan untuk Bidang Kustom"
-#: custom/doctype/custom_field/custom_field.js:107
+#: frappe/custom/doctype/custom_field/custom_field.js:107
msgid "Fieldname which will be the DocType for this link field."
msgstr "Fieldname yang akan menjadi DocType untuk bidang link ini."
-#: public/js/form_builder/store.js:170
+#: frappe/public/js/form_builder/store.js:175
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: database/schema.py:349
+#: frappe/database/schema.py:394
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}"
-#: core/doctype/doctype/doctype.py:1850
+#: frappe/core/doctype/doctype/doctype.py:1907
msgid "Fieldname {0} conflicting with meta object"
msgstr "Fieldname {0} bertentangan dengan objek meta"
-#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302
+#: frappe/core/doctype/doctype/doctype.py:496
+#: frappe/public/js/form_builder/utils.js:302
msgid "Fieldname {0} is restricted"
msgstr "Fieldname {0} dibatasi"
-#. Label of a Section Break field in DocType 'Customize Form'
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the fields (Table) field in DocType 'DocType'
+#. Label of the fields_section (Section Break) field in DocType 'DocType'
+#. Label of the fields_tab (Tab Break) field in DocType 'DocType'
+#. Label of the fields_section_break (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the fields (Table) field in DocType 'Customize Form'
+#. Label of the fields (Table) field in DocType 'DocType Layout'
+#. Label of the fields (Code) field in DocType 'Kanban Board'
+#. Label of the fields_html (HTML) field in DocType 'List View Settings'
+#. Label of the fields (Code) field in DocType 'List View Settings'
+#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the fields (Table) field in DocType 'Web Template'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Fields"
-msgstr "Bidang"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Fields"
-msgstr "Bidang"
-
-#. Label of a Table field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Fields"
-msgstr "Bidang"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Fields"
-msgstr "Bidang"
-
-#. Label of a HTML field in DocType 'List View Settings'
-#. Label of a Code field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
-msgid "Fields"
-msgstr "Bidang"
-
-#. Label of a Small Text field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Fields"
-msgstr "Bidang"
-
-#. Label of a Table field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Fields"
-msgstr "Bidang"
-
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
-msgstr "Bidang Multicheck"
+msgstr ""
-#: core/doctype/file/file.py:406
+#: frappe/core/doctype/file/file.py:410
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
+#: frappe/model/db_query.py:146
+msgid "Fields must be a list or tuple when as_list is enabled"
+msgstr ""
+
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
-msgstr "Fields dipisahkan dengan koma (,) akan dimasukkan dalam "Cari Dengan" daftar pencarian kotak dialog"
+msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the fieldtype (Select) field in DocType 'Report Column'
+#. Label of the fieldtype (Select) field in DocType 'Report Filter'
+#. Label of the fieldtype (Data) field in DocType 'Form Tour Step'
+#. Label of the fieldtype (Select) field in DocType 'Web Form Field'
+#. Label of the fieldtype (Data) field in DocType 'Web Form List Column'
+#. Label of the fieldtype (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldtype"
-msgstr "Fieldtype"
+msgstr ""
-#. Label of a Select field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Select field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Select field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#: custom/doctype/custom_field/custom_field.py:189
+#: frappe/custom/doctype/custom_field/custom_field.py:193
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:586
+#: frappe/custom/doctype/customize_form/customize_form.py:588
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}"
-#. Name of a DocType
-#: core/doctype/file/file.json
-msgid "File"
-msgstr "Mengajukan"
-
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
-msgid "File"
-msgstr "Mengajukan"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "File"
msgstr "Mengajukan"
-#: core/doctype/file/utils.py:126
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478
+msgid "File \"{0}\" was skipped because of invalid file type"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:128
msgid "File '{0}' not found"
msgstr "File '{0}' tidak ditemukan"
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "File Backup"
-msgstr "Cadangan File"
-
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "File Backup"
-msgstr "Cadangan File"
-
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the private_file_section (Section Break) field in DocType 'Access
+#. Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Informasi File"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:74
+#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
-msgstr "File Manager"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "berkas nama"
+msgstr ""
-#. Label of a Int field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_size (Int) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Ukuran File"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:19
+#. Label of the section_break_ryki (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "File Storage"
+msgstr ""
+
+#. Label of the file_type (Data) field in DocType 'Access Log'
+#. Label of the file_type (Select) field in DocType 'Data Export'
+#. Label of the file_type (Data) field in DocType 'File'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/file/file.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:19
msgid "File Type"
msgstr "Tipe file"
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "File Type"
-msgstr "Tipe file"
-
-#. Label of a Select field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
-msgid "File Type"
-msgstr "Tipe file"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "File Type"
-msgstr "Tipe file"
-
-#. Label of a Code field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_url (Code) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "URL File"
+msgstr ""
-#: desk/page/backups/backups.py:109
+#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
msgstr "File cadangan sudah siap"
-#: core/doctype/file/file.py:577
+#: frappe/core/doctype/file/file.py:624
msgid "File name cannot have {0}"
msgstr "Nama file tidak boleh memuat {0}"
-#: utils/csvutils.py:26
+#: frappe/utils/csvutils.py:28
msgid "File not attached"
msgstr "Berkas tidak terpasang"
-#: core/doctype/file/file.py:682 public/js/frappe/request.js:197
-#: utils/file_manager.py:221
+#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200
+#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Ukuran file melebihi ukuran maksimum yang diperbolehkan dari {0} MB"
-#: public/js/frappe/request.js:195
+#: frappe/public/js/frappe/request.js:198
msgid "File too big"
msgstr "File terlalu besar"
-#: core/doctype/file/file.py:373
+#: frappe/core/doctype/file/file.py:375
msgid "File type of {0} is not allowed"
msgstr ""
-#: core/doctype/file/file.py:360 core/doctype/file/file.py:422
+#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426
msgid "File {0} does not exist"
msgstr "Berkas {0} tidak ada"
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
+#. Label of the files_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Files"
-msgstr "arsip"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Files"
-msgstr "arsip"
-
-#: email/doctype/auto_email_report/auto_email_report.js:90
-#: public/js/frappe/ui/filters/filter_list.js:132
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
+#: frappe/public/js/frappe/list/base_list.js:953
+#: frappe/public/js/frappe/ui/filters/filter_list.js:134
+#: frappe/website/doctype/web_form/web_form.js:197
msgid "Filter"
-msgstr "Filter"
+msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/public/js/frappe/list/list_sidebar.html:36
+msgid "Filter By"
+msgstr ""
+
+#. Label of the filter_data (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Data"
-msgstr "Filter Data"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the filter_list (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Filter List"
-msgstr "Daftar Filter"
+msgstr ""
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filter_meta (Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Meta"
-msgstr "Filter Meta"
+msgstr ""
-#: public/js/frappe/list/list_filter.js:33
+#. Label of the filter_name (Data) field in DocType 'List Filter'
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/public/js/frappe/list/list_filter.js:33
msgid "Filter Name"
msgstr "Nama filter"
-#. Label of a Data field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filter Name"
-msgstr "Nama filter"
-
-#. Label of a HTML field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Filter Nilai"
+msgstr ""
-#: utils/data.py:2021
-msgid "Filter must be a tuple or list (in a list)"
-msgstr "Filter harus berupa tupel atau daftar (dalam daftar)"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
-#: utils/data.py:2029
-msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}"
-msgstr "Filter harus memiliki 4 nilai (doctype, fieldname, operator, value): {0}"
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
+msgid "Filter..."
+msgstr ""
+
+#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:33
+#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
msgstr "Catatan yang Difilter"
-#: website/doctype/blog_post/blog_post.py:262
-#: website/doctype/help_article/help_article.py:91 www/list.py:45
+#: frappe/website/doctype/blog_post/blog_post.py:268
+#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45
msgid "Filtered by \"{0}\""
msgstr "Disaring oleh "{0}""
-#. Label of a Code field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the filters (Code) field in DocType 'Access Log'
+#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
+#. Label of the filters (Small Text) field in DocType 'Prepared Report'
+#. Label of the filters_section (Section Break) field in DocType 'Report'
+#. Label of the filters (Table) field in DocType 'Report'
+#. Label of the filters_section (Section Break) field in DocType 'Dashboard
+#. Chart'
+#. Label of the filters (Code) field in DocType 'Kanban Board'
+#. Label of the filters (Long Text) field in DocType 'List Filter'
+#. Label of the filters (Text) field in DocType 'Auto Email Report'
+#. Label of the filters (Section Break) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
msgid "Filters"
msgstr "Penyaring"
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Filters"
-msgstr "Penyaring"
-
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Filters"
-msgstr "Penyaring"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Filters"
-msgstr "Penyaring"
-
-#. Label of a Long Text field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filters"
-msgstr "Penyaring"
-
-#. Label of a Section Break field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Filters"
-msgstr "Penyaring"
-
-#. Label of a Section Break field in DocType 'Prepared Report'
-#. Label of a Small Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Filters"
-msgstr "Penyaring"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Filters"
-msgstr "Penyaring"
-
-#: public/js/frappe/ui/filters/filter_list.js:131
-msgid "Filters {0}"
+#. Label of the filters_config (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Filters Configuration"
msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Filters Configuration"
-msgstr "Konfigurasi Filter"
-
-#. Label of a HTML field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filters Display"
-msgstr "filter Tampilan"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Filter JSON"
+msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Filters JSON"
-msgstr "Filter JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the filters_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Bagian Filter"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:486
+#: frappe/public/js/frappe/form/controls/link.js:510
msgid "Filters applied for {0}"
msgstr "Filter diterapkan untuk {0}"
-#: public/js/frappe/views/kanban/kanban_view.js:186
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
msgid "Filters saved"
msgstr "filter tersimpan"
#. Description of the 'Script' (Code) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Filters will be accessible via filters.
Send output as result = [result], or for old style data = [columns], [result]"
-msgstr "Filter akan dapat diakses melalui filters .
Kirim keluaran sebagai result = [result] , atau untuk data = [columns], [result] gaya lama data = [columns], [result]"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:556
+#: frappe/public/js/frappe/ui/filters/filter_list.js:133
+msgid "Filters {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
+msgid "Filters:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572
msgid "Find '{0}' in ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:325
-#: public/js/frappe/ui/toolbar/awesome_bar.js:326
-#: public/js/frappe/ui/toolbar/search_utils.js:125
-#: public/js/frappe/ui/toolbar/search_utils.js:128
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144
msgid "Find {0} in {1}"
msgstr "Cari {0} pada {1}"
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Jadi"
+msgstr ""
-#. Label of a Datetime field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
+#. Label of the first_day_of_the_week (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
msgstr ""
-#: www/complete_signup.html:15
+#. Label of the first_name (Data) field in DocType 'Contact'
+#. Label of the first_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
msgid "First Name"
msgstr "Nama Depan"
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "First Name"
-msgstr "Nama Depan"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "First Name"
-msgstr "Nama Depan"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the first_success_message (Data) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "First Success Message"
-msgstr "Pesan Sukses Pertama"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:49
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:49
msgid "First Transaction"
msgstr "Transaksi Pertama"
-#: core/doctype/data_export/exporter.py:185
+#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
msgstr "Data kolom pertama harus kosong."
-#: website/doctype/website_slideshow/website_slideshow.js:7
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
msgid "First set the name and save the record."
msgstr "Pertama-tama atur nama dan simpan catatannya."
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
+msgid "Fit"
+msgstr ""
+
+#. Label of the flag (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Bendera"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Float"
-msgstr "Mengapung"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Float"
-msgstr "Mengapung"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Float"
-msgstr "Mengapung"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Float"
-msgstr "Mengapung"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Float"
-msgstr "Mengapung"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr "Mengapung"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the float_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Mengapung Presisi"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Fold"
-msgstr "Melipat"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fold"
-msgstr "Melipat"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fold"
-msgstr "Melipat"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fold"
-msgstr "Melipat"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Melipat"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1401
+#: frappe/core/doctype/doctype/doctype.py:1450
msgid "Fold can not be at the end of the form"
msgstr "Lipat tidak bisa di akhir formulir"
-#: core/doctype/doctype/doctype.py:1399
+#: frappe/core/doctype/doctype/doctype.py:1448
msgid "Fold must come before a Section Break"
msgstr "Lipat harus datang sebelum Bagian istirahat"
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the folder (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Folder"
-msgstr "Map"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
+#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:100
+#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
msgstr "Nama folder tidak boleh menyertakan '/' (garis miring)"
-#: core/doctype/file/file.py:466
+#: frappe/core/doctype/file/file.py:472
msgid "Folder {0} is not empty"
msgstr "Folder {0} tidak kosong"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Folio"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Follow"
msgstr "Mengikuti"
-#: email/doctype/auto_email_report/auto_email_report.py:124
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
+msgid "Followed by"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:132
msgid "Following Report Filters have missing values:"
msgstr ""
-#: website/doctype/web_form/web_form.py:107
+#: frappe/desk/form/document_follow.py:63
+msgid "Following document {0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "bidang berikut yang hilang:"
-#: public/js/frappe/ui/field_group.js:133
+#: frappe/public/js/frappe/ui/field_group.js:139
msgid "Following fields have invalid values:"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:314
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
-#: public/js/frappe/ui/field_group.js:120
+#: frappe/public/js/frappe/ui/field_group.js:126
msgid "Following fields have missing values:"
msgstr "bidang berikut memiliki nilai yang hilang:"
-#: email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Font"
msgstr ""
-#. Label of a Select field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Font"
-msgstr "Font"
-
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the font_properties (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Properti Font"
+msgstr ""
-#. Label of a Int field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the font_size (Int) field in DocType 'Print Format'
+#. Label of the font_size (Float) field in DocType 'Print Settings'
+#. Label of the font_size (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Font Size"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Font Size"
-msgstr "Font Size"
-
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Font Size"
-msgstr "Font Size"
-
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the section_break_8 (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Fonts"
-msgstr "Font"
-
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Footer"
-msgstr "Footer"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Footer"
-msgstr "Footer"
-
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Footer"
-msgstr "Footer"
+msgstr ""
+#. Label of the set_footer (Section Break) field in DocType 'Email Account'
+#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
+#. Label of the footer (Text Editor) field in DocType 'About Us Settings'
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Footer"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Footer"
-msgstr "Footer"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer \"Powered By\""
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Based On"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the footer (Text Editor) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_details_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Details"
msgstr ""
-#. Label of a HTML Editor field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "Footer HTML"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:72
+#: frappe/printing/doctype/letter_head/letter_head.py:75
msgid "Footer HTML set from attachment {0}"
msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_image_section (Section Break) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer (Section Break) field in DocType 'Website Settings'
+#. Label of the footer_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr "Footer Items"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Logo"
-msgstr "Logo Footer"
+msgstr ""
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Script"
+msgstr ""
+
+#. Label of the footer_template (Link) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Template Footer"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template Values"
-msgstr "Nilai Template Footer"
+msgstr ""
-#: printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:116
msgid "Footer might not be visible as {0} option is disabled
"
msgstr ""
#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter
#. Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "Footer akan ditampilkan dengan benar hanya dalam PDF"
+msgstr ""
+
+#. Label of the for_doctype (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For DocType"
+msgstr ""
#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "For DocType Link / DocType Action"
-msgstr "Untuk Tautan DocType / Tindakan DocType"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "For Document Event"
-msgstr "Untuk Acara Dokumen"
+#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For Document"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:155
+#: frappe/core/doctype/user_permission/user_permission_list.js:155
msgid "For Document Type"
msgstr "Untuk Jenis Dokumen"
-#: public/js/frappe/widgets/widget_dialog.js:529
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "Misalnya: {} Buka"
+#. Description of the 'Options' (Small Text) field in DocType 'DocField'
#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid ""
-"For Links, enter the DocType as range.\n"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "For Links, enter the DocType as range.\n"
"For Select, enter list of Options, each on a new line."
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid ""
-"For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
-#: core/doctype/user_permission/user_permission_list.js:10
-#: core/doctype/user_permission/user_permission_list.js:148
+#. Label of the for_user (Link) field in DocType 'List Filter'
+#. Label of the for_user (Link) field in DocType 'Notification Log'
+#. Label of the for_user (Data) field in DocType 'Workspace'
+#: frappe/core/doctype/user_permission/user_permission_list.js:10
+#: frappe/core/doctype/user_permission/user_permission_list.js:148
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "For User"
msgstr "untuk Pengguna"
-#. Label of a Link field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "For User"
-msgstr "untuk Pengguna"
-
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "For User"
-msgstr "untuk Pengguna"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "For User"
-msgstr "untuk Pengguna"
-
-#. Label of a Dynamic Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the for_value (Dynamic Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "For Value"
-msgstr "Untuk nilai"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1958
-#: public/js/frappe/views/reports/report_view.js:96
+#: frappe/public/js/frappe/views/reports/query_report.js:2118
+#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)."
-#: printing/page/print_format_builder/print_format_builder.js:744
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "For example:"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:752
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Sebagai contoh: Jika Anda ingin memasukkan ID dokumen, gunakan {0}"
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Misalnya: {} Buka"
+msgstr ""
-#. Description of the 'Client Script' (Code) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Description of the 'Client script' (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Untuk bantuan, lihat API dan Contoh Skrip Klien"
+msgstr ""
#. Description of the 'Enable Automatic Linking in Documents' (Check) field in
#. DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "For more information, click here."
-msgstr "Untuk informasi lebih lanjut, klik di sini ."
+msgstr ""
-#: integrations/doctype/google_settings/google_settings.js:7
+#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
msgstr "Untuk informasi lebih lanjut, {0}."
#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email
#. Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com"
msgstr ""
-#: core/doctype/data_export/exporter.py:199
+#: frappe/core/doctype/data_export/exporter.py:197
msgid "For updating, you can update only selective columns."
msgstr "Untuk memperbarui, Anda hanya dapat memperbarui kolom tertentu."
-#: core/doctype/doctype/doctype.py:1692
+#: frappe/core/doctype/doctype/doctype.py:1751
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3}"
+#. Label of the force (Check) field in DocType 'Package Import'
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
#. Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr "Memaksa"
+msgstr ""
-#. Label of a Check field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
-msgid "Force"
-msgstr "Memaksa"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'DocType'
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Force Re-route to Default View"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Force Re-route to Default View"
-msgstr ""
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the force_show (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Force Show"
-msgstr "Angkatan Tampilkan"
+msgstr ""
-#: core/doctype/rq_job/rq_job.js:13
+#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the force_user_to_reset_password (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Paksa Pengguna untuk Mengatur Ulang Kata Sandi"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force Web Capture Mode for Uploads"
msgstr ""
-#: www/login.html:35
+#: frappe/www/login.html:37
msgid "Forgot Password?"
msgstr "Lupa kata sandi?"
-#: printing/page/print/print.js:83
-msgid "Form"
-msgstr ""
-
+#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType'
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Form"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Form"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form"
-msgstr ""
-
+#. Label of the form_tab (Tab Break) field in DocType 'Customize Form'
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the form_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/printing/page/print/print.js:83
+#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Form"
-msgstr ""
-
-#. Label of a HTML field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the form_builder (HTML) field in DocType 'DocType'
+#. Label of the form_builder (HTML) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Form Builder"
msgstr ""
-#. Label of a HTML field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form Builder"
-msgstr ""
-
-#. Label of a Code field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the form_dict (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Form Dict"
msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'DocType'
+#. Label of the form_settings_section (Section Break) field in DocType 'User'
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the form_settings_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Pengaturan Formulir"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form Settings"
-msgstr "Pengaturan Formulir"
-
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Form Settings"
-msgstr "Pengaturan Formulir"
-
-#. Name of a DocType
-#: desk/doctype/form_tour/form_tour.json
-msgid "Form Tour"
msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Name of a DocType
+#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Form Tour"
msgstr ""
#. Name of a DocType
-#: desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Form Tour Step"
msgstr ""
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "Form URL-Encoded"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:528
+#. Label of the format (Data) field in DocType 'Workspace Shortcut'
+#. Label of the format (Select) field in DocType 'Auto Email Report'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
-msgstr "Format"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Format"
-msgstr "Format"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Format"
-msgstr "Format"
-
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the format_data (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr "Format data"
+msgstr ""
-#: core/doctype/communication/communication.js:70
+#: frappe/core/doctype/communication/communication.js:70
msgid "Forward"
msgstr "Meneruskan"
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Forward To Email Address"
-msgstr "Teruskan Ke Alamat Surel"
+msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the fraction (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Fraction"
-msgstr "Pecahan"
+msgstr ""
-#. Label of a Int field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the fraction_units (Int) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr "Unit Fraksi"
-
-#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134
-msgid "Frappe"
-msgstr "Frape"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frape"
-#: public/js/frappe/ui/toolbar/about.js:4
+#: frappe/public/js/frappe/ui/toolbar/about.js:4
msgid "Frappe Framework"
msgstr "Frappe Kerangka"
-#: public/js/frappe/ui/theme_switcher.js:59
+#: frappe/public/js/frappe/ui/theme_switcher.js:59
msgid "Frappe Light"
msgstr ""
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:547
+msgid "Frappe Mail OAuth Error"
+msgstr ""
+
+#. Label of the frappe_mail_site (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail Site"
+msgstr ""
+
#. Label of a standard help item
-#. Type: Action
-#: hooks.py
+#. Type: Route
+#: frappe/hooks.py
msgid "Frappe Support"
msgstr ""
-#: public/js/frappe/utils/common.js:395
-msgid "Frequency"
-msgstr "Frekuensi"
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Frappe page builder using components"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Frequency"
-msgstr "Frekuensi"
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112
+msgctxt "Image Cropper"
+msgid "Free"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Frequency"
-msgstr "Frekuensi"
-
-#. Label of a Select field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Frequency"
-msgstr "Frekuensi"
-
-#. Label of a Select field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Frequency"
-msgstr "Frekuensi"
-
-#. Label of a Select field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the frequency (Select) field in DocType 'Auto Repeat'
+#. Label of the frequency (Select) field in DocType 'Scheduled Job Type'
+#. Label of the document_follow_frequency (Select) field in DocType 'User'
+#. Label of the frequency (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "Frekuensi"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Friday"
-msgstr "Jum'at"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Friday"
-msgstr "Jum'at"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Friday"
-msgstr "Jum'at"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Friday"
-msgstr "Jum'at"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the friday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Friday"
-msgstr "Jum'at"
+msgstr ""
-#: public/js/frappe/views/communication.js:170
-#: public/js/frappe/views/inbox/inbox_view.js:70
+#. Label of the sender (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Dari"
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:197
+msgctxt "Email Sender"
msgid "From"
msgstr "Dari"
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "From"
-msgstr "Dari"
-
-#: website/report/website_analytics/website_analytics.js:8
+#. Label of the from_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:8
msgid "From Date"
msgstr "Dari Tanggal"
-#. Label of a Date field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "From Date"
-msgstr "Dari Tanggal"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the from_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "From Date Field"
-msgstr "Dari Kolom Tanggal"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1672
+#: frappe/public/js/frappe/views/reports/query_report.js:1829
msgid "From Document Type"
msgstr "Dari Jenis Dokumen"
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the sender_full_name (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "Dari Nama Lengkap"
+msgstr ""
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the from_user (Link) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "From User"
-msgstr "Dari Pengguna"
+msgstr ""
-#: public/js/frappe/utils/diffview.js:30
+#: frappe/public/js/frappe/utils/diffview.js:31
msgid "From version"
msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Full"
-msgstr "Penuh"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4
+#. Label of the full_name (Data) field in DocType 'Contact'
+#. Label of the full_name (Data) field in DocType 'Activity Log'
+#. Label of the full_name (Data) field in DocType 'User'
+#. Label of the full_name (Data) field in DocType 'About Us Team Member'
+#. Label of the full_name (Data) field in DocType 'Blogger'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:479
+#: frappe/templates/signup.html:4
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
msgid "Full Name"
msgstr "Nama Lengkap"
-#. Label of a Data field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
-msgid "Full Name"
-msgstr "Nama Lengkap"
-
-#. Label of a Data field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Full Name"
-msgstr "Nama Lengkap"
-
-#. Label of a Data field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Full Name"
-msgstr "Nama Lengkap"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Full Name"
-msgstr "Nama Lengkap"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Full Name"
-msgstr "Nama Lengkap"
-
-#: printing/page/print/print.js:67
+#: frappe/printing/page/print/print.js:67
+#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
-msgstr "Full Page"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the full_width (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Lebar Penuh"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:245
-#: public/js/frappe/widgets/widget_dialog.js:666
+#. Label of the function (Select) field in DocType 'Number Card'
+#. Label of the report_function (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Fungsi"
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Function"
-msgstr "Fungsi"
-
-#: public/js/frappe/widgets/widget_dialog.js:673
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "Fungsi Berdasarkan"
-#: __init__.py:835
+#: frappe/__init__.py:466
msgid "Function {0} is not whitelisted."
msgstr ""
-#: public/js/frappe/views/treeview.js:402
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup'"
-#: core/doctype/communication/communication.js:291
+#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
-msgstr "Fw: {0}"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "GMail"
-msgstr "GMail"
+msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "GNU Affero General Public License"
msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "GNU General Public License"
msgstr ""
-#: public/js/frappe/views/gantt/gantt_view.js:10
-msgid "Gantt"
-msgstr "Gantt"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:10
msgid "Gantt"
-msgstr "Gantt"
-
-#. Name of a DocType
-#: contacts/doctype/gender/gender.json
-msgid "Gender"
-msgstr "Jenis Kelamin"
-
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Gender"
-msgstr "Jenis Kelamin"
-
-#. Label of a Data field in DocType 'Gender'
-#: contacts/doctype/gender/gender.json
-msgctxt "Gender"
-msgid "Gender"
-msgstr "Jenis Kelamin"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Gender"
-msgstr "Jenis Kelamin"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "Generate Custom Reports"
msgstr ""
-#. Label of a Button field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Generate Keys"
-msgstr "Hasilkan Kunci"
+#: frappe/public/js/frappe/list/base_list.js:205
+msgid "Gantt View"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:803
+#. Label of the gender (Link) field in DocType 'Contact'
+#. Name of a DocType
+#. Label of the gender (Data) field in DocType 'Gender'
+#. Label of the gender (Link) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/core/doctype/user/user.json
+msgid "Gender"
+msgstr "Jenis Kelamin"
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:32
+msgid "Genderqueer"
+msgstr ""
+
+#: frappe/www/contact.html:29
+msgid "General"
+msgstr ""
+
+#. Label of the generate_keys (Button) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Generate Keys"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:873
msgid "Generate New Report"
msgstr "Hasilkan Laporan Baru"
-#: public/js/frappe/ui/toolbar/awesome_bar.js:366
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394
msgid "Generate Random Password"
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:137
-#: public/js/frappe/utils/utils.js:1750
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178
+#: frappe/public/js/frappe/utils/utils.js:1790
msgid "Generate Tracking URL"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Geolocation"
-msgstr "Geolokasi"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Geolocation"
-msgstr "Geolokasi"
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geoapify"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "Geolokasi"
+msgstr ""
-#: email/doctype/notification/notification.js:170
+#. Name of a DocType
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geolocation Settings"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:219
msgid "Get Alerts for Today"
msgstr "Dapatkan Pemberitahuan untuk Hari ini"
-#: desk/page/backups/backups.js:19
+#: frappe/desk/page/backups/backups.js:21
msgid "Get Backup Encryption Key"
msgstr ""
-#. Label of a Button field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Get Contacts"
-msgstr "Dapatkan Kontak"
+msgstr ""
-#: website/doctype/web_form/web_form.js:84
+#: frappe/website/doctype/web_form/web_form.js:93
msgid "Get Fields"
msgstr "Dapatkan Fields"
-#: public/js/frappe/form/multi_select_dialog.js:85
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Get Header and Footer wkhtmltopdf variables"
+msgstr ""
+
+#: frappe/public/js/frappe/form/multi_select_dialog.js:86
msgid "Get Items"
msgstr "Dapatkan Produk"
-#: integrations/doctype/connected_app/connected_app.js:6
+#: frappe/integrations/doctype/connected_app/connected_app.js:6
msgid "Get OpenID Configuration"
msgstr ""
-#: www/printview.html:22
+#: frappe/www/printview.html:22
msgid "Get PDF"
msgstr ""
#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document
#. Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Get a preview of generated names with a series."
msgstr ""
+#: frappe/public/js/frappe/list/list_sidebar.js:305
+msgid "Get more insights with"
+msgstr ""
+
#. Description of the 'Email Threads on Assigned Document' (Check) field in
#. DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Get notified when an email is received on any of the documents assigned to you."
msgstr ""
#. Description of the 'User Image' (Attach Image) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Get your globally recognized avatar from Gravatar.com"
-msgstr "Dapatkan avatar Anda diakui secara global dari Gravatar.com"
+msgstr ""
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the git_branch (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Git Branch"
-msgstr "Cabang Git"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "GitHub"
-msgstr "GitHub"
+msgstr ""
-#: social/doctype/energy_point_settings/energy_point_settings.js:7
-#: social/doctype/energy_point_settings/energy_point_settings.js:14
-msgid "Give Review Points"
-msgstr "Berikan Poin Ulasan"
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Github flavoured markdown syntax"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
msgid "Global Search DocType"
msgstr "DocType Pencarian Global"
-#: desk/doctype/global_search_settings/global_search_settings.js:24
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24
msgid "Global Search Document Types Reset."
msgstr "Reset Jenis Dokumen Pencarian Global."
#. Name of a DocType
-#: desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Global Search Settings"
msgstr "Pengaturan Pencarian Global"
-#: public/js/frappe/ui/keyboard.js:118
+#: frappe/public/js/frappe/ui/keyboard.js:122
msgid "Global Shortcuts"
msgstr "Pintasan Global"
-#. Label of a Check field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
+#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Global Unsubscribe"
-msgstr "Global yang Unsubscribe"
+msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:68
-#: public/js/frappe/form/toolbar.js:767
+#: frappe/public/js/frappe/form/toolbar.js:843
msgid "Go"
msgstr "Pergi"
-#: public/js/frappe/widgets/onboarding_widget.js:246
-#: public/js/frappe/widgets/onboarding_widget.js:326
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:241
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:321
msgid "Go Back"
msgstr "Kembali"
-#: desk/doctype/notification_settings/notification_settings.js:17
+#: frappe/desk/doctype/notification_settings/notification_settings.js:17
msgid "Go to Notification Settings List"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Buka halaman"
+msgstr ""
-#: public/js/workflow_builder/workflow_builder.bundle.js:41
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
msgstr ""
-#: desk/doctype/workspace/workspace.js:18
+#: frappe/desk/doctype/workspace/workspace.js:18
msgid "Go to Workspace"
msgstr ""
-#: public/js/frappe/form/form.js:144
+#: frappe/public/js/frappe/form/form.js:144
msgid "Go to next record"
msgstr "Pergi ke catatan berikutnya"
-#: public/js/frappe/form/form.js:154
+#: frappe/public/js/frappe/form/form.js:154
msgid "Go to previous record"
msgstr "Pergi ke catatan sebelumnya"
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:52
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53
msgid "Go to the document"
msgstr "Pergi ke dokumen"
#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
msgid "Go to this URL after completing the form"
msgstr ""
-#: core/doctype/doctype/doctype.js:54
-#: custom/doctype/client_script/client_script.js:10
+#: frappe/core/doctype/doctype/doctype.js:54
+#: frappe/custom/doctype/client_script/client_script.js:10
msgid "Go to {0}"
msgstr "Pergi ke {0}"
-#: core/doctype/data_import/data_import.js:92
-#: core/doctype/doctype/doctype.js:58
-#: custom/doctype/customize_form/customize_form.js:104
-#: custom/doctype/doctype_layout/doctype_layout.js:42
-#: workflow/doctype/workflow/workflow.js:44
+#: frappe/core/doctype/data_import/data_import.js:92
+#: frappe/core/doctype/doctype/doctype.js:55
+#: frappe/custom/doctype/customize_form/customize_form.js:104
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42
+#: frappe/workflow/doctype/workflow/workflow.js:44
msgid "Go to {0} List"
msgstr "Buka Daftar {0}"
-#: core/doctype/page/page.js:11
+#: frappe/core/doctype/page/page.js:11
msgid "Go to {0} Page"
msgstr "Buka Halaman {0}"
-#: utils/goal.py:115 utils/goal.py:122
+#: frappe/utils/goal.py:115 frappe/utils/goal.py:122
msgid "Goal"
msgstr "Sasaran"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Google"
-msgstr "Google"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics ID"
-msgstr "Google Analytics ID"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics anonymise IP"
msgstr ""
+#. Label of the sb_00 (Section Break) field in DocType 'Event'
+#. Label of the google_calendar (Link) field in DocType 'Event'
#. Name of a DocType
-#: integrations/doctype/google_calendar/google_calendar.json
-msgid "Google Calendar"
-msgstr "Kalender Google"
-
-#. Label of a Section Break field in DocType 'Event'
-#. Label of a Link field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Google Calendar"
-msgstr "Kalender Google"
-
-#. Label of a Section Break field in DocType 'Google Calendar'
+#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Calendar"
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Calendar"
msgstr "Kalender Google"
-#: integrations/doctype/google_calendar/google_calendar.py:781
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:251
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
msgstr "Google Kalender - Tidak dapat membuat Kalender untuk {0}, kode kesalahan {1}."
-#: integrations/doctype/google_calendar/google_calendar.py:575
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:610
msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}."
msgstr "Kalender Google - Tidak dapat menghapus Acara {0} dari Kalender Google, kode kesalahan {1}."
-#: integrations/doctype/google_calendar/google_calendar.py:288
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:305
msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}."
msgstr "Kalender Google - Tidak dapat mengambil acara dari Kalender Google, kode kesalahan {0}."
-#: integrations/doctype/google_contacts/google_contacts.py:229
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:252
+msgid "Google Calendar - Could not find Calendar for {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:232
msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}."
msgstr "Kalender Google - Tidak dapat memasukkan kontak ke dalam Kontak Google {0}, kode kesalahan {1}."
-#: integrations/doctype/google_calendar/google_calendar.py:458
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:496
msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}."
msgstr "Kalender Google - Tidak dapat menyisipkan acara di Kalender Google {0}, kode kesalahan {1}."
-#: integrations/doctype/google_calendar/google_calendar.py:542
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:580
msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}."
msgstr "Kalender Google - Tidak dapat memperbarui Acara {0} di Kalender Google, kode kesalahan {1}."
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "ID Peristiwa Kalender Google"
+msgstr ""
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_calendar_id (Data) field in DocType 'Event'
+#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "ID Kalender Google"
+msgstr ""
-#. Label of a Data field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "Google Calendar ID"
-msgstr "ID Kalender Google"
-
-#: integrations/doctype/google_calendar/google_calendar.py:166
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
msgstr "Kalender Google telah dikonfigurasi."
+#. Label of the sb_00 (Section Break) field in DocType 'Contact'
+#. Label of the google_contacts (Link) field in DocType 'Contact'
#. Name of a DocType
-#: integrations/doctype/google_contacts/google_contacts.json
-msgid "Google Contacts"
-msgstr "Kontak Google"
-
-#. Label of a Section Break field in DocType 'Contact'
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Google Contacts"
-msgstr "Kontak Google"
-
-#. Label of a Section Break field in DocType 'Google Contacts'
+#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_contacts/google_contacts.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Contacts"
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Contacts"
msgstr "Kontak Google"
-#: integrations/doctype/google_contacts/google_contacts.py:136
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:137
msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}."
msgstr "Google Kontak - Tidak dapat menyinkronkan kontak dari Google Kontak {0}, kode kesalahan {1}."
-#: integrations/doctype/google_contacts/google_contacts.py:291
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:294
msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}."
msgstr "Google Kontak - Tidak dapat memperbarui kontak di Google Kontak {0}, kode kesalahan {1}."
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the google_contacts_id (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "Google Kontak Id"
+msgstr ""
-#. Name of a DocType
-#: integrations/doctype/google_drive/google_drive.json
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
-msgstr "Google Drive"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Drive'
-#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_drive/google_drive.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Drive"
-msgid "Google Drive"
-msgstr "Google Drive"
-
-#: integrations/doctype/google_drive/google_drive.py:118
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Tidak dapat membuat folder di Google Drive - Kode Kesalahan {0}"
-
-#: integrations/doctype/google_drive/google_drive.py:134
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Tidak dapat menemukan folder di Google Drive - Kode Kesalahan {0}"
-
-#: integrations/doctype/google_drive/google_drive.py:196
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - Tidak dapat menemukan - {0}"
-
-#: integrations/doctype/google_drive/google_drive.py:207
-msgid "Google Drive Backup Successful."
-msgstr "Cadangan Google Drive Berhasil."
-
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the section_break_7 (Section Break) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
msgstr ""
-#. Label of a Check field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
msgstr ""
-#. Label of a Data field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the font (Data) field in DocType 'Print Format'
+#. Label of the google_font (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "Google Font"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Google Font"
-msgstr "Google Font"
-
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_meet_link (Small Text) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
msgstr ""
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Services"
msgstr "Layanan Google"
#. Name of a DocType
-#: integrations/doctype/google_settings/google_settings.json
-msgid "Google Settings"
-msgstr "Pengaturan Google"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Settings"
+#. Label of a shortcut in the Integrations Workspace
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
msgstr "Pengaturan Google"
-#: utils/csvutils.py:199
+#: frappe/utils/csvutils.py:226
msgid "Google Sheets URL is invalid or not publicly accessible."
msgstr "URL Google Spreadsheet tidak valid atau tidak dapat diakses publik."
-#: utils/csvutils.py:204
+#: frappe/utils/csvutils.py:231
msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again."
msgstr "URL Google Spreadsheet harus diakhiri dengan "gid = {number}". Salin dan tempel URL dari bilah alamat browser dan coba lagi."
-#. Label of a HTML field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the google_preview (HTML) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Google Snippet Preview"
-msgstr "Pratinjau Google Snippet"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the grant_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr "Jenis Donasi"
+msgstr ""
-#: public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
msgid "Graph"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Gray"
msgstr ""
-#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Gray"
+#: frappe/public/js/frappe/ui/filters/filter.js:23
+msgid "Greater Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:25
+msgid "Greater Than Or Equal To"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Green"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Green"
+msgstr "Hijau"
+
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:53
+msgid "Grid Empty State"
msgstr ""
-#: public/js/frappe/ui/keyboard.js:123
+#. Label of the grid_page_length (Int) field in DocType 'DocType'
+#. Label of the grid_page_length (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Grid Page Length"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:127
msgid "Grid Shortcuts"
msgstr ""
-#. Label of a Data field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the group (Data) field in DocType 'DocType Action'
+#. Label of the group (Data) field in DocType 'DocType Link'
+#. Label of the group (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Group"
msgstr "Grup"
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Group"
-msgstr "Grup"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Group"
-msgstr "Grup"
-
-#: website/report/website_analytics/website_analytics.js:32
-msgid "Group By"
-msgstr "Dikelompokkan oleh"
-
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:32
msgid "Group By"
msgstr "Dikelompokkan oleh"
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Based On"
-msgstr "Kelompok Berdasarkan Berdasarkan"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Type"
-msgstr "Kelompokkan menurut Jenis"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:408
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
msgid "Group By field is required to create a dashboard chart"
msgstr "Kolom Group By diperlukan untuk membuat bagan dasbor"
-#: public/js/frappe/views/treeview.js:401
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Node Grup"
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:415
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Group your custom doctypes under modules"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "HEAD"
msgstr ""
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "HERE"
+msgstr ""
+
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm"
-msgstr "HH: mm"
+msgstr ""
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm:ss"
-msgstr "HH: mm: dd"
-
-#: printing/doctype/print_format/print_format.py:93
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "HTML"
-msgstr "HTML"
-
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "HTML"
-msgstr "HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "HTML"
-msgstr "HTML"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the html_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "HTML"
-msgstr "HTML"
-
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "HTML"
-msgstr "HTML"
-
+#. Label of the html (Code) field in DocType 'Print Format'
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "HTML"
-msgstr "HTML"
-
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/public/js/print_format_builder/Field.vue:86
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "HTML Editor"
-msgstr "Editor HTML"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "HTML Editor"
-msgstr "Editor HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "Editor HTML"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the page (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Halaman HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML untuk bagian header. Pilihan"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "HTML with jinja support"
+msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr "Setengah"
+msgstr ""
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Half Yearly"
-msgstr "Setengah Tahunan"
-
-#: public/js/frappe/utils/common.js:402
-msgid "Half-yearly"
-msgstr "Setengah tahun"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/public/js/frappe/utils/common.js:402
msgid "Half-yearly"
msgstr "Setengah tahun"
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the handled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Handled Emails"
+msgstr ""
+
+#. Label of the has_attachment (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Has Attachment"
-msgstr "memiliki Lampiran"
+msgstr ""
#. Name of a DocType
-#: core/doctype/has_domain/has_domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
msgid "Has Domain"
msgstr "Memiliki Domain"
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Has Next Condition"
msgstr ""
#. Name of a DocType
-#: core/doctype/has_role/has_role.json
+#: frappe/core/doctype/has_role/has_role.json
msgid "Has Role"
msgstr "memiliki Peran"
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Has Web View"
-msgstr "Memiliki Web View"
+#. Label of the has_setup_wizard (Check) field in DocType 'Installed
+#. Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Has Setup Wizard"
+msgstr ""
-#: templates/signup.html:19
+#. Label of the has_web_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Has Web View"
+msgstr ""
+
+#: frappe/templates/signup.html:19
msgid "Have an account? Login"
msgstr "Punya akun? Masuk"
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the header (Check) field in DocType 'SMS Parameter'
+#. Label of the header_section (Section Break) field in DocType 'Letter Head'
+#. Label of the header (HTML Editor) field in DocType 'Web Page'
+#. Label of the header (HTML Editor) field in DocType 'Website Slideshow'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr "Header"
+msgstr ""
-#. Label of a Check field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
-msgid "Header"
-msgstr "Header"
-
-#. Label of a HTML Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Header"
-msgstr "Header"
-
-#. Label of a HTML Editor field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
-msgid "Header"
-msgstr "Header"
-
-#. Label of a HTML Editor field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the content (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr "Header HTML"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:60
+#: frappe/printing/doctype/letter_head/letter_head.py:63
msgid "Header HTML set from attachment {0}"
msgstr "Set HTML header dari lampiran {0}"
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Header and Breadcrumbs"
-msgstr "Header dan Breadcrumbs"
+#. Label of the header_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Header Script"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the sb2 (Section Break) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Header and Breadcrumbs"
+msgstr ""
+
+#. Label of the section_break_38 (Tab Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Header, Robots"
msgstr ""
-#. Label of a Table field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Header/Footer scripts can be used to add dynamic behaviours."
+msgstr ""
+
+#. Label of the webhook_headers (Table) field in DocType 'Webhook'
+#. Label of the headers (Code) field in DocType 'Webhook Request Log'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr "Judul"
+msgstr ""
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Headers"
-msgstr "Judul"
-
-#: printing/page/print_format_builder/print_format_builder.js:602
-msgid "Heading"
-msgstr "Kepala"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Heading"
-msgstr "Kepala"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Heading"
-msgstr "Kepala"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Heading"
-msgstr "Kepala"
+#: frappe/email/email_body.py:322
+msgid "Headers must be a dictionary"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Heading"
-msgstr "Kepala"
-
-#. Label of a Data field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the heading (Data) field in DocType 'Contact Us Settings'
+#. Label of the heading (Data) field in DocType 'Website Slideshow Item'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:609
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Heading"
msgstr "Kepala"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Peta panas"
+msgstr ""
-#: templates/emails/new_user.html:2
+#: frappe/templates/emails/new_user.html:2
msgid "Hello"
msgstr ""
-#: public/js/frappe/form/workflow.js:23 public/js/frappe/utils/help.js:27
-msgid "Help"
-msgstr "Bantuan"
-
-#. Label of a HTML field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Help"
-msgstr "Bantuan"
-
-#. Label of a Section Break field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the help_section (Section Break) field in DocType 'Server Script'
+#. Label of the help (HTML) field in DocType 'Property Setter'
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/workflow.js:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:87
+#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
msgstr "Bantuan"
#. Name of a DocType
-#: website/doctype/help_article/help_article.json
-msgid "Help Article"
-msgstr "Bantuan Pasal"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/workspace/website/website.json
msgid "Help Article"
msgstr "Bantuan Pasal"
-#. Label of a Int field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the help_articles (Int) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Help Articles"
msgstr "Bantuan Artikel"
#. Name of a DocType
-#: website/doctype/help_category/help_category.json
-msgid "Help Category"
-msgstr "Bantuan Kategori"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Help Category"
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/workspace/website/website.json
msgid "Help Category"
msgstr "Bantuan Kategori"
-#. Label of a Table field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:84
msgid "Help Dropdown"
-msgstr "Bantuan Dropdown"
+msgstr ""
-#. Label of a HTML field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the help_html (HTML) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Help HTML"
-msgstr "Bantuan HTML"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:149
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149
msgid "Help on Search"
msgstr "Bantuan Pencarian"
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#: frappe/desk/doctype/note/note.json
msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")"
msgstr ""
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Helpful"
msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica"
-msgstr "Helvetica"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica Neue"
msgstr ""
-#: public/js/frappe/utils/utils.js:1747
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Here's your tracking URL"
msgstr ""
-#: www/qrcode.html:9
+#: frappe/www/qrcode.html:9
msgid "Hi {0}"
msgstr "Hai {0}"
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hidden (Check) field in DocType 'DocField'
+#. Label of the hidden (Check) field in DocType 'DocType Action'
+#. Label of the hidden (Check) field in DocType 'DocType Link'
+#. Label of the hidden (Check) field in DocType 'Navbar Item'
+#. Label of the hidden (Check) field in DocType 'Custom Field'
+#. Label of the hidden (Check) field in DocType 'Customize Form Field'
+#. Label of the hidden (Check) field in DocType 'Desktop Icon'
+#. Label of the hidden (Check) field in DocType 'Workspace Link'
+#. Label of the hidden (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Hidden"
-msgstr "Tersembunyi"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Check field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Check field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Hidden"
-msgstr "Tersembunyi"
-
-#. Label of a Section Break field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:814
-#: public/js/frappe/widgets/base_widget.js:46
-#: public/js/frappe/widgets/base_widget.js:176
-msgid "Hide"
-msgstr "Menyembunyikan"
+#: frappe/public/js/frappe/views/reports/query_report.js:1641
+msgid "Hidden columns include: {0}"
+msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
+#: frappe/templates/includes/login/login.js:82
+#: frappe/www/update-password.html:117
msgid "Hide"
msgstr "Menyembunyikan"
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the hide_block (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Hide Block"
-msgstr "Sembunyikan Blokir"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_border (Check) field in DocType 'DocField'
+#. Label of the hide_border (Check) field in DocType 'Custom Field'
+#. Label of the hide_border (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr "Sembunyikan Perbatasan"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Border"
-msgstr "Sembunyikan Perbatasan"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Border"
-msgstr "Sembunyikan Perbatasan"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Buttons"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the hide_cta (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Hide CTA"
-msgstr "Sembunyikan CTA"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_copy (Check) field in DocType 'DocType'
+#. Label of the allow_copy (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr "Sembunyikan Duplikat"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Hide Copy"
-msgstr "Sembunyikan Duplikat"
-
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the hide_custom (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr "Sembunyikan DocTypes dan Laporan Kustom"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_days (Check) field in DocType 'DocField'
+#. Label of the hide_days (Check) field in DocType 'Custom Field'
+#. Label of the hide_days (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr "Sembunyikan Hari"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Days"
-msgstr "Sembunyikan Hari"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Days"
-msgstr "Sembunyikan Hari"
-
-#: core/doctype/user_permission/user_permission_list.js:96
+#. Label of the hide_descendants (Check) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:96
msgid "Hide Descendants"
msgstr ""
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Hide Descendants"
+#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Hide Empty Read-Only Fields"
msgstr ""
-#: www/error.html:41 www/error.html:56
+#: frappe/www/error.html:62
msgid "Hide Error"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Hide Login"
-msgstr "Sembunyikan Login"
+#: frappe/printing/page/print_format_builder/print_format_builder.js:488
+msgid "Hide Label"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:43
-#: public/js/print_format_builder/print_format_builder.bundle.js:54
+#. Label of the hide_login (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Hide Login"
+msgstr ""
+
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Hide Preview"
msgstr ""
#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Previous, Next and Close button on highlight dialog."
msgstr ""
-#: public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Hide Saved"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_seconds (Check) field in DocType 'DocField'
+#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
+#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr "Sembunyikan Detik"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Seconds"
-msgstr "Sembunyikan Detik"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Seconds"
-msgstr "Sembunyikan Detik"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the hide_toolbar (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Hide Sidebar, Menu, and Comments"
msgstr ""
-#. Label of a Check field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Hide Standard Menu"
-msgstr "Sembunyikan Menu Standar"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1566
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Hide Tags"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:184
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
msgstr "Sembunyikan Akhir Pekan"
-#: public/js/frappe/views/workspace/workspace.js:815
-msgid "Hide Workspace"
-msgstr ""
-
#. Description of the 'Hide Descendants' (Check) field in DocType 'User
#. Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Hide descendant records of For Value."
msgstr ""
-#: public/js/frappe/form/layout.js:260
+#: frappe/public/js/frappe/form/layout.js:286
msgid "Hide details"
msgstr "Sembunyikan detail"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Hide footer in auto email reports"
-msgstr "Sembunyikan footer di laporan email otomatis"
+#. Label of the hide_footer (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Hide footer"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Hide footer in auto email reports"
+msgstr ""
+
+#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide footer signup"
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:198
-msgid "High"
-msgstr "Tinggi"
+#. Label of the hide_navbar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Hide navbar"
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:225
msgid "High"
msgstr "Tinggi"
#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Higher priority rule will be applied first"
-msgstr "Aturan prioritas yang lebih tinggi akan diterapkan terlebih dahulu"
+msgstr ""
-#. Label of a Text field in DocType 'Company History'
-#: website/doctype/company_history/company_history.json
-msgctxt "Company History"
+#. Label of the highlight (Text) field in DocType 'Company History'
+#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr "Menyoroti"
+msgstr ""
-#: www/update-password.html:271
+#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
msgstr "Petunjuk: Sertakan simbol, angka dan huruf kapital di dalam kata sandi"
-#: core/doctype/file/utils.py:31 public/js/frappe/views/file/file_view.js:67
-#: public/js/frappe/views/file/file_view.js:88
-#: public/js/frappe/views/pageview.js:149 templates/doc.html:19
-#: templates/includes/navbar/navbar.html:9
-#: website/doctype/blog_post/blog_post.py:153
-#: website/doctype/blog_post/blog_post.py:265
-#: website/doctype/blog_post/blog_post.py:267
-#: website/web_template/primary_navbar/primary_navbar.html:9 www/contact.py:22
-#: www/error.html:30 www/login.html:150 www/message.html:34
+#. Label of the home_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38
+#: frappe/public/js/frappe/views/file/file_view.js:67
+#: frappe/public/js/frappe/views/file/file_view.js:88
+#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19
+#: frappe/templates/includes/navbar/navbar.html:9
+#: frappe/website/doctype/blog_post/blog_post.py:159
+#: frappe/website/doctype/blog_post/blog_post.py:271
+#: frappe/website/doctype/blog_post/blog_post.py:273
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
+#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
+#: frappe/www/message.html:29
msgid "Home"
msgstr "Rumah"
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Home"
-msgstr "Rumah"
-
-#. Label of a Data field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the home_page (Data) field in DocType 'Role'
+#. Label of the home_page (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr "Home Page"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Home Page"
-msgstr "Home Page"
-
-#. Label of a Code field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the home_settings (Code) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr "Pengaturan Beranda"
+msgstr ""
-#: core/doctype/file/test_file.py:299 core/doctype/file/test_file.py:301
-#: core/doctype/file/test_file.py:365
+#: frappe/core/doctype/file/test_file.py:321
+#: frappe/core/doctype/file/test_file.py:323
+#: frappe/core/doctype/file/test_file.py:387
msgid "Home/Test Folder 1"
msgstr "Rumah / Test Folder 1"
-#: core/doctype/file/test_file.py:354
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "Rumah / Test Folder 1 / Test Folder 3"
-#: core/doctype/file/test_file.py:310
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Rumah / Test Folder 2"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Hourly"
-msgstr "Per jam"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Hourly"
-msgstr "Per jam"
-
#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr "Per jam"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Hourly Long"
-msgstr "Per Jam Panjang"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Hourly Long"
-msgstr "Per Jam Panjang"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Hourly Maintenance"
+msgstr ""
#. Description of the 'Password Reset Link Generation Limit' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr "Batas tarif per jam untuk membuat tautan pengaturan ulang kata sandi"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Jam"
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
-msgstr "Bagaimana seharusnya mata uang ini akan diformat? Jika tidak diatur, akan menggunakan default sistem"
+msgstr ""
-#: core/doctype/data_import/importer.py:1120
-#: core/doctype/data_import/importer.py:1126
-#: core/doctype/data_import/importer.py:1192
-#: core/doctype/data_import/importer.py:1195 desk/report/todo/todo.py:36
-#: model/__init__.py:137 model/meta.py:45
-#: public/js/frappe/data_import/data_exporter.js:326
-#: public/js/frappe/data_import/data_exporter.js:341
-#: public/js/frappe/list/list_view.js:355
-#: public/js/frappe/list/list_view.js:419 public/js/frappe/model/meta.js:197
-#: public/js/frappe/model/model.js:112
+#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Human-readable name intended for display to the end user."
+msgstr ""
+
+#. Paragraph text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1174
+#: frappe/core/doctype/data_import/importer.py:1180
+#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/core/doctype/data_import/importer.py:1248
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
+#: frappe/public/js/frappe/data_import/data_exporter.js:330
+#: frappe/public/js/frappe/data_import/data_exporter.js:345
+#: frappe/public/js/frappe/list/list_settings.js:337
+#: frappe/public/js/frappe/list/list_view.js:383
+#: frappe/public/js/frappe/list/list_view.js:447
+#: frappe/public/js/frappe/model/meta.js:200
+#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
-msgstr "ID"
+msgstr ""
-#: desk/reportview.py:418 public/js/frappe/views/reports/report_view.js:920
+#: frappe/desk/reportview.py:491
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
-msgstr "ID"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169
+msgid "ID (name)"
+msgstr ""
#. Description of the 'Field Name' (Data) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "ID (name) of the entity whose property is to be set"
-msgstr "ID (nama) dari entitas yang properti harus ditetapkan"
+msgstr ""
#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique."
msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the section_break_25 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "IMAP Details"
msgstr ""
+#. Label of the imap_folder (Data) field in DocType 'Communication'
+#. Label of the imap_folder (Table) field in DocType 'Email Account'
#. Name of a DocType
-#: email/doctype/imap_folder/imap_folder.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "IMAP Folder"
msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "IMAP Folder"
-msgstr ""
-
-#. Label of a Table field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "IMAP Folder"
-msgstr ""
-
-#. Label of a Data field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the ip_address (Data) field in DocType 'Activity Log'
+#. Label of the ip_address (Data) field in DocType 'Comment'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
msgid "IP Address"
-msgstr "Alamat IP"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "IP Address"
-msgstr "Alamat IP"
-
-#: public/js/frappe/views/workspace/workspace.js:632
-#: public/js/frappe/views/workspace/workspace.js:960
-#: public/js/frappe/views/workspace/workspace.js:1205
-msgid "Icon"
-msgstr "Ikon"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Icon"
-msgstr "Ikon"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Label of a Select field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Label of a Icon field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Icon"
-msgstr "Ikon"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the icon (Data) field in DocType 'DocType'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the icon (Data) field in DocType 'Desktop Icon'
+#. Label of the icon (Icon) field in DocType 'Workspace'
+#. Label of the icon (Data) field in DocType 'Workspace Link'
+#. Label of the icon (Data) field in DocType 'Workspace Shortcut'
+#. Label of the icon (Data) field in DocType 'Social Login Key'
+#. Label of the icon (Select) field in DocType 'Workflow State'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:458
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Ikon"
#. Description of the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon will appear on the button"
-msgstr "Icon akan muncul pada tombol"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the sb_identity_details (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Identity Details"
-msgstr "Rincian identitas"
+msgstr ""
-#. Label of a Int field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the idx (Int) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Idx"
-msgstr "idx"
+msgstr ""
#. Description of the 'Apply Strict User Permissions' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "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"
-msgstr "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."
+msgstr ""
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "If Checked workflow status will not override status in list view"
-msgstr "Jika dicentang, status alur kerja tidak akan menimpa status di tampilan daftar"
-
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "If Checked workflow status will not override status in list view"
-msgstr "Jika dicentang, status alur kerja tidak akan menimpa status di tampilan daftar"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1706
+#: frappe/core/doctype/doctype/doctype.py:1763
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
+#: frappe/public/js/frappe/roles_editor.js:66
msgid "If Owner"
msgstr "Jika Owner"
+#: frappe/core/page/permission_manager/permission_manager_help.html:25
+msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
+msgstr ""
+
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "Jika dicentang, semua alur kerja lain menjadi tidak aktif."
+msgstr ""
#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
#. Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive"
msgstr ""
#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
#. Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "If checked, users will not see the Confirm Access dialog."
-msgstr "Jika dicentang, pengguna tidak akan melihat dialog Confirm Access."
+msgstr ""
#. Description of the 'Disabled' (Check) field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/core/doctype/role/role.json
msgid "If disabled, this role will be removed from all users."
-msgstr "Jika dinonaktifkan, peran ini akan dihapus dari semua pengguna."
+msgstr ""
#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth
#. Enabled' (Check) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings"
-msgstr "Jika diaktifkan, pengguna dapat masuk dari Alamat IP apa pun menggunakan Two Factor Auth, ini juga dapat diatur untuk semua pengguna di Pengaturan Sistem"
+msgstr ""
+
+#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "If enabled, all responses on the web form will be submitted anonymously"
+msgstr ""
#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
#. Enabled' (Check) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "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"
-msgstr "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"
+msgstr ""
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr "Jika diaktifkan, perubahan pada dokumen dilacak dan ditampilkan dalam timeline"
+msgstr ""
#. Description of the 'Track Views' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, document views are tracked, this can happen multiple times"
-msgstr "Jika diaktifkan, tampilan dokumen dilacak, ini dapat terjadi beberapa kali"
+msgstr ""
#. Description of the 'Track Seen' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, the document is marked as seen, the first time a user opens it"
-msgstr "Jika diaktifkan, dokumen ditandai sebagai terlihat, pertama kali pengguna membukanya"
+msgstr ""
#. Description of the 'Send System Notification' (Check) field in DocType
#. 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar."
-msgstr "Jika diaktifkan, notifikasi akan muncul di drop-down notifikasi di sudut kanan atas bilah navigasi."
+msgstr ""
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "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."
-msgstr "Jika diaktifkan, kekuatan kata sandi akan diberlakukan berdasarkan nilai Skor Minimum Kata Sandi. Nilai 2 menjadi medium kuat dan 4 sangat kuat."
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong."
+msgstr ""
#. Description of the 'Bypass Two Factor Auth for users who login from
#. restricted IP Address' (Check) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth"
-msgstr "Jika diaktifkan, pengguna yang masuk dari Alamat IP Terbatas, tidak akan diminta untuk Autentikasi Dua Faktor"
+msgstr ""
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr "Jika diaktifkan, pengguna akan diberitahu setiap kali mereka login. Jika tidak diaktifkan, pengguna hanya akan diberitahu satu kali."
+msgstr ""
+
+#. Description of the 'Default Workspace' (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "If left empty, the default workspace will be the last visited workspace"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non standard port (e.g. 587)"
-msgstr "Jika port non standar (misalnya 587)"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr "Jika port non standar (misalnya 587). Jika di Google Cloud, coba port 2525."
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Jika port non-standar (mis. POP3: 995/110, IMAP: 993/143)"
-
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Jika port non-standar (mis. POP3: 995/110, IMAP: 993/143)"
+msgstr ""
#. Description of the 'Currency Precision' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr "Jika tidak diset, presisi mata uang akan tergantung pada format angka"
+msgstr ""
#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
-#. Description of the 'Condition' (Code) field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n"
-msgstr ""
-
#. Description of the 'User Type' (Link) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
-msgstr "Jika pengguna memiliki peran apapun diperiksa, maka pengguna menjadi "Sistem Pengguna". "Sistem Pengguna" memiliki akses ke desktop"
-
-#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom
-#. Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "If unchecked, the value will always be re-fetched on save."
msgstr ""
-#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
-#. 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "If unchecked, the value will always be re-fetched on save."
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
#. 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom
+#. Field'
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "If unchecked, the value will always be re-fetched on save."
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the if_owner (Check) field in DocType 'Custom DocPerm'
+#. Label of the if_owner (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "If user is the owner"
-msgstr "Jika pengguna adalah pemilik"
+msgstr ""
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "If user is the owner"
-msgstr "Jika pengguna adalah pemilik"
-
-#: core/doctype/data_export/exporter.py:206
+#: frappe/core/doctype/data_export/exporter.py:204
msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
msgstr "Jika Anda memperbarui, silahkan pilih \"Overwrite\" baris lain yang ada tidak akan dihapus."
-#: core/doctype/data_export/exporter.py:190
+#: frappe/core/doctype/data_export/exporter.py:188
msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present."
msgstr "Jika Anda mengunggah data baru, \"Seri Penamaan\" menjadi wajib, jika ada."
-#: core/doctype/data_export/exporter.py:187
+#: frappe/core/doctype/data_export/exporter.py:186
msgid "If you are uploading new records, leave the \"name\" (ID) column blank."
msgstr "Jika Anda mengunggah catatan baru, biarkan kolom \"nama\" (ID) kosong."
-#: utils/password.py:200
-msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key."
-msgstr ""
-
-#: core/doctype/doctype/doctype.js:80
-msgid "If you just want to customize for your site, use {0} instead."
+#: frappe/utils/password.py:214
+msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key."
msgstr ""
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr "Jika Anda mengatur ini, item ini akan datang dalam drop-down di bawah induk yang dipilih."
+msgstr ""
-#: templates/emails/administrator_logged_in.html:3
+#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
msgstr "Jika Anda pikir ini adalah tidak sah, silakan mengubah password Administrator."
+#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included."
+msgstr ""
+
#. Description of the 'Source Text' (Code) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr "Jika data Anda di HTML, silahkan copy paste kode HTML yang tepat dengan tag."
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore User Permissions"
-msgstr "Abaikan Izin Pengguna"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Ignore User Permissions"
-msgstr "Abaikan Izin Pengguna"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Ignore User Permissions"
-msgstr "Abaikan Izin Pengguna"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore XSS Filter"
-msgstr "Abaikan XSS Filter"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Ignore XSS Filter"
-msgstr "Abaikan XSS Filter"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Ignore XSS Filter"
-msgstr "Abaikan XSS Filter"
+msgstr ""
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Ignore attachments over this size"
-msgstr "Abaikan lampiran atas ukuran ini"
-
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr "Abaikan lampiran atas ukuran ini"
+msgstr ""
-#. Label of a Table field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr "Aplikasi yang Diabaikan"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:349
-msgid "Illegal Access Token. Please try again"
-msgstr "Ilegal Access Token. Silakan coba lagi"
-
-#: model/workflow.py:143
+#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "Status Dokumen Ilegal untuk {0}"
-#: model/db_query.py:451 model/db_query.py:454 model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "Query SQL Ilegal"
-#: utils/jinja.py:95
+#: frappe/utils/jinja.py:127
msgid "Illegal template"
msgstr ""
-#. Label of a Attach Image field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Image"
-msgstr "Gambar"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Image"
-msgstr "Gambar"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Image"
-msgstr "Gambar"
-
+#. Label of the image (Attach Image) field in DocType 'Contact'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Image"
-msgstr "Gambar"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Image"
-msgstr "Gambar"
-
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
-#. Label of a Attach Image field in DocType 'Letter Head'
+#. Label of the image (Attach Image) field in DocType 'Letter Head'
+#. Label of the footer_image (Attach Image) field in DocType 'Letter Head'
#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the meta_image (Attach Image) field in DocType 'Web Page'
+#. Label of the image (Attach) field in DocType 'Website Slideshow Item'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr "Gambar"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Image"
-msgstr "Gambar"
-
-#. Label of a Attach field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Image"
-msgstr "Gambar"
-
-#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Image"
-msgstr "Gambar"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the image_field (Data) field in DocType 'DocType'
+#. Label of the image_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Image Field"
-msgstr "Bidang gambar"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Image Field"
-msgstr "Bidang gambar"
-
-#. Label of a Float field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the image_height (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_height (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Height"
msgstr ""
-#. Label of a Attach field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
+#. Label of the image_link (Attach) field in DocType 'About Us Team Member'
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "Image Link"
-msgstr "Image Link"
+msgstr ""
-#. Label of a Float field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/public/js/frappe/list/base_list.js:208
+msgid "Image View"
+msgstr ""
+
+#. Label of the image_width (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_width (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Width"
msgstr ""
-#: core/doctype/doctype/doctype.py:1457
+#: frappe/core/doctype/doctype/doctype.py:1506
msgid "Image field must be a valid fieldname"
msgstr "bidang gambar harus fieldname valid"
-#: core/doctype/doctype/doctype.py:1459
+#: frappe/core/doctype/doctype/doctype.py:1508
msgid "Image field must be of type Attach Image"
msgstr "bidang gambar harus dari jenis Lampirkan gambar"
-#: core/doctype/file/utils.py:134
+#: frappe/core/doctype/file/utils.py:136
msgid "Image link '{0}' is not valid"
msgstr ""
-#: core/doctype/file/file.js:91
+#: frappe/core/doctype/file/file.js:108
msgid "Image optimized"
msgstr ""
-#: public/js/frappe/views/image/image_view.js:13
+#: frappe/core/doctype/file/utils.py:289
+msgid "Image: Corrupted Data Stream"
+msgstr ""
+
+#: frappe/public/js/frappe/views/image/image_view.js:13
msgid "Images"
msgstr "Gambar"
-#: core/doctype/log_settings/log_settings.py:56
+#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.js:378
+msgid "Impersonate"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:405
+msgid "Impersonate as {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259
+msgid "Impersonated by {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:21
+msgid "Impersonating {0}"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:56
msgid "Implement `clear_old_logs` method to enable auto error clearing."
msgstr ""
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr "Implisit"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:21
-#: email/doctype/email_group/email_group.js:31
+#. Label of the import (Check) field in DocType 'Custom DocPerm'
+#. Label of the import (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Impor"
-#: public/js/frappe/list/list_view.js:1628
+#: frappe/public/js/frappe/list/list_view.js:1764
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Impor"
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Import"
-msgstr "Impor"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Import"
-msgstr "Impor"
-
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Data Import"
+#: frappe/automation/workspace/tools/tools.json
msgid "Import Data"
-msgstr "Impor Data"
+msgstr ""
-#: email/doctype/email_group/email_group.js:14
+#: frappe/email/doctype/email_group/email_group.js:14
msgid "Import Email From"
msgstr "Impor Email Dari"
-#. Label of a Attach field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_file (Attach) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr "Impor File"
+msgstr ""
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_warnings_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import File Errors and Warnings"
-msgstr "Kesalahan dan Peringatan Impor File"
+msgstr ""
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_log_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log"
-msgstr "Impor Log"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_log_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log Preview"
-msgstr "Impor Pratinjau Log"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr "Pratinjau Impor"
+msgstr ""
-#: core/doctype/data_import/data_import.js:41
+#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
msgstr "Kemajuan Impor"
-#: email/doctype/email_group/email_group.js:8
-#: email/doctype/email_group/email_group.js:30
+#: frappe/email/doctype/email_group/email_group.js:8
+#: frappe/email/doctype/email_group/email_group.js:30
msgid "Import Subscribers"
msgstr "Impor Pengikut"
-#. Label of a Select field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_type (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Type"
-msgstr "Jenis Impor"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_warnings (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr "Peringatan Impor"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:117
+#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
msgstr "Impor Zip"
-#. Label of a Data field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import from Google Sheets"
-msgstr "Impor dari Google Sheets"
+msgstr ""
-#: core/doctype/data_import/importer.py:598
+#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
msgstr "Templat impor harus bertipe .csv, .xlsx atau .xls"
-#: core/doctype/data_import/importer.py:467
+#: frappe/core/doctype/data_import/importer.py:482
msgid "Import template should contain a Header and atleast one row."
msgstr "Impor template harus berisi Header dan minimal satu baris."
-#: core/doctype/data_import/data_import.js:170
+#: frappe/core/doctype/data_import/data_import.js:165
msgid "Import timed out, please re-try."
msgstr ""
-#: core/doctype/data_import/data_import.py:61
+#: frappe/core/doctype/data_import/data_import.py:68
msgid "Importing {0} is not allowed."
msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:19
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:19
msgid "Importing {0} of {1}"
msgstr "Mengimpor {0} dari {1}"
-#: core/doctype/data_import/data_import.js:35
+#: frappe/core/doctype/data_import/data_import.js:35
msgid "Importing {0} of {1}, {2}"
msgstr "Mengimpor {0} dari {1}, {2}"
-#: public/js/frappe/ui/filters/filter.js:20
+#: frappe/public/js/frappe/ui/filters/filter.js:20
msgid "In"
msgstr "... Dalam"
#. Description of the 'Force User to Reset Password' (Int) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "In Days"
-msgstr "Dalam berhari-hari"
-
-#. Description of the Onboarding Step 'Setup Limited Access for a User'
-#: custom/onboarding_step/role_permissions/role_permissions.json
-msgid "In ERPNext, you can add your Employees as Users, and give them restricted access. Tools like Role Permission and User Permission allow you to define rules which give restricted access to the user to masters and transactions."
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the in_filter (Check) field in DocType 'DocField'
+#. Label of the in_filter (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Filter"
-msgstr "Dalam Filter"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Filter"
-msgstr "Dalam Filter"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_global_search (Check) field in DocType 'DocField'
+#. Label of the in_global_search (Check) field in DocType 'Custom Field'
+#. Label of the in_global_search (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr "Di Global Search"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Global Search"
-msgstr "Di Global Search"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Global Search"
-msgstr "Di Global Search"
-
-#: core/doctype/doctype/doctype.js:95
+#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
msgstr "Di Grid View"
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the in_standard_filter (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "In List Filter"
msgstr ""
-#: core/doctype/doctype/doctype.js:96
+#. Label of the in_list_view (Check) field in DocType 'DocField'
+#. Label of the in_list_view (Check) field in DocType 'Custom Field'
+#. Label of the in_list_view (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.js:89
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In List View"
msgstr "Dalam Daftar View"
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "In List View"
-msgstr "Dalam Daftar View"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19
+msgid "In Minutes"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In List View"
-msgstr "Dalam Daftar View"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In List View"
-msgstr "Dalam Daftar View"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_preview (Check) field in DocType 'DocField'
+#. Label of the in_preview (Check) field in DocType 'Custom Field'
+#. Label of the in_preview (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr "Dalam Pratinjau"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Preview"
-msgstr "Dalam Pratinjau"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Preview"
-msgstr "Dalam Pratinjau"
-
-#: core/doctype/data_import/data_import.js:42
+#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
msgstr "Sedang berlangsung"
-#: database/database.py:233
+#: frappe/database/database.py:287
msgid "In Read Only Mode"
msgstr ""
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the in_reply_to (Link) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr "In Reply Untuk"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_standard_filter (Check) field in DocType 'Custom Field'
+#. Label of the in_standard_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr "Di Standard Filter"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Standard Filter"
-msgstr "Di Standard Filter"
-
-#. Description of the Onboarding Step 'Generate Custom Reports'
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n"
msgstr ""
#. Description of the 'Font Size' (Float) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "In points. Default is 9."
-msgstr "Dalam poin. Default-nya adalah 9."
+msgstr ""
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr "Dalam hitungan detik"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:107
+#: frappe/core/doctype/recorder/recorder_list.js:209
msgid "Inactive"
msgstr "Tidak aktif"
-#: public/js/frappe/ui/field_group.js:131
-msgid "Inavlid Values"
-msgstr ""
-
-#: email/doctype/email_account/email_account_list.js:19
-msgid "Inbox"
-msgstr "Kotak masuk"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/email/doctype/email_account/email_account_list.js:19
msgid "Inbox"
msgstr "Kotak masuk"
#. Name of a role
-#: core/doctype/communication/communication.json
-#: email/doctype/email_account/email_account.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
msgid "Inbox User"
msgstr "Pengguna Inbox"
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/public/js/frappe/list/base_list.js:209
+msgid "Inbox View"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:110
+msgid "Include Disabled"
+msgstr ""
+
+#. Label of the include_name_field (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Include Name Field"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_search (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Include Search in Top Bar"
-msgstr "Sertakan Cari di Top Bar"
+msgstr ""
-#: website/doctype/website_theme/website_theme.js:61
+#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
msgstr "Sertakan Tema dari Aplikasi"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the attach_view_link (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Include Web View Link in Email"
-msgstr "Kirim dokumen Web View link di email"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1488
+#: frappe/public/js/frappe/views/reports/query_report.js:1619
msgid "Include filters"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1480
+#: frappe/public/js/frappe/views/reports/query_report.js:1639
+msgid "Include hidden columns"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
msgstr "Termasuk lekukan"
-#: public/js/frappe/form/controls/password.js:107
+#: frappe/public/js/frappe/form/controls/password.js:106
msgid "Include symbols, numbers and capital letters in the password"
msgstr "Sertakan simbol, angka dan huruf kapital di password"
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Incoming"
+msgstr ""
+
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Incoming (POP/IMAP) Settings"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the incoming_emails_last_7_days_column (Column Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Incoming Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the email_server (Data) field in DocType 'Email Account'
+#. Label of the email_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Server"
msgstr ""
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Incoming Server"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Settings"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:32
+#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Incoming email account not correct"
msgstr "Akun email masuk tidak benar"
-#: model/virtual_doctype.py:81 model/virtual_doctype.py:94
+#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: auth.py:236
+#: frappe/auth.py:255
msgid "Incomplete login details"
msgstr "Rincian login tidak lengkap"
-#: email/smtp.py:103
+#: frappe/email/smtp.py:104
msgid "Incorrect Configuration"
msgstr "Konfigurasi Salah"
-#: utils/csvutils.py:207
+#: frappe/utils/csvutils.py:234
msgid "Incorrect URL"
msgstr "URL salah"
-#: utils/password.py:90
+#: frappe/utils/password.py:101
msgid "Incorrect User or Password"
msgstr "Pengguna atau Kata Sandi salah"
-#: twofactor.py:177 twofactor.py:189
+#: frappe/twofactor.py:176 frappe/twofactor.py:188
msgid "Incorrect Verification code"
msgstr "Kode Verifikasi salah"
-#: model/document.py:1352
-msgid "Incorrect value in row {0}: {1} must be {2} {3}"
-msgstr "Nilai yang salah dalam baris {0}: {1} harus {2} {3}"
+#: frappe/model/document.py:1551
+msgid "Incorrect value in row {0}:"
+msgstr ""
-#: model/document.py:1356
-msgid "Incorrect value: {0} must be {1} {2}"
-msgstr "Nilai yang tidak benar: {0} harus {1} {2}"
+#: frappe/model/document.py:1553
+msgid "Incorrect value:"
+msgstr ""
-#: model/__init__.py:139 model/meta.py:48 public/js/frappe/model/meta.js:200
-#: public/js/frappe/model/model.js:114
-#: public/js/frappe/views/reports/report_view.js:941
+#. Label of the search_index (Check) field in DocType 'DocField'
+#. Label of the index (Int) field in DocType 'Recorder Query'
+#. Label of the search_index (Check) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55
+#: frappe/public/js/frappe/model/meta.js:203
+#: frappe/public/js/frappe/model/model.js:124
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "Indeks"
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Index"
-msgstr "Indeks"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Index"
-msgstr "Indeks"
-
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Index"
-msgstr "Indeks"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Index Web Pages for Search"
-msgstr "Indeks Halaman Web untuk Pencarian"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/core/doctype/recorder/recorder.py:132
+msgid "Index created successfully on column {0} of doctype {1}"
+msgstr ""
+
+#. Label of the indexing_authorization_code (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing authorization code"
msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the indexing_refresh_token (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing refresh token"
msgstr ""
-#. Label of a Select field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#. Label of the indicator (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Indicator"
-msgstr "Indikator"
+msgstr ""
-#. Label of a Select field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the indicator_color (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:639
-#: public/js/frappe/views/workspace/workspace.js:967
-#: public/js/frappe/views/workspace/workspace.js:1211
+#: frappe/public/js/frappe/views/workspace/workspace.js:463
msgid "Indicator color"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Info"
-msgstr "Info"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Info"
-msgstr "Info"
-
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr "Info"
+msgstr ""
-#: core/doctype/data_export/exporter.py:144
+#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
-msgstr "Info:"
+msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the initial_sync_count (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Initial Sync Count"
-msgstr "Awal Hitungan Sync"
+msgstr ""
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "InnoDB"
-msgstr "InnoDB"
+msgstr ""
-#: core/doctype/data_import/data_import_list.js:39
+#. Description of the 'New Role' (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Input existing role name if you would like to extend it with access of another role."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import_list.js:35
msgid "Insert"
-msgstr "Insert"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1712
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Above"
+msgstr ""
+
+#. Label of the insert_after (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1874
msgid "Insert After"
msgstr "Masukkan Setelah"
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Insert After"
-msgstr "Masukkan Setelah"
-
-#: custom/doctype/custom_field/custom_field.py:249
+#: frappe/custom/doctype/custom_field/custom_field.py:251
msgid "Insert After cannot be set as {0}"
msgstr "Masukkan Setelah tidak dapat ditetapkan sebagai {0}"
-#: custom/doctype/custom_field/custom_field.py:242
+#: frappe/custom/doctype/custom_field/custom_field.py:244
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Masukkan Setelah bidang '{0}' disebutkan dalam Custom Field '{1}', dengan label '{2}', tidak ada"
-#: public/js/frappe/views/reports/report_view.js:364
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Below"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "Masukkan Kolom Sebelum {0}"
-#: public/js/frappe/form/controls/markdown_editor.js:81
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:82
msgid "Insert Image in Markdown"
msgstr ""
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr "Masukkan catatan baru"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the insert_style (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr "Masukkan Style"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:646
-#: public/js/frappe/ui/toolbar/search_utils.js:647
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666
msgid "Install {0} from Marketplace"
msgstr ""
#. Name of a DocType
-#: core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Installed Application"
msgstr "Aplikasi Terinstal"
#. Name of a DocType
-#: core/doctype/installed_applications/installed_applications.json
+#. Label of the installed_applications (Table) field in DocType 'Installed
+#. Applications'
+#: frappe/core/doctype/installed_applications/installed_applications.json
msgid "Installed Applications"
msgstr "Aplikasi Terinstal"
-#. Label of a Table field in DocType 'Installed Applications'
-#: core/doctype/installed_applications/installed_applications.json
-msgctxt "Installed Applications"
-msgid "Installed Applications"
-msgstr "Aplikasi Terinstal"
-
-#: core/doctype/installed_applications/installed_applications.js:18
+#: frappe/core/doctype/installed_applications/installed_applications.js:18
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Installed Apps"
msgstr ""
-#: permissions.py:826
+#. Label of the instructions (HTML) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Instructions"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:261
+msgid "Instructions Emailed"
+msgstr ""
+
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: database/query.py:371 desk/form/load.py:40 model/document.py:234
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Izin tidak cukup untuk {0}"
-#: desk/reportview.py:322
+#: frappe/desk/reportview.py:360
msgid "Insufficient Permissions for deleting Report"
msgstr ""
-#: desk/reportview.py:293
+#: frappe/desk/reportview.py:331
msgid "Insufficient Permissions for editing Report"
msgstr ""
-#: core/doctype/doctype/doctype.py:447
+#: frappe/core/doctype/doctype/doctype.py:445
msgid "Insufficient attachment limit"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Int"
-msgstr "Int"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Int"
-msgstr "Int"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Int"
-msgstr "Int"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Integration Request"
msgstr "integrasi Permintaan"
-#. Name of a Workspace
-#: integrations/workspace/integrations/integrations.json
-msgid "Integrations"
-msgstr "Integrasi"
-
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Integrations"
-msgstr "Integrasi"
-
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Name of a Workspace
+#. Label of the integrations (Tab Break) field in DocType 'Website Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/workspace/integrations/integrations.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Integrations"
msgstr "Integrasi"
#. Description of the 'Delivery Status' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Integrations can use this field to set email delivery status"
-msgstr "Integrasi dapat menggunakan kolom ini untuk menetapkan status pengiriman surel"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Inter"
msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the interest (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Interests"
-msgstr "minat"
+msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Intermediate"
-msgstr "Menengah"
+msgstr ""
-#: public/js/frappe/request.js:232
+#: frappe/public/js/frappe/request.js:235
msgid "Internal Server Error"
msgstr "Kesalahan server dari dalam"
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Description of a DocType
+#: frappe/core/doctype/docshare/docshare.json
+msgid "Internal record of document shares"
+msgstr ""
+
+#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
msgstr ""
#. Description of the 'Company Introduction' (Text Editor) field in DocType
#. 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr "Memperkenalkan perusahaan Anda kepada pengunjung situs."
+msgstr ""
-#. Label of a Section Break field in DocType 'Contact Us Settings'
-#. Label of a Text Editor field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the introduction_section (Section Break) field in DocType 'Contact
+#. Us Settings'
+#. Label of the introduction (Text Editor) field in DocType 'Contact Us
+#. Settings'
+#. Label of the introduction_text (Text Editor) field in DocType 'Web Form'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Introduction"
-msgstr "Pendahuluan"
-
-#. Label of a Text Editor field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Introduction"
-msgstr "Pendahuluan"
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/introduction_to_website/introduction_to_website.json
-msgid "Introduction to Website"
msgstr ""
#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us
#. Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Introductory information for the Contact Us Page"
-msgstr "Informasi pengantar untuk Hubungi Kami Halaman"
+msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the introspection_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Introspection URI"
msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Invalid"
-msgstr "cacat"
+msgstr ""
-#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:748
-#: public/js/frappe/form/layout.js:774
+#: frappe/public/js/form_builder/utils.js:221
+#: frappe/public/js/frappe/form/grid_row.js:833
+#: frappe/public/js/frappe/form/layout.js:811
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "Ekspresi "depend_on" tidak valid"
-#: public/js/frappe/views/reports/query_report.js:510
+#: frappe/public/js/frappe/views/reports/query_report.js:514
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ekspresi "depend_on" tidak valid yang disetel dalam filter {0}"
-#: public/js/frappe/form/save.js:206
+#: frappe/public/js/frappe/form/save.js:159
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
-#: utils/nestedset.py:181
+#: frappe/utils/nestedset.py:178
msgid "Invalid Action"
msgstr ""
-#: utils/csvutils.py:35
+#: frappe/utils/csvutils.py:37
msgid "Invalid CSV Format"
msgstr "CSV Format valid"
-#: integrations/doctype/webhook/webhook.py:87
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
+msgid "Invalid Code. Please try again."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:87
msgid "Invalid Condition: {}"
msgstr ""
-#: email/smtp.py:132
+#: frappe/email/smtp.py:135
msgid "Invalid Credentials"
msgstr "Kredensial tidak valid"
-#: utils/data.py:124 utils/data.py:285
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Tanggal tidak berlaku"
-#: www/list.py:85
+#: frappe/www/list.py:85
msgid "Invalid DocType"
msgstr ""
-#: database/query.py:95
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1223
+#: frappe/core/doctype/doctype/doctype.py:1272
msgid "Invalid Fieldname"
msgstr ""
-#: core/doctype/file/file.py:206
+#: frappe/core/doctype/file/file.py:209
msgid "Invalid File URL"
msgstr ""
-#: public/js/form_builder/store.js:216
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
-#: utils/dashboard.py:61
+#: frappe/utils/dashboard.py:61
msgid "Invalid Filter Value"
msgstr "Nilai Filter Tidak Valid"
-#: website/doctype/website_settings/website_settings.py:83
+#: frappe/website/doctype/website_settings/website_settings.py:83
msgid "Invalid Home Page"
msgstr "Valid Halaman"
-#: utils/verified_command.py:48 www/update-password.html:151
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178
msgid "Invalid Link"
msgstr "Tautan tidak valid"
-#: www/login.py:112
+#: frappe/www/login.py:128
msgid "Invalid Login Token"
msgstr "Valid Login Token"
-#: email/receive.py:105 email/receive.py:142
+#: frappe/templates/includes/login/login.js:290
+msgid "Invalid Login. Try again."
+msgstr ""
+
+#: frappe/email/receive.py:112 frappe/email/receive.py:149
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Mail Server tidak valid. Harap memperbaiki dan coba lagi."
-#: model/naming.py:91
+#: frappe/model/naming.py:101
msgid "Invalid Naming Series: {}"
msgstr ""
-#: core/doctype/rq_job/rq_job.py:122
+#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr ""
-#: core/doctype/doctype/doctype.py:1582 core/doctype/doctype/doctype.py:1591
+#: frappe/core/doctype/doctype/doctype.py:1641
+#: frappe/core/doctype/doctype/doctype.py:1650
msgid "Invalid Option"
msgstr "Opsi Tidak Valid"
-#: email/smtp.py:102
+#: frappe/email/smtp.py:103
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:182
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:200
msgid "Invalid Output Format"
msgstr "Output Format valid"
-#: integrations/doctype/connected_app/connected_app.py:166
+#: frappe/model/base_document.py:116
+msgid "Invalid Override"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.py:195
msgid "Invalid Parameters."
msgstr ""
-#: core/doctype/user/user.py:1195 www/update-password.html:121
-#: www/update-password.html:142 www/update-password.html:144
-#: www/update-password.html:246
+#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148
+#: frappe/www/update-password.html:169 frappe/www/update-password.html:171
+#: frappe/www/update-password.html:272
msgid "Invalid Password"
msgstr "kata sandi salah"
-#: utils/__init__.py:109
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
-#: auth.py:93 utils/oauth.py:184 utils/oauth.py:191 www/login.py:112
+#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Permintaan tidak valid"
-#: desk/search.py:26
+#: frappe/desk/search.py:26
msgid "Invalid Search Field {0}"
msgstr "Bidang Penelusuran Tidak Valid {0}"
-#: core/doctype/doctype/doctype.py:1165
+#: frappe/core/doctype/doctype/doctype.py:1214
msgid "Invalid Table Fieldname"
msgstr ""
-#: public/js/workflow_builder/store.js:182
+#: frappe/public/js/workflow_builder/store.js:192
msgid "Invalid Transition"
msgstr ""
-#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:565
-#: utils/csvutils.py:199 utils/csvutils.py:220
+#: frappe/core/doctype/file/file.py:220
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
+#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "URL tidak valid"
-#: email/receive.py:150
+#: frappe/email/receive.py:157
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Valid Nama Pengguna atau Dukungan Password. Harap memperbaiki dan coba lagi."
-#: integrations/doctype/webhook/webhook.py:116
+#: frappe/public/js/frappe/ui/field_group.js:137
+msgid "Invalid Values"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:116
msgid "Invalid Webhook Secret"
msgstr ""
-#: desk/reportview.py:150
+#: frappe/desk/reportview.py:186
msgid "Invalid aggregate function"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:373
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Kolom tidak valid"
-#: model/document.py:841 model/document.py:855
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
+#: frappe/model/document.py:1016 frappe/model/document.py:1030
msgid "Invalid docstatus"
msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:229
+#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Persamaan tidak valid disetel dalam filter {0}"
-#: public/js/frappe/utils/dashboard_utils.js:219
+#: frappe/public/js/frappe/utils/dashboard_utils.js:219
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Persamaan tidak valid ditetapkan dalam filter {0} ({1})"
-#: utils/data.py:2128
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2197
msgid "Invalid field name {0}"
msgstr "Nama bidang tidak valid {0}"
-#: core/doctype/doctype/doctype.py:1048
+#: frappe/model/db_query.py:1133
+msgid "Invalid field name: {0}"
+msgstr ""
+
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "fieldname tidak valid '{0}' di autoname"
-#: client.py:344
+#: frappe/deprecation_dumpster.py:283
msgid "Invalid file path: {0}"
msgstr "Path file tidak valid: {0}"
-#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:199
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Filter tidak valid: {0}"
-#: model/utils/__init__.py:69
-msgid "Invalid include path"
-msgstr "Jalur sertakan tidak valid"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
-#: desk/doctype/dashboard/dashboard.py:68
-#: desk/doctype/dashboard_chart/dashboard_chart.py:424
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard/dashboard.py:67
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
msgstr "Json yang tidak valid ditambahkan dalam opsi ubahsuaian: {0}"
-#: model/naming.py:445
+#: frappe/model/naming.py:490
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: model/naming.py:52
+#: frappe/model/naming.py:62
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: core/doctype/data_import/importer.py:438
+#: frappe/core/doctype/data_import/importer.py:453
msgid "Invalid or corrupted content for import"
msgstr "Konten tidak valid atau rusak untuk diimpor"
-#: website/doctype/website_settings/website_settings.py:139
+#: frappe/website/doctype/website_settings/website_settings.py:139
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: app.py:301
+#: frappe/app.py:337
msgid "Invalid request arguments"
msgstr ""
-#: integrations/doctype/connected_app/connected_app.py:172
-msgid "Invalid state."
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
msgstr ""
-#: core/doctype/data_import/importer.py:415
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "File template tidak valid untuk impor"
-#: integrations/doctype/ldap_settings/ldap_settings.py:162
-#: integrations/doctype/ldap_settings/ldap_settings.py:335
+#: frappe/integrations/doctype/connected_app/connected_app.py:201
+msgid "Invalid token state! Check if the token has been created by the OAuth user."
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
msgid "Invalid username or password"
msgstr "username dan password salah"
-#: public/js/frappe/web_form/web_form.js:229
+#: frappe/model/naming.py:168
+msgid "Invalid value specified for UUID: {}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:229
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: core/doctype/doctype/doctype.py:1515
+#: frappe/printing/page/print/print.js:614
+msgid "Invalid wkhtmltopdf version"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1564
msgid "Invalid {0} condition"
msgstr "Kondisi {0} tidak valid"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Inverse"
-msgstr "Terbalik"
+msgstr ""
-#: contacts/doctype/contact/contact.js:25
+#: frappe/contacts/doctype/contact/contact.js:30
msgid "Invite as User"
msgstr "Undang sebagai Pengguna"
-#: public/js/frappe/ui/filters/filter.js:22
+#: frappe/public/js/frappe/ui/filters/filter.js:22
msgid "Is"
msgstr "Aku S"
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the is_active (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Is Active"
msgstr "Aktif"
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_attachments_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr "Apakah Lampiran Folder"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType'
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Calendar and Gantt"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Calendar and Gantt"
+#. Label of the istable (Check) field in DocType 'DocType'
+#. Label of the is_child_table (Check) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Is Child Table"
+msgstr "Apakah Anak Table"
+
+#. Label of the is_complete (Check) field in DocType 'Module Onboarding'
+#. Label of the is_complete (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Is Complete"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:34
-msgid "Is Child Table"
-msgstr "Apakah Anak Table"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Child Table"
-msgstr "Apakah Anak Table"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Is Child Table"
-msgstr "Apakah Anak Table"
-
-#. Label of a Check field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Is Complete"
-msgstr "Selesai"
-
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Is Complete"
-msgstr "Selesai"
-
-#. Label of a Check field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#. Label of the is_completed (Check) field in DocType 'Email Flag Queue'
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Is Completed"
-msgstr "Apakah selesai"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the is_custom (Check) field in DocType 'Role'
+#. Label of the is_custom (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Is Custom"
msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Is Custom"
-msgstr ""
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Custom Field"
-msgstr "Apakah Custom Field"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:69
+#. Label of the is_default (Check) field in DocType 'Address Template'
+#. Label of the is_default (Check) field in DocType 'User Permission'
+#. Label of the is_default (Check) field in DocType 'Dashboard'
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:69
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Is Default"
msgstr "Apakah default"
-#. Label of a Check field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
-msgid "Is Default"
-msgstr "Apakah default"
-
-#. Label of a Check field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
-msgid "Is Default"
-msgstr "Apakah default"
-
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Is Default"
-msgstr "Apakah default"
-
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the is_dynamic_url (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Is Dynamic URL?"
msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr "Apakah Folder"
+msgstr ""
-#: public/js/frappe/list/list_filter.js:43
+#: frappe/public/js/frappe/list/list_filter.js:43
msgid "Is Global"
msgstr "Apakah global"
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the is_hidden (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_home_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr "Apakah Home Folder"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the reqd (Check) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr "Apakah Lapangan Wajib"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the is_optional_state (Check) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Is Optional State"
-msgstr "Apakah Status Opsional"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Email'
-#: contacts/doctype/contact_email/contact_email.json
-msgctxt "Contact Email"
+#. Label of the is_primary (Check) field in DocType 'Contact Email'
+#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr "Apakah Pratama"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the is_primary_contact (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Is Primary Contact"
-msgstr "Apakah Kontak Utama"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Mobile"
-msgstr "Apakah Ponsel Primer"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Phone"
-msgstr "Apakah Telepon Utama"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_private (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr "Apakah Swasta"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the is_public (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_public (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Is Public"
-msgstr "Apakah Publik"
+msgstr ""
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Is Public"
-msgstr "Apakah Publik"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the is_published_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr "Apakah Diterbitkan Lapangan"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1466
+#: frappe/core/doctype/doctype/doctype.py:1515
msgid "Is Published Field must be a valid fieldname"
msgstr "Apakah Diterbitkan lapangan harus fieldname valid"
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the is_query_report (Check) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
-#. Label of a Check field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the is_remote_request (Check) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Is Remote Request?"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:48
+#. Label of the is_setup_complete (Check) field in DocType 'Installed
+#. Application'
+#: frappe/core/doctype/installed_application/installed_application.json
+msgid "Is Setup Complete?"
+msgstr ""
+
+#. Label of the issingle (Check) field in DocType 'DocType'
+#. Label of the is_single (Check) field in DocType 'Onboarding Step'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
msgstr "Tunggal"
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Single"
-msgstr "Tunggal"
-
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Is Single"
-msgstr "Tunggal"
-
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr "Apakah Dilewati"
+msgstr ""
-#. Label of a Check field in DocType 'Email Rule'
-#: email/doctype/email_rule/email_rule.json
-msgctxt "Email Rule"
+#. Label of the is_spam (Check) field in DocType 'Email Rule'
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr "Apakah Spam"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the is_standard (Check) field in DocType 'Navbar Item'
+#. Label of the is_standard (Select) field in DocType 'Report'
+#. Label of the is_standard (Check) field in DocType 'User Type'
+#. Label of the is_standard (Check) field in DocType 'Dashboard'
+#. Label of the is_standard (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_standard (Check) field in DocType 'Form Tour'
+#. Label of the is_standard (Check) field in DocType 'Number Card'
+#. Label of the is_standard (Check) field in DocType 'Notification'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr "Adalah Standard"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#. Label of a Check field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#. Label of a Select field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#. Label of a Check field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Is Standard"
-msgstr "Adalah Standard"
-
-#: core/doctype/doctype/doctype_list.js:25
+#. Label of the is_submittable (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:39
msgid "Is Submittable"
msgstr "Apakah Submittable"
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Submittable"
-msgstr "Apakah Submittable"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the is_system_generated (Check) field in DocType 'Custom Field'
+#. Label of the is_system_generated (Check) field in DocType 'Customize Form
+#. Field'
+#. Label of the is_system_generated (Check) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Is System Generated"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Is System Generated"
-msgstr ""
-
-#. Label of a Check field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Is System Generated"
-msgstr ""
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the istable (Check) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr "Apakah Tabel"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Is Table Field"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the is_tree (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr "Apakah Pohon"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the is_unique (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Is Unique"
-msgstr "Unik"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the is_virtual (Check) field in DocType 'DocType'
+#. Label of the is_virtual (Check) field in DocType 'Custom Field'
+#. Label of the is_virtual (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Virtual"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Is Virtual"
+#. Label of the is_standard (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Is standard"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Virtual"
-msgstr ""
-
-#: core/doctype/file/utils.py:155 utils/file_manager.py:315
+#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311
msgid "It is risky to delete this file: {0}. Please contact your System Manager."
msgstr "Hal ini berisiko untuk menghapus file ini: {0}. Silahkan hubungi System Manager Anda."
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the item_label (Data) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr "Label Item"
+msgstr ""
-#. Label of a Select field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the item_type (Select) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr "Tipe barang"
+msgstr ""
-#: utils/nestedset.py:234
+#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
msgstr "Item tidak dapat ditambahkan ke keturunan sendiri"
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "JS"
-msgstr "JS"
+msgstr ""
-#. Label of a HTML field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
+#. Label of the js_message (HTML) field in DocType 'Custom HTML Block'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "JS Message"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "JSON"
-msgstr "JSON"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "JSON"
-msgstr "JSON"
-
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "JSON"
-msgstr "JSON"
-
+#. Label of the json (Code) field in DocType 'Report'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON"
-msgstr "JSON"
+msgstr ""
-#. Label of a Code field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_json (Code) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON Request Body"
-msgstr "Badan Permintaan JSON"
+msgstr ""
-#: templates/signup.html:5
+#: frappe/templates/signup.html:5
msgid "Jane Doe"
msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the js (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "JavaScript"
-msgstr "JavaScript"
+msgstr ""
#. Description of the 'Javascript' (Code) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
-msgstr "JavaScript Format: frappe.query_reports ['REPORTNAME'] = {}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
+#. Label of the javascript (Code) field in DocType 'Report'
+#. Label of the javascript_section (Section Break) field in DocType 'Custom
+#. HTML Block'
+#. Label of the javascript (Code) field in DocType 'Web Page'
+#. Label of the javascript (Code) field in DocType 'Website Script'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
msgid "Javascript"
-msgstr "Javascript"
+msgstr ""
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Javascript"
-msgstr "Javascript"
-
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Javascript"
-msgstr "Javascript"
-
-#. Label of a Code field in DocType 'Website Script'
-#: website/doctype/website_script/website_script.json
-msgctxt "Website Script"
-msgid "Javascript"
-msgstr "Javascript"
-
-#: www/login.html:71
+#: frappe/www/login.html:74
msgid "Javascript is disabled on your browser"
msgstr "Javascript dinonaktifkan di browser Anda"
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Jinja"
-msgstr "Jinja"
+msgstr ""
-#. Label of a Link field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the job_id (Data) field in DocType 'Prepared Report'
+#. Label of the job_id (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job ID"
msgstr ""
-#. Label of a Data field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Job ID"
-msgstr ""
-
-#. Label of a Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the job_id (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Job Id"
msgstr ""
-#. Label of a Section Break field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_info_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Info"
msgstr ""
-#. Label of a Data field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_name (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Name"
msgstr ""
-#. Label of a Section Break field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_status_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Status"
msgstr ""
-#: core/doctype/rq_job/rq_job.js:24
+#: frappe/core/doctype/rq_job/rq_job.js:24
msgid "Job Stopped Successfully"
msgstr ""
-#: core/doctype/rq_job/rq_job.py:122
+#: frappe/core/doctype/rq_job/rq_job.py:121
+msgid "Job is in {0} state and can't be cancelled"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Job is not running."
msgstr ""
-#: desk/doctype/event/event.js:51
+#: frappe/desk/doctype/event/event.js:55
msgid "Join video conference with {0}"
msgstr ""
-#: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757
+#: frappe/public/js/frappe/form/toolbar.js:398
+#: frappe/public/js/frappe/form/toolbar.js:833
msgid "Jump to field"
msgstr "Lompat ke bidang"
-#: public/js/frappe/utils/number_systems.js:17
-#: public/js/frappe/utils/number_systems.js:31
-#: public/js/frappe/utils/number_systems.js:53
+#: frappe/public/js/frappe/utils/number_systems.js:17
+#: frappe/public/js/frappe/utils/number_systems.js:31
+#: frappe/public/js/frappe/utils/number_systems.js:53
msgctxt "Number system"
msgid "K"
msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Kanban"
-msgstr "kanban"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Kanban"
-msgstr "kanban"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/kanban_board/kanban_board.json
-msgid "Kanban Board"
-msgstr "Papan kanban"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Kanban Board"
-msgstr "Papan kanban"
-
-#. Label of a Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Papan kanban"
#. Name of a DocType
-#: desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Kanban Board Column"
msgstr "Kolom papan Kanban"
-#: public/js/frappe/views/kanban/kanban_view.js:385
+#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Nama papan kanban"
-#. Label of a Data field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Kanban Board Name"
-msgstr "Nama papan kanban"
-
-#: public/js/frappe/views/kanban/kanban_view.js:262
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
-#. Label of a Data field in DocType 'DefaultValue'
-#: core/doctype/defaultvalue/defaultvalue.json
-msgctxt "DefaultValue"
-msgid "Key"
-msgstr "Kunci"
+#: frappe/public/js/frappe/list/base_list.js:206
+msgid "Kanban View"
+msgstr ""
-#. Label of a Data field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
-msgid "Key"
-msgstr "Kunci"
+#. Description of a DocType
+#: frappe/core/doctype/activity_log/activity_log.json
+msgid "Keep track of all update feeds"
+msgstr ""
-#. Label of a Data field in DocType 'Query Parameters'
-#: integrations/doctype/query_parameters/query_parameters.json
-msgctxt "Query Parameters"
-msgid "Key"
-msgstr "Kunci"
+#. Description of a DocType
+#: frappe/core/doctype/communication/communication.json
+msgid "Keeps track of all communications"
+msgstr ""
-#. Label of a Data field in DocType 'Webhook Data'
-#: integrations/doctype/webhook_data/webhook_data.json
-msgctxt "Webhook Data"
+#. Label of the defkey (Data) field in DocType 'DefaultValue'
+#. Label of the key (Data) field in DocType 'Document Share Key'
+#. Label of the key (Data) field in DocType 'Query Parameters'
+#. Label of the key (Data) field in DocType 'Webhook Data'
+#. Label of the key (Small Text) field in DocType 'Webhook Header'
+#. Label of the key (Data) field in DocType 'Website Meta Tag'
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr "Kunci"
-
-#. Label of a Small Text field in DocType 'Webhook Header'
-#: integrations/doctype/webhook_header/webhook_header.json
-msgctxt "Webhook Header"
-msgid "Key"
-msgstr "Kunci"
-
-#. Label of a Data field in DocType 'Website Meta Tag'
-#: website/doctype/website_meta_tag/website_meta_tag.json
-msgctxt "Website Meta Tag"
-msgid "Key"
-msgstr "Kunci"
+msgstr ""
#. Label of a standard help item
#. Type: Action
-#: hooks.py public/js/frappe/ui/keyboard.js:126
+#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130
msgid "Keyboard Shortcuts"
msgstr "Pintasan keyboard"
-#: public/js/frappe/utils/number_systems.js:37
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Keycloak"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:37
msgctxt "Number system"
msgid "Kh"
msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/doctype/help_article/help_article.py:80
-#: website/workspace/website/website.json
+#: frappe/website/doctype/help_article/help_article.py:80
+#: frappe/website/doctype/help_article/templates/help_article_list.html:2
+#: frappe/website/doctype/help_article/templates/help_article_list.html:11
+#: frappe/website/workspace/website/website.json
msgid "Knowledge Base"
msgstr "Dasar pengetahuan"
#. Name of a role
-#: website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Contributor"
msgstr "Knowledge Base Kontributor"
#. Name of a role
-#: website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Editor"
-msgstr "Knowledge Base Editor"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:27
-#: public/js/frappe/utils/number_systems.js:49
+#: frappe/public/js/frappe/utils/number_systems.js:27
+#: frappe/public/js/frappe/utils/number_systems.js:49
msgctxt "Number system"
msgid "L"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_custom_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Custom Settings"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr "Kolom Surel LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr "LDAP Nama Field Pertama"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Group Mapping'
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
-msgctxt "LDAP Group Mapping"
+#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr "Grup LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr "Bidang Grup LDAP"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group Mapping"
msgstr "Pemetaan Grup LDAP"
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#. Label of a Table field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_mappings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr "Pemetaan Grup LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Member attribute"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr "Bidang Nama Belakang LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr "Bidang Nama Tengah LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr "Bidang Seluler LDAP"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:160
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
msgstr "LDAP Tidak Terinstal"
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr "Bidang Telepon LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr "LDAP Cari String"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:127
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_and_paths_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search and Paths"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr "Keamanan LDAP"
+msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_server_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Settings"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Url"
-msgstr "LDAP Server Url"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgid "LDAP Settings"
-msgstr "Pengaturan LDAP"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "LDAP Settings"
msgstr "Pengaturan LDAP"
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in
+#. DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP User Creation and Mapping"
-msgstr "Pembuatan dan Pemetaan Pengguna LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr "LDAP pengguna Lapangan"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:308
-#: integrations/doctype/ldap_settings/ldap_settings.py:427
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426
msgid "LDAP is not enabled."
msgstr "LDAP tidak diaktifkan."
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Groups"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Users"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:99
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:474
-#: public/js/frappe/widgets/widget_dialog.js:606
-#: public/js/frappe/widgets/widget_dialog.js:639
-msgid "Label"
-msgstr "Label"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the label (Data) field in DocType 'DocField'
+#. Label of the label (Data) field in DocType 'DocType Action'
+#. Label of the label (Data) field in DocType 'Report Column'
+#. Label of the label (Data) field in DocType 'Report Filter'
+#. Label of the label (Data) field in DocType 'Custom Field'
+#. Label of the label (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'DocType Layout Field'
+#. Label of the label (Data) field in DocType 'Desktop Icon'
+#. Label of the label (Data) field in DocType 'Form Tour Step'
+#. Label of the label (Data) field in DocType 'Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Chart'
+#. Label of the label (Data) field in DocType 'Workspace Custom Block'
+#. Label of the label (Data) field in DocType 'Workspace Link'
+#. Label of the label (Data) field in DocType 'Workspace Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Quick List'
+#. Label of the label (Data) field in DocType 'Workspace Shortcut'
+#. Label of the label (Data) field in DocType 'Top Bar Item'
+#. Label of the label (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:474
+#: frappe/public/js/form_builder/components/Field.vue:208
+#: frappe/public/js/frappe/widgets/widget_dialog.js:183
+#: frappe/public/js/frappe/widgets/widget_dialog.js:251
+#: frappe/public/js/frappe/widgets/widget_dialog.js:313
+#: frappe/public/js/frappe/widgets/widget_dialog.js:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:643
+#: frappe/public/js/frappe/widgets/widget_dialog.js:676
+#: frappe/public/js/print_format_builder/Field.vue:18
+#: frappe/templates/form_grid/fields.html:37
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Label"
-msgstr "Label"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'DocType Layout Field'
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
-msgctxt "DocType Layout Field"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Workspace Chart'
-#: desk/doctype/workspace_chart/workspace_chart.json
-msgctxt "Workspace Chart"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Workspace Custom Block'
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
-msgctxt "Workspace Custom Block"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Workspace Number Card'
-#: desk/doctype/workspace_number_card/workspace_number_card.json
-msgctxt "Workspace Number Card"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Label"
-msgstr "Label"
-
-#. Label of a HTML field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the label_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr "Label Bantuan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the label_and_type (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Label and Type"
-msgstr "Label dan Jenis"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:141
+#: frappe/custom/doctype/custom_field/custom_field.py:145
msgid "Label is mandatory"
msgstr "Label adalah wajib"
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr "Halaman Arahan"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:17
msgid "Landscape"
msgstr "Pemandangan"
#. Name of a DocType
-#: core/doctype/language/language.json printing/page/print/print.js:104
+#. Label of the language (Link) field in DocType 'System Settings'
+#. Label of the language (Link) field in DocType 'Translation'
+#. Label of the language (Link) field in DocType 'User'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104
+#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Bahasa"
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Language"
-msgstr "Bahasa"
-
-#. Label of a Link field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Language"
-msgstr "Bahasa"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Language"
-msgstr "Bahasa"
-
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#. Label of the language_code (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr "Kode bahasa"
+msgstr ""
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#. Label of the language_name (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr "Nama bahasa"
+msgstr ""
-#. Label of a Datetime field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_10_active_users (Code) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Last 10 active users"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:628
+msgid "Last 14 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:632
+msgid "Last 30 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:652
+msgid "Last 6 Months"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:624
+msgid "Last 7 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:636
+msgid "Last 90 Days"
+msgstr ""
+
+#. Label of the last_active (Datetime) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Terakhir Aktif"
+msgstr ""
-#. Label of a Datetime field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Last Backup On"
-msgstr "Cadangan Terakhir Aktif"
-
-#. Label of a Datetime field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
-msgstr "Eksekusi Terakhir"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Last Heartbeat"
msgstr ""
-#. Label of a Read Only field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_ip (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr "IP Terakhir"
+msgstr ""
-#. Label of a Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_known_versions (Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr "Terakhir Versi Dikenal"
+msgstr ""
-#. Label of a Read Only field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_login (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr "Terakhir Login"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:242
-#: public/js/frappe/views/dashboard/dashboard_view.js:479
+#: frappe/email/doctype/notification/notification.js:32
+msgid "Last Modified Date"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480
msgid "Last Modified On"
msgstr "Terakhir Diubah Pada"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:644
msgid "Last Month"
-msgstr "Bulan lalu"
+msgstr ""
-#: www/complete_signup.html:19
+#. Label of the last_name (Data) field in DocType 'Contact'
+#. Label of the last_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
msgid "Last Name"
msgstr "Nama Belakang"
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Last Name"
-msgstr "Nama Belakang"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Last Name"
-msgstr "Nama Belakang"
-
-#. Label of a Date field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_password_reset_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Password Reset Date"
-msgstr "Tanggal Reset Kata Sandi Terakhir"
-
-#. Label of a Date field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Last Point Allocation Date"
-msgstr "Tanggal Alokasi Poin Terakhir"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:648
msgid "Last Quarter"
-msgstr "Kuartal Terakhir"
+msgstr ""
-#. Label of a Datetime field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_reset_password_key_generated_on (Datetime) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Reset Password Key Generated On"
msgstr ""
-#. Label of a Datetime field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the datetime_last_run (Datetime) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Last Run"
+msgstr ""
+
+#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Last Sync On"
-msgstr "Sinkron Terakhir Aktif"
+msgstr ""
-#. Label of a Datetime field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the last_synced_at (Datetime) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Last Synced At"
+msgstr ""
+
+#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Last Synced On"
-msgstr "Terakhir Disinkronkan"
+msgstr ""
-#: model/__init__.py:145 model/meta.py:50 public/js/frappe/model/meta.js:202
-#: public/js/frappe/model/model.js:120
+#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205
+#: frappe/public/js/frappe/model/model.js:130
msgid "Last Updated By"
msgstr "Terakhir Diperbarui Oleh"
-#: model/__init__.py:141 model/meta.py:49 public/js/frappe/model/meta.js:201
-#: public/js/frappe/model/model.js:116
+#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204
+#: frappe/public/js/frappe/model/model.js:126
msgid "Last Updated On"
msgstr "Terakhir Diperbarui Pada"
-#. Label of a Link field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the last_user (Link) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr "Pengguna Terakhir"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:640
msgid "Last Week"
-msgstr "Minggu lalu"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:656
msgid "Last Year"
-msgstr "Tahun lalu"
+msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:698
+#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
msgstr "Terakhir disinkronkan {0}"
-#: custom/doctype/customize_form/customize_form.js:186
+#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:178
+#: frappe/custom/doctype/customize_form/customize_form.js:186
msgid "Layout will be reset to standard layout, are you sure you want to do this?"
msgstr ""
-#: desk/page/leaderboard/leaderboard.js:15
-msgid "Leaderboard"
-msgstr "LeaderBoard"
-
-#. Label of an action in the Onboarding Step 'Customize Print Formats'
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Learn about Standard and Custom Print Formats"
-msgstr ""
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/web_page_tour/web_page_tour.json
-msgid "Learn about Web Pages"
-msgstr ""
-
-#. Label of an action in the Onboarding Step 'Create Custom Fields'
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid "Learn how to add Custom Fields"
-msgstr ""
-
-#: website/web_template/section_with_features/section_with_features.html:26
+#: frappe/website/web_template/section_with_features/section_with_features.html:26
msgid "Learn more"
msgstr ""
-#. Label of an action in the Onboarding Step 'Generate Custom Reports'
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "Learn more about Report Builders"
-msgstr ""
-
-#. Label of an action in the Onboarding Step 'Custom Document Types'
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "Learn more about creating new DocTypes"
-msgstr ""
-
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr "Biarkan kosong untuk mengulang selalu"
+msgstr ""
-#: core/doctype/communication/mixins.py:206
-#: email/doctype/email_account/email_account.py:624
+#: frappe/core/doctype/communication/mixins.py:207
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "Tinggalkan percakapan ini"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Ledger"
-msgstr ""
+msgstr "buku besar"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Left"
-msgstr "Waktu tersisa"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Left"
-msgstr "Waktu tersisa"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Left"
msgstr "Waktu tersisa"
-#: printing/page/print_format_builder/print_format_builder.js:483
+#: frappe/printing/page/print_format_builder/print_format_builder.js:483
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155
msgctxt "alignment"
msgid "Left"
msgstr "Waktu tersisa"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Bottom"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Center"
msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:59
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58
msgid "Left this conversation"
msgstr "Meninggalkan percakapan ini"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Legal"
+msgstr "Hukum"
+
+#. Label of the length (Int) field in DocType 'DocField'
+#. Label of the length (Int) field in DocType 'Custom Field'
+#. Label of the length (Int) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Length"
msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Length"
-msgstr "Panjangnya"
-
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Length"
-msgstr "Panjangnya"
-
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Length"
-msgstr "Panjangnya"
-
-#: public/js/frappe/ui/chart.js:11
+#: frappe/public/js/frappe/ui/chart.js:11
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: database/schema.py:133
+#: frappe/database/schema.py:134
msgid "Length of {0} should be between 1 and 1000"
msgstr "Panjang {0} harus antara 1 dan 1000"
-#: public/js/frappe/widgets/onboarding_widget.js:439
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+msgid "Less"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:24
+msgid "Less Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:26
+msgid "Less Than Or Equal To"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Let us continue with the onboarding"
msgstr ""
-#: public/js/frappe/views/workspace/blocks/onboarding.js:94
-#: public/js/frappe/widgets/onboarding_widget.js:602
+#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:597
msgid "Let's Get Started"
msgstr "Mari Memulai"
-#. Title of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Let's Set Up Your Website."
-msgstr ""
-
-#: utils/password_strength.py:113
+#: frappe/utils/password_strength.py:111
msgid "Let's avoid repeated words and characters"
msgstr "Mari kita hindari kata-kata berulang dan karakter"
-#: desk/page/setup_wizard/setup_wizard.js:459
+#: frappe/desk/page/setup_wizard/setup_wizard.js:474
msgid "Let's set up your account"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:268
-#: public/js/frappe/widgets/onboarding_widget.js:309
-#: public/js/frappe/widgets/onboarding_widget.js:380
-#: public/js/frappe/widgets/onboarding_widget.js:419
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:263
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:304
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:375
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:414
msgid "Let's take you back to onboarding"
msgstr "Mari membawa Anda kembali ke orientasi"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr "Surat"
+msgstr ""
+#. Label of the letter_head (Link) field in DocType 'Report'
#. Name of a DocType
-#: printing/doctype/letter_head/letter_head.json
-#: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18
-#: public/js/frappe/list/bulk_operations.js:43
+#: frappe/core/doctype/report/report.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/page/print/print.js:127
+#: frappe/public/js/frappe/form/print_utils.js:43
+#: frappe/public/js/frappe/form/templates/print_layout.html:16
+#: frappe/public/js/frappe/list/bulk_operations.js:52
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
msgid "Letter Head"
msgstr "Surat Kepala"
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Letter Head"
-msgstr "Surat Kepala"
-
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Based On"
-msgstr "Kepala Surat Berdasarkan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the letter_head_image_section (Section Break) field in DocType
+#. 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Image"
-msgstr "Gambar Kepala Surat"
+msgstr ""
-#. Label of a Data field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the letter_head_name (Data) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198
msgid "Letter Head Name"
-msgstr "Nama Surat Kepala"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:45
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Letter Head Scripts"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:48
msgid "Letter Head cannot be both disabled and default"
msgstr ""
#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter
#. Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr "Surat Kepala di HTML"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:213
+#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
+#. Label of the permlevel (Int) field in DocType 'DocPerm'
+#. Label of the level (Select) field in DocType 'Help Article'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/page/permission_manager/permission_manager.js:144
+#: frappe/core/page/permission_manager/permission_manager.js:220
+#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
-msgstr "Level"
+msgstr ""
-#. Label of a Int field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Level"
-msgstr "Level"
-
-#. Label of a Int field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Level"
-msgstr "Level"
-
-#. Label of a Select field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Level"
-msgstr "Level"
-
-#: core/page/permission_manager/permission_manager.js:450
+#: frappe/core/page/permission_manager/permission_manager.js:467
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "Level 0 untuk izin tingkat dokumen, tingkat yang lebih tinggi untuk izin tingkat bidang."
-#. Label of a Data field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Level Name"
-msgstr "Nama Level"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94
+msgid "Library"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the license (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36
msgid "License"
-msgstr "Lisensi"
+msgstr ""
-#. Label of a Select field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the license_type (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "License Type"
msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Light"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Light Blue"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Light Blue"
msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the light_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr "Warna Terang"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:60
+#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
msgstr ""
-#: public/js/frappe/ui/filters/filter.js:18
-msgid "Like"
-msgstr "Suka"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Suka"
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Like"
-msgstr "Suka"
-
-#. Label of a Int field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the like_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit"
msgstr ""
#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit per hour"
msgstr ""
-#: templates/includes/likes/likes.py:30
+#: frappe/templates/includes/likes/likes.py:30
msgid "Like on {0}: {1}"
msgstr ""
-#: desk/like.py:91
+#: frappe/desk/like.py:92
msgid "Liked"
msgstr "Menyukai"
-#: model/__init__.py:149 model/meta.py:53 public/js/frappe/model/meta.js:205
-#: public/js/frappe/model/model.js:124
+#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208
+#: frappe/public/js/frappe/model/model.js:134
msgid "Liked By"
msgstr "Dengan menyukai"
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the likes (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Likes"
msgstr "Suka"
-#. Label of a Int field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#. Label of the limit (Int) field in DocType 'Bulk Update'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Limit"
-msgstr "Membatasi"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Limit Number of DB Backups"
-msgstr "Batasi Jumlah Cadangan DB"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
-msgstr "Baris"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Link"
-msgstr "Tautan"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Link"
-msgstr "Tautan"
-
-#. Label of a Small Text field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Link"
-msgstr "Tautan"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Link"
-msgstr "Tautan"
-
-#. Label of a Data field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Link"
-msgstr "Tautan"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Link"
-msgstr "Tautan"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Link"
-msgstr "Tautan"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Link"
-msgstr "Tautan"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Link"
-msgstr "Tautan"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the link (Long Text) field in DocType 'Changelog Feed'
+#. Label of the link (Small Text) field in DocType 'Desktop Icon'
+#. Label of the link (Small Text) field in DocType 'Notification Log'
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Link"
-msgstr "Tautan"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr "Tautkan Kartu"
+msgstr ""
-#. Label of a Int field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_count (Int) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Count"
msgstr ""
-#. Label of a Section Break field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_details_section (Section Break) field in DocType
+#. 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Details"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the link_doctype (Link) field in DocType 'Activity Log'
+#. Label of the link_doctype (Link) field in DocType 'Communication Link'
+#. Label of the link_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr "Link DocType"
+msgstr ""
-#. Label of a Link field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
-msgid "Link DocType"
-msgstr "Link DocType"
-
-#. Label of a Link field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Link DocType"
-msgstr "Link DocType"
-
-#. Label of a Link field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
+#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Document Type"
-msgstr "Tautkan Jenis Dokumen"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403
-#: workflow/doctype/workflow_action/workflow_action.py:202
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
msgid "Link Expired"
msgstr "Tautan Kedaluwarsa"
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#. Label of the link_field_results_limit (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Link Field Results Limit"
+msgstr ""
+
+#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr "Tautan Fieldname"
+msgstr ""
-#. Label of a JSON field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the link_filters (JSON) field in DocType 'DocField'
+#. Label of the link_filters (JSON) field in DocType 'Custom Field'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Link Filters"
msgstr ""
-#. Label of a JSON field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a JSON field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a JSON field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link'
+#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr "Link Nama"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
-msgid "Link Name"
-msgstr "Link Nama"
-
-#. Label of a Dynamic Link field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
-msgid "Link Name"
-msgstr "Link Nama"
-
-#. Label of a Read Only field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
+#. Label of the link_title (Read Only) field in DocType 'Communication Link'
+#. Label of the link_title (Read Only) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Title"
-msgstr "Link Title"
+msgstr ""
-#. Label of a Read Only field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
-msgid "Link Title"
-msgstr "Link Title"
-
-#. Label of a Dynamic Link field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:418
+#: frappe/public/js/frappe/widgets/widget_dialog.js:281
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr "Tautan ke"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Link To"
-msgstr "Tautan ke"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
+msgid "Link To in Row"
+msgstr ""
-#. Label of a Select field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_type (Select) field in DocType 'Workspace'
+#. Label of the link_type (Select) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
+#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
-#: website/doctype/about_us_settings/about_us_settings.js:6
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
+msgid "Link Type in Row"
+msgstr ""
+
+#: frappe/website/doctype/about_us_settings/about_us_settings.js:6
msgid "Link for About Us Page is \"/about\"."
msgstr ""
#. Description of the 'Home Page' (Data) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)"
msgstr ""
#. Description of the 'URL' (Data) field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Link to the page you want to open. Leave blank if you want to make it a group parent."
-msgstr "Link ke halaman yang ingin Anda buka. Kosongkan jika Anda ingin membuatnya kelompok orang tua."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Linked"
-msgstr "Terkait"
-
#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
msgid "Linked"
-msgstr "Terkait"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Linked Documents"
-msgstr "Dokumen Tertaut"
-
-#: public/js/frappe/form/linked_with.js:23
+#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
msgstr "Terhubung Dengan"
-#: contacts/doctype/address/address.js:39
-#: contacts/doctype/contact/contact.js:82 public/js/frappe/form/toolbar.js:366
+#. Label of the links (Table) field in DocType 'Address'
+#. Label of the links (Table) field in DocType 'Contact'
+#. Label of the links_section (Tab Break) field in DocType 'DocType'
+#. Label of the links (Table) field in DocType 'Customize Form'
+#. Label of the links (Table) field in DocType 'Workspace'
+#: frappe/contacts/doctype/address/address.js:39
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.js:92
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Links"
-msgstr "Links"
-
-#. Label of a Table field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Links"
-msgstr "Links"
-
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Links"
-msgstr "Links"
-
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Links"
-msgstr "Links"
-
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Links"
-msgstr "Links"
-
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Links"
-msgstr "Links"
+msgstr ""
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "List"
-msgstr "Daftar"
-
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "List"
-msgstr "Daftar"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/utils/utils.js:926
msgid "List"
-msgstr "Daftar"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the list__search_settings_section (Section Break) field in DocType
+#. 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "List / Search Settings"
msgstr ""
-#. Label of a Table field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the list_columns (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "List Columns"
msgstr ""
#. Name of a DocType
-#: desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/list_filter/list_filter.json
msgid "List Filter"
msgstr "Daftar filter"
-#. Label of a HTML field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List Setting Message"
-msgstr ""
+#. Label of the list_settings_section (Section Break) field in DocType 'User'
+#. Label of the section_break_8 (Section Break) field in DocType 'Customize
+#. Form'
+#. Label of the section_break_3 (Section Break) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/website/doctype/web_form/web_form.json
+msgid "List Settings"
+msgstr "Pengaturan Daftar"
-#: public/js/frappe/list/list_view.js:1708
+#: frappe/public/js/frappe/list/list_view.js:1844
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Pengaturan Daftar"
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "List Settings"
-msgstr "Pengaturan Daftar"
-
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "List Settings"
-msgstr "Pengaturan Daftar"
-
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List Settings"
-msgstr "Pengaturan Daftar"
+#: frappe/public/js/frappe/list/base_list.js:202
+msgid "List View"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "List View Settings"
msgstr "Pengaturan Tampilan Daftar"
-#: public/js/frappe/ui/toolbar/awesome_bar.js:161
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161
msgid "List a document type"
msgstr "Daftar jenis dokumen"
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Daftar sebagai [{ "label": _ ( "Jobs"), "rute": "pekerjaan"}]"
-
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Daftar sebagai [{ "label": _ ( "Jobs"), "rute": "pekerjaan"}]"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:526
+#. Description of the 'Send Notification to' (Small Text) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "List of email addresses, separated by comma or new line."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "List of patches executed"
+msgstr ""
+
+#. Label of the list_setting_message (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "List setting message"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542
msgid "Lists"
msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr "Penyeimbang beban"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_list.html:50
+#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
+#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
msgstr "Muat lebih banyak"
-#: public/js/frappe/form/footer/form_timeline.js:214
+#: frappe/public/js/frappe/form/footer/form_timeline.js:215
msgctxt "Form timeline"
msgid "Load More Communications"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:165
-#: public/js/frappe/list/base_list.js:465
+#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
+msgid "Load more"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:172
+#: frappe/public/js/frappe/form/controls/multicheck.js:13
+#: frappe/public/js/frappe/form/linked_with.js:13
+#: frappe/public/js/frappe/list/base_list.js:511
+#: frappe/public/js/frappe/list/list_view.js:360
+#: frappe/public/js/frappe/ui/listing.html:16
+#: frappe/public/js/frappe/views/reports/query_report.js:1088
msgid "Loading"
msgstr "Memuat"
-#: core/doctype/data_import/data_import.js:262
+#: frappe/public/js/frappe/widgets/widget_dialog.js:107
+msgid "Loading Filters..."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:257
msgid "Loading import file..."
msgstr "Memuat file impor ..."
-#: desk/page/user_profile/user_profile_controller.js:20
-msgid "Loading user profile"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Loading versions..."
msgstr ""
-#: public/js/frappe/form/sidebar/share.js:51
+#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
+#: frappe/public/js/frappe/list/list_sidebar.js:243
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
+#: frappe/public/js/frappe/widgets/chart_widget.js:50
+#: frappe/public/js/frappe/widgets/number_card_widget.js:176
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:129
msgid "Loading..."
msgstr "Memuat..."
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the location (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Location"
msgstr "Lokasi"
-#. Label of a Code field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the log (Code) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Log"
-msgstr "Log"
+msgstr ""
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the log_api_requests (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Log API Requests"
+msgstr ""
+
+#. Label of the log_data_section (Section Break) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Log Data"
-msgstr "Log Data"
+msgstr ""
-#. Label of a Link field in DocType 'Logs To Clear'
-#: core/doctype/logs_to_clear/logs_to_clear.json
-msgctxt "Logs To Clear"
+#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Log DocType"
msgstr ""
-#: templates/emails/login_with_email_link.html:28
+#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
msgstr ""
-#. Label of a Int field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the log_index (Int) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Log Index"
msgstr ""
#. Name of a DocType
-#: core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
msgid "Log Setting User"
msgstr "Pengguna Pengaturan Log"
#. Name of a DocType
-#: core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/public/js/frappe/logtypes.js:20
msgid "Log Settings"
msgstr "Pengaturan Log"
-#: www/app.py:21
+#: frappe/www/app.py:23
msgid "Log in to access this page."
msgstr "Masuk untuk mengakses halaman ini."
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py website/doctype/website_settings/website_settings.py:182
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.py:182
msgid "Log out"
msgstr ""
-#: handler.py:123
+#: frappe/handler.py:118
msgid "Logged Out"
msgstr "Keluar"
-#: public/js/frappe/web_form/webform_script.js:16
-#: templates/discussions/discussions_section.html:60
-#: templates/discussions/reply_section.html:43
-#: templates/includes/navbar/dropdown_login.html:15
-#: templates/includes/navbar/navbar_login.html:24
-#: website/page_renderers/not_permitted_page.py:22 www/login.html:42
-msgid "Login"
-msgstr "Masuk"
-
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the security_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/web_form/webform_script.js:16
+#: frappe/templates/discussions/discussions_section.html:60
+#: frappe/templates/discussions/reply_section.html:44
+#: frappe/templates/includes/navbar/dropdown_login.html:15
+#: frappe/templates/includes/navbar/navbar_login.html:25
+#: frappe/website/page_renderers/not_permitted_page.py:24
+#: frappe/www/login.html:45
msgid "Login"
msgstr "Masuk"
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Login"
-msgstr "Masuk"
-
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the login_after (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr "Login Setelah"
+msgstr ""
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the login_before (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr "Login Sebelum"
+msgstr ""
-#: public/js/frappe/desk.js:235
+#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
msgstr ""
-#: email/doctype/email_account/email_account.py:134
+#: frappe/email/doctype/email_account/email_account.py:144
msgid "Login Id is required"
msgstr "Id Login diperlukan"
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the login_methods_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login Methods"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the misc_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Login Page"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Login Required"
-msgstr "Login Diperlukan"
-
-#: www/login.py:137
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
-#: twofactor.py:265
+#: frappe/twofactor.py:260
msgid "Login Verification Code from {}"
msgstr "Kode Verifikasi Masuk dari {}"
-#: www/login.html:97
-msgid "Login With {0}"
-msgstr ""
-
-#: templates/emails/new_message.html:4
+#: frappe/templates/emails/new_message.html:4
msgid "Login and view in Browser"
msgstr "Login dan lihat di Browser"
-#: website/doctype/web_form/web_form.js:358
+#: frappe/website/doctype/web_form/web_form.js:367
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
-#: auth.py:322 auth.py:325
+#: frappe/templates/includes/login/login.js:69
+msgid "Login link sent to your email"
+msgstr ""
+
+#: frappe/auth.py:339 frappe/auth.py:342
msgid "Login not allowed at this time"
msgstr "Login tidak diizinkan untuk saat ini"
-#: twofactor.py:165
+#. Label of the login_required (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Login required"
+msgstr ""
+
+#: frappe/twofactor.py:164
msgid "Login session expired, refresh page to retry"
msgstr "Sesi login kadaluarsa, refresh halaman untuk mencoba lagi"
-#: templates/includes/comments/comments.html:110
+#: frappe/templates/includes/comments/comments.html:110
msgid "Login to comment"
msgstr "Masuk untuk berkomentar"
-#: templates/includes/comments/comments.html:6
+#: frappe/templates/includes/comments/comments.html:6
msgid "Login to start a new discussion"
msgstr ""
-#: www/login.html:61
+#: frappe/www/login.html:64
msgid "Login to {0}"
msgstr ""
-#: www/login.html:106
+#: frappe/templates/includes/login/login.js:319
+msgid "Login token required"
+msgstr ""
+
+#: frappe/www/login.html:126 frappe/www/login.html:210
msgid "Login with Email Link"
msgstr ""
-#: www/login.html:46
+#: frappe/www/login.html:116
+msgid "Login with Frappe Cloud"
+msgstr ""
+
+#: frappe/www/login.html:49
msgid "Login with LDAP"
msgstr "Masuk dengan LDAP"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the login_with_email_link (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the login_with_email_link_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: auth.py:131
+#: frappe/auth.py:144
msgid "Login with username and password is not allowed."
msgstr ""
-#. Label of a Int field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
-msgid "Logo Width"
-msgstr "Lebar Logo"
+#: frappe/www/login.html:100
+msgid "Login with {0}"
+msgstr ""
+
+#. Label of the logo_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Logo URI"
+msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
+#: frappe/www/me.html:84
msgid "Logout"
-msgstr "Keluar"
+msgstr ""
-#: core/doctype/user/user.js:179
+#: frappe/core/doctype/user/user.js:197
msgid "Logout All Sessions"
msgstr "Keluar dari Semua Sesi"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the logout_on_password_reset (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr "Keluar dari Semua Sesi saat Reset Kata Sandi"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the logout_all_sessions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Logout From All Devices After Changing Password"
-msgstr "Keluar Dari Semua Perangkat Setelah Mengubah Kata Sandi"
-
-#. Label of a Card Break in the Users Workspace
-#: core/workspace/users/users.json
-msgid "Logs"
-msgstr "Log"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of a Card Break in the Users Workspace
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Logs"
msgstr "Log"
#. Name of a DocType
-#: core/doctype/logs_to_clear/logs_to_clear.json
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Logs To Clear"
msgstr ""
-#. Label of a Table field in DocType 'Log Settings'
-#: core/doctype/log_settings/log_settings.json
-msgctxt "Log Settings"
+#. Label of the logs_to_clear (Table) field in DocType 'Log Settings'
+#: frappe/core/doctype/log_settings/log_settings.json
msgid "Logs to Clear"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Long Text"
-msgstr "Panjang Teks"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Long Text"
-msgstr "Panjang Teks"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr "Panjang Teks"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:322
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
msgstr "Sepertinya Anda tidak mengubah nilainya"
-#: www/third_party_apps.html:57
+#: frappe/www/third_party_apps.html:59
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:190
-msgid "Low"
-msgstr "Rendah"
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "Looks like you haven’t received any notifications."
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:217
msgid "Low"
msgstr "Rendah"
-#: public/js/frappe/utils/number_systems.js:13
+#: frappe/public/js/frappe/utils/number_systems.js:13
msgctxt "Number system"
msgid "M"
msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "MIT License"
msgstr ""
-#. Label of a Text Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:48
+msgid "Madam"
+msgstr ""
+
+#. Label of the main_section (Text Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section"
-msgstr "Bagian Utama"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (HTML)"
-msgstr "Bagian Utama (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr "Bagian Utama (Penurunan Harga)"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance Manager"
msgstr "Manajer Pemeliharaan"
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance User"
msgstr "Pengguna Pemeliharaan"
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the major (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Major"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Make \"name\" searchable in Global Search"
-msgstr "Membuat "nama" dicari di Search global"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Make Attachments Public by Default"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the make_attachment_public (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Make Attachment Public (by default)"
+msgstr ""
+
+#. Label of the make_attachments_public (Check) field in DocType 'DocType'
+#. Label of the make_attachments_public (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make Attachments Public by Default"
msgstr ""
#. Description of the 'Disable Username/Password Login' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Make sure to configure a Social Login Key before disabling to prevent lockout"
msgstr ""
-#: utils/password_strength.py:94
+#: frappe/utils/password_strength.py:92
msgid "Make use of longer keyboard patterns"
msgstr "Memanfaatkan pola keyboard lagi"
-#: public/js/frappe/form/multi_select_dialog.js:86
+#: frappe/public/js/frappe/form/multi_select_dialog.js:87
msgid "Make {0}"
msgstr "Buat {0}"
-#: website/doctype/web_page/web_page.js:77
+#: frappe/website/doctype/web_page/web_page.js:77
msgid "Makes the page public"
msgstr "Menjadikan halaman publik"
-#: www/me.html:50
-msgid "Manage third party apps"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:28
+msgid "Male"
msgstr ""
-#: www/me.html:59
-msgid "Manage your apps"
+#: frappe/www/me.html:56
+msgid "Manage 3rd party apps"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Description of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Manage your data"
+msgstr ""
+
+#. Label of the reqd (Check) field in DocType 'DocField'
+#. Label of the mandatory (Check) field in DocType 'Report Filter'
+#. Label of the reqd (Check) field in DocType 'Customize Form Field'
+#. Label of the reqd (Check) field in DocType 'Web Form Field'
+#. Label of the reqd (Check) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Mandatory"
msgstr "Wajib"
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Mandatory"
-msgstr "Wajib"
-
-#. Label of a Check field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Mandatory"
-msgstr "Wajib"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Mandatory"
-msgstr "Wajib"
-
-#. Label of a Check field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Mandatory"
-msgstr "Wajib"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Mandatory Depends On"
-msgstr "Wajib Tergantung"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Mandatory Depends On"
-msgstr "Wajib Tergantung"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Mandatory Depends On"
-msgstr "Wajib Tergantung"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: website/doctype/web_form/web_form.py:412
+#: frappe/website/doctype/web_form/web_form.py:498
msgid "Mandatory Information missing:"
msgstr "Informasi wajib hilang:"
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
msgid "Mandatory field: set role for"
msgstr "bidang wajib: menetapkan peran untuk"
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
msgid "Mandatory field: {0}"
msgstr "bidang wajib: {0}"
-#: public/js/frappe/form/save.js:167
+#: frappe/public/js/frappe/form/save.js:120
msgid "Mandatory fields required in table {0}, Row {1}"
msgstr "bidang wajib yang dibutuhkan dalam tabel {0}, Row {1}"
-#: public/js/frappe/form/save.js:172
+#: frappe/public/js/frappe/form/save.js:125
msgid "Mandatory fields required in {0}"
msgstr "Bidang wajib yang dibutuhkan dalam {0}"
-#: public/js/frappe/web_form/web_form.js:234
+#: frappe/public/js/frappe/web_form/web_form.js:234
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
-#: core/doctype/data_export/exporter.py:142
+#: frappe/core/doctype/data_export/exporter.py:142
msgid "Mandatory:"
msgstr "Wajib:"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Map"
msgstr ""
-#: public/js/frappe/data_import/import_preview.js:190
-#: public/js/frappe/data_import/import_preview.js:302
+#: frappe/public/js/frappe/data_import/import_preview.js:194
+#: frappe/public/js/frappe/data_import/import_preview.js:306
msgid "Map Columns"
msgstr "Kolom Peta"
-#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Map route parameters into form variables. Example /project/<name>"
-msgstr "Petakan parameter rute ke dalam variabel formulir. Contoh /project/<name>"
+#: frappe/public/js/frappe/list/base_list.js:211
+msgid "Map View"
+msgstr ""
-#: core/doctype/data_import/importer.py:877
+#: frappe/public/js/frappe/data_import/import_preview.js:294
+msgid "Map columns from {0} to fields in {1}"
+msgstr ""
+
+#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Map route parameters into form variables. Example /project/<name>"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:924
msgid "Mapping column {0} to field {1}"
msgstr "Memetakan kolom {0} ke bidang {1}"
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_bottom (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Bottom"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_left (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Left"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_right (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_top (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Top"
msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:44
+#. Label of the mariadb_variables_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "MariaDB Variables"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:45
msgid "Mark all as read"
msgstr ""
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:21
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:19
msgid "Mark as Read"
msgstr "Tandai sebagai membaca"
-#: core/doctype/communication/communication.js:95
+#: frappe/core/doctype/communication/communication.js:95
msgid "Mark as Spam"
msgstr "Tandai sebagai Spam"
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:24
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:22
msgid "Mark as Unread"
msgstr "Tandai sebagai Belum dibaca"
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Markdown"
-msgstr "Penurunan harga"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Markdown"
-msgstr "Penurunan harga"
-
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Markdown"
-msgstr "Penurunan harga"
-
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/email/doctype/notification/notification.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Markdown"
-msgstr "Penurunan harga"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Markdown Editor"
-msgstr "Editor penurunan harga"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Markdown Editor"
-msgstr "Editor penurunan harga"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Markdown Editor"
-msgstr "Editor penurunan harga"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Markdown Editor"
-msgstr "Editor penurunan harga"
-
-#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Marked As Spam"
-msgstr "Ditandai Sebagai Spam"
-
-#. Name of a DocType
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgid "Marketing Campaign"
msgstr ""
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Markdown Editor"
+msgstr ""
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Marked As Spam"
+msgstr ""
+
+#. Name of a role
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "Marketing Manager"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:50
+msgid "Master"
+msgstr "Nahkoda"
+
#. Description of the 'Limit' (Int) field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Max 500 records at a time"
-msgstr "Max 500 catatan pada satu waktu"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Max Attachment Size (in MB)"
-msgstr "Max Ukuran Lampiran (dalam MB)"
-
-#. Label of a Int field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the max_attachments (Int) field in DocType 'DocType'
+#. Label of the max_attachments (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Max Lampiran"
+msgstr ""
-#. Label of a Int field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Max Attachments"
-msgstr "Max Lampiran"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_file_size (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max File Size (MB)"
msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the max_height (Data) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_length (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Length"
-msgstr "Panjang maksimal"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_report_rows (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max Report Rows"
+msgstr ""
+
+#. Label of the max_value (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Value"
-msgstr "Max Nilai"
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Max attachment size"
+msgstr ""
+
+#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
msgstr ""
-#: core/doctype/doctype/doctype.py:1293
+#: frappe/core/doctype/doctype/doctype.py:1342
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Maksimum"
+msgstr ""
-#: core/doctype/file/file.py:317
+#: frappe/core/doctype/file/file.py:320
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
-#. Label of a Select field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the total_fields (Select) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Maximum Number of Fields"
-msgstr "Jumlah Bidang Maksimum"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Maximum Points"
-msgstr "Poin Maksimum"
-
-#: public/js/frappe/form/sidebar/attachments.js:38
+#: frappe/public/js/frappe/form/sidebar/attachments.js:38
msgid "Maximum attachment limit of {0} has been reached."
msgstr ""
-#. Description of the 'Maximum Points' (Int) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid ""
-"Maximum points allowed after multiplying points with the multiplier value\n"
-"(Note: For no limit leave this field empty or set 0)"
-msgstr ""
-
-#: model/rename_doc.py:675
+#: frappe/model/rename_doc.py:690
msgid "Maximum {0} rows allowed"
msgstr "Maksimum {0} baris diperbolehkan"
-#: public/js/frappe/list/list_sidebar_group_by.js:221
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
msgid "Me"
msgstr "Saya"
-#: public/js/frappe/form/sidebar/assign_to.js:194
-#: public/js/frappe/utils/utils.js:1719
-#: website/report/website_analytics/website_analytics.js:40
-msgid "Medium"
-msgstr "Sedang"
+#: frappe/core/page/permission_manager/permission_manager_help.html:14
+msgid "Meaning of Submit, Cancel, Amend"
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Medium"
-msgstr "Sedang"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the medium (Data) field in DocType 'Web Page View'
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
+#: frappe/public/js/frappe/utils/utils.js:1737
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
msgstr "Sedang"
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Meeting"
-msgstr "Pertemuan"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Meeting"
-msgstr "Pertemuan"
+msgstr ""
-#. Label of a Data field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/email/doctype/notification/notification.js:196
+#: frappe/integrations/doctype/webhook/webhook.js:96
msgid "Meets Condition?"
msgstr ""
#. Group in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
msgstr ""
+#. Label of the cache_memory_usage (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Memory Usage"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
+msgid "Memory Usage in MB"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr "Menyebut"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_mention (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "Penyebutan"
+msgstr ""
-#: public/js/frappe/ui/page.js:155
+#: frappe/public/js/frappe/ui/page.html:41
+#: frappe/public/js/frappe/ui/page.js:162
msgid "Menu"
-msgstr "Menu"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719
+#: frappe/public/js/frappe/form/toolbar.js:242
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Merger dengan yang ada"
-#: utils/nestedset.py:310
+#: frappe/utils/nestedset.py:307
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
msgstr "Penggabungan ini hanya mungkin antara kelompok-to-Grup atau Leaf Node-to-Leaf Node"
-#: public/js/frappe/ui/messages.js:175
-#: public/js/frappe/views/communication.js:110 www/message.html:3
-#: www/message.html:25
+#. Label of the message (Text) field in DocType 'Auto Repeat'
+#. Label of the content (Text Editor) field in DocType 'Activity Log'
+#. Label of the content (Text Editor) field in DocType 'Communication'
+#. Label of the message (Small Text) field in DocType 'SMS Log'
+#. Label of the message (Data) field in DocType 'Success Action'
+#. Label of the email_content (Text Editor) field in DocType 'Notification Log'
+#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email
+#. Report'
+#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
+#. Label of the message (Code) field in DocType 'Email Queue'
+#. Label of the message_sb (Section Break) field in DocType 'Notification'
+#. Label of the message (Code) field in DocType 'Notification'
+#. Label of the message (Text) field in DocType 'Workflow Document State'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/notification/notification.js:201
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/ui/messages.js:182
+#: frappe/public/js/frappe/views/communication.js:126
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/www/message.html:3
msgid "Message"
msgstr "Pesan"
-#. Label of a Text Editor field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#. Label of a Text Editor field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Text field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Text Editor field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Message"
-msgstr "Pesan"
-
-#: __init__.py:527 public/js/frappe/ui/messages.js:267
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Pesan"
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Text Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Text Editor field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Small Text field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a Text field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Message"
-msgstr "Pesan"
-
-#. Label of a HTML Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Message (HTML)"
-msgstr "Pesan (HTML)"
-
-#. Label of a Markdown Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Message (Markdown)"
-msgstr "Pesan (penurunan harga)"
-
-#. Label of a HTML field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the message_examples (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Contoh pesan"
+msgstr ""
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the message_id (Small Text) field in DocType 'Communication'
+#. Label of the message_id (Small Text) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Message ID"
-msgstr "pesan ID"
+msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message ID"
-msgstr "pesan ID"
-
-#. Label of a Data field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Parameter pesan"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/templates/includes/contact.js:36
+msgid "Message Sent"
+msgstr "Pesan terkirim"
+
+#. Label of the message_type (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Type"
msgstr ""
-#: public/js/frappe/views/communication.js:841
+#: frappe/public/js/frappe/views/communication.js:953
msgid "Message clipped"
msgstr "Pesan terpotong"
-#: email/doctype/email_account/email_account.py:299
+#: frappe/email/doctype/email_account/email_account.py:344
msgid "Message from server: {0}"
msgstr "Pesan dari server: {0}"
-#: automation/doctype/auto_repeat/auto_repeat.js:102
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Message not setup"
msgstr "Pesan tidak disetel"
-#. Description of the 'Success Message' (Text) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Description of the 'Success message' (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Message to be displayed on successful completion"
msgstr ""
-#. Label of a Code field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
+#. Label of the message_id (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr "Pesan-id"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the messages (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Messages"
msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the meta_section (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
msgstr ""
-#: website/doctype/web_page/web_page.js:124
+#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
msgstr "Deskripsi meta"
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Description"
-msgstr "Deskripsi meta"
-
-#. Label of a Small Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Description"
-msgstr "Deskripsi meta"
-
-#: website/doctype/web_page/web_page.js:131
+#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
msgstr "Gambar Meta"
-#. Label of a Attach Image field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Image"
-msgstr "Gambar Meta"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Image"
-msgstr "Gambar Meta"
-
-#. Label of a Section Break field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
+#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
+#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr "Tag Meta"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Meta Tags"
-msgstr "Tag Meta"
-
-#. Label of a Table field in DocType 'Website Route Meta'
-#: website/doctype/website_route_meta/website_route_meta.json
-msgctxt "Website Route Meta"
-msgid "Meta Tags"
-msgstr "Tag Meta"
-
-#: website/doctype/web_page/web_page.js:117
+#. Label of the meta_title (Data) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
msgstr "Judul Meta"
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Title"
-msgstr "Judul Meta"
+#. Label of the meta_description (Small Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta description"
+msgstr ""
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Title"
-msgstr "Judul Meta"
+#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta image"
+msgstr ""
-#: website/doctype/web_page/web_page.js:110
+#. Label of the meta_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta title"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
msgstr "Judul meta untuk SEO"
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Method"
-msgstr "Metode"
-
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Method"
-msgstr "Metode"
+#. Label of the resource_server_section (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Metadata"
+msgstr ""
+#. Label of the method (Data) field in DocType 'Access Log'
+#. Label of the method (Data) field in DocType 'API Request Log'
+#. Label of the method (Select) field in DocType 'Recorder'
+#. Label of the method (Data) field in DocType 'Scheduled Job Type'
+#. Label of the method (Data) field in DocType 'Scheduler Event'
+#. Label of the method (Data) field in DocType 'Number Card'
+#. Label of the auth_method (Select) field in DocType 'Email Account'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Metode"
+msgstr ""
-#. Label of a Data field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Method"
-msgstr "Metode"
+#: frappe/__init__.py:468
+msgid "Method Not Allowed"
+msgstr ""
-#. Label of a Select field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Method"
-msgstr "Metode"
-
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Method"
-msgstr "Metode"
-
-#: desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:73
msgid "Method is required to create a number card"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mid Center"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the middle_name (Data) field in DocType 'Contact'
+#. Label of the middle_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Nama tengah"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Middle Name"
-msgstr "Nama tengah"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/milestone/milestone.json
-msgid "Milestone"
-msgstr "Batu"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Milestone"
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Milestone"
msgstr "Batu"
+#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
-#: automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Milestone Tracker"
-msgstr "Milestone Tracker"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Milestone Tracker"
-msgstr "Milestone Tracker"
+msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr "Minimum"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the minimum_password_score (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr "Skor Kata Kunci Minimum"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the minor (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:100
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
-#: integrations/doctype/ldap_settings/ldap_settings.py:114
-#: integrations/doctype/ldap_settings/ldap_settings.py:122
-#: integrations/doctype/ldap_settings/ldap_settings.py:332
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes After"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Before"
+msgstr ""
+
+#. Label of the minutes_offset (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Offset"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Misconfigured"
msgstr ""
-#: desk/form/meta.py:213
+#: frappe/desk/page/setup_wizard/install_fixtures.py:49
+msgid "Miss"
+msgstr ""
+
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Missing Field"
msgstr ""
-#: public/js/frappe/form/save.js:178
+#: frappe/public/js/frappe/form/save.js:131
msgid "Missing Fields"
msgstr "hilang Fields"
-#: email/doctype/auto_email_report/auto_email_report.py:123
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:131
msgid "Missing Filters Required"
msgstr ""
-#: desk/form/assign_to.py:105
+#: frappe/desk/form/assign_to.py:110
msgid "Missing Permission"
msgstr ""
-#: www/update-password.html:107 www/update-password.html:114
+#: frappe/www/update-password.html:134 frappe/www/update-password.html:141
msgid "Missing Value"
msgstr ""
-#: public/js/frappe/ui/field_group.js:118
-#: public/js/frappe/widgets/widget_dialog.js:330
-#: public/js/workflow_builder/store.js:97
-#: workflow/doctype/workflow/workflow.js:71
+#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/widgets/widget_dialog.js:374
+#: frappe/public/js/workflow_builder/store.js:97
+#: frappe/workflow/doctype/workflow/workflow.js:71
msgid "Missing Values Required"
msgstr "Hilang Nilai Diperlukan"
-#: www/login.py:96
+#: frappe/www/login.py:107
msgid "Mobile"
msgstr ""
-#: tests/test_translate.py:86 tests/test_translate.py:89
-#: tests/test_translate.py:91 tests/test_translate.py:94
+#. Label of the mobile_no (Data) field in DocType 'Contact'
+#. Label of the mobile_no (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86
+#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91
+#: frappe/tests/test_translate.py:94
msgid "Mobile No"
-msgstr "Ponsel Tidak ada"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Mobile No"
-msgstr "Ponsel Tidak ada"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Mobile No"
-msgstr "Ponsel Tidak ada"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Models"
-msgstr ""
-
-#: core/report/transaction_log_report/transaction_log_report.py:106
-#: social/doctype/energy_point_rule/energy_point_rule.js:43
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
msgid "Modified By"
msgstr "dimodifikasi By"
-#: core/doctype/doctype/doctype_list.js:17
+#. Label of the module (Data) field in DocType 'Block Module'
+#. Label of the module (Link) field in DocType 'DocType'
+#. Label of the module (Link) field in DocType 'Page'
+#. Label of the module (Link) field in DocType 'Report'
+#. Label of the module (Link) field in DocType 'User Type Module'
+#. Label of the module (Link) field in DocType 'Dashboard'
+#. Label of the module (Link) field in DocType 'Dashboard Chart'
+#. Label of the module (Link) field in DocType 'Dashboard Chart Source'
+#. Label of the module (Link) field in DocType 'Form Tour'
+#. Label of the module (Link) field in DocType 'Module Onboarding'
+#. Label of the module (Link) field in DocType 'Number Card'
+#. Label of the module (Link) field in DocType 'Workspace'
+#. Label of the module (Link) field in DocType 'Notification'
+#. Label of the module (Link) field in DocType 'Print Format'
+#. Label of the module (Link) field in DocType 'Print Format Field Template'
+#. Label of the module (Link) field in DocType 'Web Form'
+#. Label of the module (Link) field in DocType 'Web Template'
+#. Label of the module (Link) field in DocType 'Website Theme'
+#: frappe/core/doctype/block_module/block_module.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Module"
msgstr "Modul"
-#. Label of a Data field in DocType 'Block Module'
-#: core/doctype/block_module/block_module.json
-msgctxt "Block Module"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'User Type Module'
-#: core/doctype/user_type_module/user_type_module.json
-msgctxt "User Type Module"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Module"
-msgstr "Modul"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the module (Link) field in DocType 'Server Script'
+#. Label of the module (Link) field in DocType 'Client Script'
+#. Label of the module (Link) field in DocType 'Custom Field'
+#. Label of the module (Link) field in DocType 'Property Setter'
+#. Label of the module (Link) field in DocType 'Web Page'
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Module (for export)"
msgstr ""
#. Name of a DocType
-#: core/doctype/module_def/module_def.json
-msgid "Module Def"
-msgstr "Modul Def"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Def"
+#. Label of a shortcut in the Build Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
msgid "Module Def"
msgstr "Modul Def"
-#. Linked DocType in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
-msgid "Module Def"
-msgstr "Modul Def"
-
-#. Label of a HTML field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_html (HTML) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the module_name (Data) field in DocType 'Module Def'
+#. Label of the module_name (Data) field in DocType 'Desktop Icon'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Module Name"
-msgstr "Nama Modul"
-
-#. Label of a Data field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Module Name"
-msgstr "Nama Modul"
-
-#. Name of a DocType
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgid "Module Onboarding"
-msgstr "Modul Onboarding"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Onboarding"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Module Onboarding"
msgstr "Modul Onboarding"
#. Name of a DocType
-#: core/doctype/module_profile/module_profile.json
-msgid "Module Profile"
-msgstr ""
-
+#. Label of the module_profile (Link) field in DocType 'User'
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Module Profile"
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Module Profile"
msgstr ""
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Module Profile"
-msgstr ""
-
-#. Label of a Data field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
msgstr ""
-#: desk/doctype/module_onboarding/module_onboarding.py:68
+#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69
msgid "Module onboarding progress reset"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:208
+#: frappe/custom/doctype/customize_form/customize_form.js:250
msgid "Module to Export"
msgstr "Modul untuk Ekspor"
-#: modules/utils.py:261
+#: frappe/modules/utils.py:273
msgid "Module {} not found"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Modules"
-msgstr "Modul"
-
#. Group in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/package/package.json
+#: frappe/core/workspace/build/build.json
msgid "Modules"
msgstr "Modul"
-#. Label of a HTML field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the modules_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "Modul HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Monday"
-msgstr "Senin"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monday"
-msgstr "Senin"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Monday"
-msgstr "Senin"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monday"
-msgstr "Senin"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the monday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Monday"
-msgstr "Senin"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Monitor logs for errors, background jobs, communications, and user activity"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Monospace"
-msgstr "Monospace"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:268
+#: frappe/public/js/frappe/views/calendar/calendar.js:275
msgid "Month"
msgstr "Bulan"
-#: public/js/frappe/utils/common.js:400
-#: website/report/website_analytics/website_analytics.js:25
-msgid "Monthly"
-msgstr "Bulanan"
-
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monthly"
-msgstr "Bulanan"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Monthly"
-msgstr "Bulanan"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Monthly"
-msgstr "Bulanan"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Monthly"
-msgstr "Bulanan"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monthly"
-msgstr "Bulanan"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Monthly"
-msgstr "Bulanan"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:400
+#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
msgstr "Bulanan"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Monthly"
-msgstr "Bulanan"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly"
-msgstr "Bulanan"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Panjang Bulanan"
+msgstr ""
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly Long"
-msgstr "Panjang Bulanan"
-
-#: public/js/frappe/form/link_selector.js:39
-#: public/js/frappe/form/multi_select_dialog.js:43
-#: public/js/frappe/form/multi_select_dialog.js:70
-#: templates/includes/list/list.html:23
-#: templates/includes/search_template.html:13
+#: frappe/public/js/frappe/form/link_selector.js:39
+#: frappe/public/js/frappe/form/multi_select_dialog.js:45
+#: frappe/public/js/frappe/form/multi_select_dialog.js:72
+#: frappe/public/js/frappe/ui/toolbar/search.js:285
+#: frappe/public/js/frappe/ui/toolbar/search.js:300
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+#: frappe/templates/includes/list/list.html:25
+#: frappe/templates/includes/search_template.html:13
msgid "More"
msgstr "Lanjut"
-#. Label of a Section Break field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "More Information"
-msgstr "Informasi lebih"
+#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission
+#. Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "More Info"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the more_info (Section Break) field in DocType 'Contact'
+#. Label of the additional_info (Section Break) field in DocType 'Activity Log'
+#. Label of the additional_info (Section Break) field in DocType
+#. 'Communication'
+#. Label of the short_bio (Tab Break) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user/user.json
msgid "More Information"
-msgstr "Informasi lebih"
+msgstr ""
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "More Information"
-msgstr "Informasi lebih"
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "More Information"
-msgstr "Informasi lebih"
-
-#: website/doctype/help_article/templates/help_article.html:19
-#: website/doctype/help_article/templates/help_article.html:33
+#: frappe/website/doctype/help_article/templates/help_article.html:19
+#: frappe/website/doctype/help_article/templates/help_article.html:33
msgid "More articles on {0}"
msgstr "artikel lebih lanjut tentang {0}"
#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Konten lainnya untuk bagian bawah halaman."
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:193
msgid "Most Used"
msgstr "sebagian Digunakan"
-#: utils/password.py:65
+#: frappe/utils/password.py:76
msgid "Most probably your password is too long."
msgstr ""
-#: core/doctype/communication/communication.js:86
-#: core/doctype/communication/communication.js:194
-#: core/doctype/communication/communication.js:212
+#: frappe/core/doctype/communication/communication.js:86
+#: frappe/core/doctype/communication/communication.js:194
+#: frappe/core/doctype/communication/communication.js:212
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Move"
msgstr "Bergerak"
-#: public/js/frappe/form/grid_row.js:189
+#: frappe/public/js/frappe/form/grid_row.js:193
msgid "Move To"
msgstr "Pindah ke"
-#: core/doctype/communication/communication.js:104
+#: frappe/core/doctype/communication/communication.js:104
msgid "Move To Trash"
msgstr "Pindah Untuk Sampah"
-#: public/js/frappe/form/form.js:176
+#: frappe/public/js/form_builder/components/Section.vue:295
+msgid "Move current and all subsequent sections to a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:177
msgid "Move cursor to above row"
msgstr ""
-#: public/js/frappe/form/form.js:180
+#: frappe/public/js/frappe/form/form.js:181
msgid "Move cursor to below row"
msgstr ""
-#: public/js/frappe/form/form.js:184
+#: frappe/public/js/frappe/form/form.js:185
msgid "Move cursor to next column"
msgstr ""
-#: public/js/frappe/form/form.js:188
+#: frappe/public/js/frappe/form/form.js:189
msgid "Move cursor to previous column"
msgstr ""
-#: public/js/frappe/form/grid_row.js:165
+#: frappe/public/js/form_builder/components/Section.vue:294
+msgid "Move sections to new tab"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:237
+msgid "Move the current field and the following fields to a new column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:168
msgid "Move to Row Number"
msgstr "Pindah ke Nomor Baris"
#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Move to next step when clicked inside highlighted area."
msgstr ""
#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form
#. Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround"
msgstr ""
-#: utils/nestedset.py:334
+#: frappe/desk/page/setup_wizard/install_fixtures.py:43
+msgid "Mr"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:47
+msgid "Mrs"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:44
+msgid "Ms"
+msgstr ""
+
+#: frappe/utils/nestedset.py:331
msgid "Multiple root nodes not allowed."
msgstr "Beberapa node akar tidak diperbolehkan."
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Multiplier Field"
-msgstr "Bidang Pengganda"
-
#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data
#. Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Harus berupa URL Google Spreadsheet yang dapat diakses publik"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
msgstr ""
-#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Must be of type \"Attach Image\""
-msgstr "Harus dari jenis "Lampirkan Gambar""
-
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr "Harus dari jenis "Lampirkan Gambar""
+msgstr ""
-#: desk/query_report.py:202
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Harus memiliki ijin laporan untuk mengakses laporan ini."
-#: core/doctype/report/report.py:148
+#: frappe/core/doctype/report/report.py:151
msgid "Must specify a Query to run"
msgstr "Harus menentukan Query untuk menjalankan"
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the mute_sounds (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr "Suara bisu"
+msgstr ""
-#: templates/includes/web_sidebar.html:41
-#: website/doctype/web_form/web_form.py:401
-#: website/doctype/website_settings/website_settings.py:181 www/list.py:21
-#: www/me.html:4 www/me.html:8 www/update_password.py:10
+#: frappe/desk/page/setup_wizard/install_fixtures.py:45
+msgid "Mx"
+msgstr ""
+
+#: frappe/templates/includes/web_sidebar.html:41
+#: frappe/website/doctype/web_form/web_form.py:487
+#: frappe/website/doctype/website_settings/website_settings.py:181
+#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
msgstr "Akun Saya"
-#. Label of a standard navbar item
-#. Type: Route
-#: hooks.py
-msgid "My Profile"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57
+msgid "My Device"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: hooks.py
-msgid "My Settings"
+#: frappe/public/js/frappe/ui/apps_switcher.js:71
+msgid "My Workspaces"
msgstr ""
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "MyISAM"
-msgstr "MyISAM"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:19
+#: frappe/workflow/doctype/workflow/workflow.js:19
msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
msgstr ""
#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
msgstr ""
-#: public/js/frappe/form/layout.js:75
-#: public/js/frappe/form/multi_select_dialog.js:239
-#: public/js/frappe/form/save.js:154
-#: public/js/frappe/views/file/file_view.js:97
-#: website/doctype/website_slideshow/website_slideshow.js:25
+#. Label of the fieldname (Data) field in DocType 'DocField'
+#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'Workspace'
+#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype_list.js:22
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/public/js/frappe/form/layout.js:77
+#: frappe/public/js/frappe/form/multi_select_dialog.js:240
+#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/views/file/file_view.js:97
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
msgstr "Nama"
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Name"
-msgstr "Nama"
+#: frappe/integrations/doctype/webhook/webhook.js:29
+msgid "Name (Doc Name)"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Name"
-msgstr "Nama"
-
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
-msgid "Name"
-msgstr "Nama"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Name"
-msgstr "Nama"
-
-#: desk/utils.py:22
+#: frappe/desk/utils.py:22
msgid "Name already taken, please set a new name"
msgstr ""
-#: model/naming.py:460
+#: frappe/model/naming.py:504
msgid "Name cannot contain special characters like {0}"
msgstr "Nama tidak boleh berisi karakter khusus seperti {0}"
-#: custom/doctype/custom_field/custom_field.js:91
+#: frappe/custom/doctype/custom_field/custom_field.js:91
msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
msgstr "Nama Tipe Dokumen (DocType) Anda ingin bidang ini dapat dihubungkan dengan. misalnya Pelanggan"
-#: printing/page/print_format_builder/print_format_builder.js:117
+#: frappe/printing/page/print_format_builder/print_format_builder.js:117
msgid "Name of the new Print Format"
msgstr "Nama Print Format baru"
-#: model/naming.py:454
+#: frappe/model/naming.py:499
msgid "Name of {0} cannot be {1}"
msgstr "Nama {0} tidak dapat {1}"
-#: utils/password_strength.py:178
+#: frappe/utils/password_strength.py:174
msgid "Names and surnames by themselves are easy to guess."
msgstr "Nama dan nama keluarga sendiri mudah ditebak."
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sb1 (Tab Break) field in DocType 'DocType'
+#. Label of the naming_section (Section Break) field in DocType 'Document
+#. Naming Rule'
+#. Label of the naming_section (Section Break) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Penamaan"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Naming"
-msgstr "Penamaan"
-
-#. Label of a Section Break field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Naming"
-msgstr "Penamaan"
-
-#. Description of the 'Auto Name' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid ""
-"Naming Options:\n"
-"- field:[fieldname] - By Field
- autoincrement - Uses Databases' Auto Increment feature
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
-"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
msgstr ""
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid ""
-"Naming Options:\n"
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Naming Options:\n"
"- field:[fieldname] - By Field
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
msgstr ""
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the naming_rule (Select) field in DocType 'DocType'
+#. Label of the naming_rule (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Naming Rule"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Naming Series"
-msgstr "Series Penamaan"
+msgstr ""
-#: model/naming.py:243
+#: frappe/model/naming.py:260
msgid "Naming Series mandatory"
msgstr "Penamaan Seri wajib"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
+#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar"
-msgstr "Navbar"
-
-#. Label of a Section Break field in DocType 'Website Settings'
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Navbar"
-msgstr "Navbar"
+msgstr ""
#. Name of a DocType
-#: core/doctype/navbar_item/navbar_item.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Navbar Item"
msgstr "Item Navbar"
#. Name of a DocType
-#: core/doctype/navbar_settings/navbar_settings.json
-msgid "Navbar Settings"
-msgstr "Pengaturan Navbar"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Navbar Settings"
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/workspace/build/build.json
msgid "Navbar Settings"
msgstr "Pengaturan Navbar"
-#. Label of a Link field in DocType 'Website Settings'
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_template (Link) field in DocType 'Website Settings'
+#. Label of the navbar_template_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template"
-msgstr "Template Navbar"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template Values"
-msgstr "Nilai Template Navbar"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:211
-msgid "Navigate Home"
-msgstr "Arahkan Beranda"
-
-#: public/js/frappe/list/list_view.js:1134
+#: frappe/public/js/frappe/list/list_view.js:1235
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navigasikan daftar ke bawah"
-#: public/js/frappe/list/list_view.js:1141
+#: frappe/public/js/frappe/list/list_view.js:1242
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navigasikan daftar ke atas"
-#: public/js/frappe/ui/page.js:168
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Navigate to main content"
msgstr ""
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the navigation_settings_section (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: desk/doctype/workspace/workspace.py:297
+#: frappe/desk/doctype/workspace/workspace.py:319
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: desk/doctype/workspace/workspace.py:343
-msgid "Need Workspace Manager role to hide/unhide public workspaces"
-msgstr ""
-
-#: model/document.py:607
+#: frappe/model/document.py:794
msgid "Negative Value"
msgstr "Nilai Negatif"
-#: utils/nestedset.py:95
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
+#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Bersarang kesalahan set. Silahkan hubungi Administrator."
#. Name of a DocType
-#: printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Network Printer Settings"
msgstr ""
-#: core/doctype/success_action/success_action.js:55
-#: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46
-#: public/js/frappe/form/success_action.js:77
-#: public/js/frappe/views/treeview.js:454
-#: website/doctype/web_form/templates/web_list.html:15 www/list.html:19
-msgid "New"
-msgstr "Baru"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "New"
-msgstr "Baru"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "New"
-msgstr "Baru"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/page/dashboard_view/dashboard_view.js:173
+#: frappe/desk/doctype/todo/todo.js:46
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:77
+#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/website/doctype/web_form/templates/web_list.html:15
+#: frappe/www/list.html:19
msgid "New"
msgstr "Baru"
-#: public/js/frappe/views/interaction.js:15
+#: frappe/public/js/frappe/views/interaction.js:15
msgid "New Activity"
msgstr "Aktivitas Baru"
-#: templates/includes/comments/comments.py:64
+#: frappe/public/js/frappe/form/templates/address_list.html:3
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5
+#: frappe/public/js/frappe/utils/address_and_contact.js:71
+msgid "New Address"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:58
+msgid "New Chart"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.py:62
msgid "New Comment on {0}: {1}"
msgstr "Komentar Baru pada {0}: {1}"
-#: printing/page/print/print.js:288 printing/page/print/print.js:335
-msgid "New Custom Print Format"
-msgstr "New Custom Print Format"
+#: frappe/public/js/frappe/form/templates/contact_list.html:3
+msgid "New Contact"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:70
+msgid "New Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:295
+#: frappe/printing/page/print/print.js:342
+msgid "New Custom Print Format"
+msgstr ""
+
+#. Label of the new_document_form (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "New Document Form"
msgstr ""
-#: desk/doctype/notification_log/notification_log.py:158
+#: frappe/desk/doctype/notification_log/notification_log.py:154
msgid "New Document Shared {0}"
msgstr "Dokumen Baru Dibagikan {0}"
-#: public/js/frappe/form/footer/form_timeline.js:26
-#: public/js/frappe/views/communication.js:23
+#: frappe/public/js/frappe/form/footer/form_timeline.js:27
+#: frappe/public/js/frappe/views/communication.js:23
msgid "New Email"
msgstr "Surel Baru"
-#: public/js/frappe/list/list_view_select.js:98
-#: public/js/frappe/views/inbox/inbox_view.js:177
+#: frappe/public/js/frappe/list/list_view_select.js:98
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:177
msgid "New Email Account"
msgstr "Akun Email Baru"
-#: public/js/frappe/form/footer/form_timeline.js:45
+#: frappe/public/js/frappe/form/footer/form_timeline.js:47
msgid "New Event"
msgstr "Acara baru"
-#: public/js/frappe/views/file/file_view.js:94
+#: frappe/public/js/frappe/views/file/file_view.js:94
msgid "New Folder"
msgstr "Folder baru"
-#: public/js/frappe/views/kanban/kanban_view.js:341
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Papan Kanban baru"
-#: desk/doctype/notification_log/notification_log.py:156
+#: frappe/public/js/frappe/widgets/widget_dialog.js:62
+msgid "New Links"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:152
msgid "New Mention on {0}"
msgstr "Sebutan Baru di {0}"
-#: www/contact.py:51
+#: frappe/www/contact.py:61
msgid "New Message from Website Contact Page"
msgstr "Pesan dari Kontak Situs Web Halaman"
-#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:727
+#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/public/js/frappe/form/toolbar.js:218
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Nama baru"
-#. Label of a Read Only field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
-msgid "New Name"
-msgstr "Nama baru"
-
-#: email/doctype/email_group/email_group.js:67
-msgid "New Newsletter"
-msgstr "Newsletter Baru"
-
-#: desk/doctype/notification_log/notification_log.py:155
+#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
msgstr "Pemberitahuan Baru"
-#: core/doctype/user/user.js:167 www/update-password.html:19
+#: frappe/public/js/frappe/widgets/widget_dialog.js:64
+msgid "New Number Card"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:66
+msgid "New Onboarding"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43
msgid "New Password"
msgstr "Kata sandi Baru"
-#: printing/page/print/print.js:260 printing/page/print/print.js:314
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:61
+#: frappe/printing/page/print/print.js:267
+#: frappe/printing/page/print/print.js:321
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Nama Format Cetak Baru"
-#: public/js/frappe/views/reports/report_view.js:1310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:68
+msgid "New Quick List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "New nama Laporan"
-#: workflow/page/workflow_builder/workflow_builder.js:61
+#. Label of the new_role (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:60
+msgid "New Shortcut"
+msgstr ""
+
+#. Label of the new_users (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "New Users (Last 30 days)"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:14
+#: frappe/core/doctype/version/version_view.html:76
+msgid "New Value"
+msgstr ""
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:61
msgid "New Workflow Name"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1172
+#: frappe/public/js/frappe/views/workspace/workspace.js:390
msgid "New Workspace"
msgstr ""
-#: www/update-password.html:77
+#. Description of the 'Allowed Public Client Origins' (Small Text) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n"
+"
\n"
+"Public clients are restricted by default."
+msgstr ""
+
+#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "New line separated list of scope values."
+msgstr ""
+
+#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses."
+msgstr ""
+
+#: frappe/www/update-password.html:92
msgid "New password cannot be same as old password"
msgstr ""
-#: utils/change_log.py:306
+#: frappe/utils/change_log.py:389
msgid "New updates are available"
msgstr "Pembaruan baru tersedia"
#. Description of the 'Disable signups' (Check) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "New users will have to be manually registered by system managers."
msgstr ""
#. Description of the 'Set Value' (Small Text) field in DocType 'Property
#. Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "New value to be set"
-msgstr "Nilai baru yang akan ditetapkan"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:124 public/js/frappe/form/toolbar.js:36
-#: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209
-#: public/js/frappe/form/toolbar.js:490
-#: public/js/frappe/ui/toolbar/search_utils.js:151
-#: public/js/frappe/ui/toolbar/search_utils.js:152
-#: public/js/frappe/ui/toolbar/search_utils.js:201
-#: public/js/frappe/ui/toolbar/search_utils.js:202
-#: public/js/frappe/views/treeview.js:350
-#: website/doctype/web_form/web_form.py:310
+#: frappe/public/js/frappe/form/quick_entry.js:179
+#: frappe/public/js/frappe/form/toolbar.js:37
+#: frappe/public/js/frappe/form/toolbar.js:206
+#: frappe/public/js/frappe/form/toolbar.js:221
+#: frappe/public/js/frappe/form/toolbar.js:561
+#: frappe/public/js/frappe/model/model.js:612
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
+#: frappe/public/js/frappe/views/treeview.js:366
+#: frappe/public/js/frappe/widgets/widget_dialog.js:72
+#: frappe/website/doctype/web_form/web_form.py:404
msgid "New {0}"
-msgstr "New {0}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:393
msgid "New {0} Created"
msgstr "Baru {0} Dibuat"
-#: public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:385
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Baru {0} {1} ditambahkan ke Dasbor {2}"
-#: public/js/frappe/form/quick_entry.js:167
-#: public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:390
msgid "New {0} {1} created"
msgstr "{0} {1} baru dibuat"
-#: automation/doctype/auto_repeat/auto_repeat.py:373
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385
msgid "New {0}: {1}"
msgstr "Baru {0}: {1}"
-#: utils/change_log.py:298
+#: frappe/utils/change_log.py:375
msgid "New {} releases for the following apps are available"
msgstr "Rilis {} baru untuk aplikasi berikut tersedia"
-#: core/doctype/user/user.py:764
+#: frappe/core/doctype/user/user.py:808
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Name of a DocType
-#: automation/workspace/tools/tools.json
-#: email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Laporan berkala"
-
-#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Newsletter"
-msgid "Newsletter"
-msgstr "Laporan berkala"
-
-#. Name of a DocType
-#: email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Surel surat edaran kelompok"
-
#. Name of a role
-#: email/doctype/email_group/email_group.json
-#: email/doctype/email_group_member/email_group_member.json
-#: email/doctype/newsletter/newsletter.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Surat edaran Manajer"
-#: email/doctype/newsletter/newsletter.py:130
-msgid "Newsletter has already been sent"
-msgstr "Surat edaran telah terkirim"
-
-#: email/doctype/newsletter/newsletter.py:149
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: email/doctype/newsletter/newsletter.py:137
-msgid "Newsletter should have atleast one recipient"
-msgstr "Newsletter harus memiliki minimal satu penerima"
-
-#: email/doctype/newsletter/newsletter.py:392
-msgid "Newsletters"
-msgstr "Surat edaran"
-
-#: public/js/frappe/form/form_tour.js:316
-#: public/js/onboarding_tours/onboarding_tours.js:15
-#: public/js/onboarding_tours/onboarding_tours.js:240
-#: templates/includes/slideshow.html:38 website/utils.py:247
-#: website/web_template/slideshow/slideshow.html:44
+#: frappe/public/js/frappe/form/form_tour.js:14
+#: frappe/public/js/frappe/form/form_tour.js:324
+#: frappe/public/js/frappe/web_form/web_form.js:91
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:15
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:240
+#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258
+#: frappe/website/web_template/slideshow/slideshow.html:44
msgid "Next"
msgstr "Lanjut"
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Next Action Email Template"
-msgstr "Template Email Aksi Berikutnya"
+#: frappe/public/js/frappe/ui/slides.js:359
+msgctxt "Go to next slide"
+msgid "Next"
+msgstr "Lanjut"
-#. Label of a HTML field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Next Actions HTML"
-msgstr "HTML Tindakan Berikutnya"
-
-#: public/js/frappe/form/toolbar.js:297
-msgid "Next Document"
+#: frappe/public/js/frappe/ui/filters/filter.js:684
+msgid "Next 14 Days"
msgstr ""
-#. Label of a Datetime field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/public/js/frappe/ui/filters/filter.js:688
+msgid "Next 30 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:704
+msgid "Next 6 Months"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:680
+msgid "Next 7 Days"
+msgstr ""
+
+#. Label of the next_action_email_template (Link) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Next Action Email Template"
+msgstr ""
+
+#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
+msgid "Next Actions HTML"
+msgstr ""
+
+#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Next Execution"
msgstr ""
-#. Label of a Link field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Form Tour"
msgstr ""
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#: frappe/public/js/frappe/ui/filters/filter.js:696
+msgid "Next Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:700
+msgid "Next Quarter"
+msgstr ""
+
+#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Next Schedule Date"
-msgstr "Jadwal Jadwal Berikutnya"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
+msgid "Next Scheduled Date"
+msgstr ""
+
+#. Label of the next_state (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr "Negara berikutnya"
+msgstr ""
-#. Label of a Code field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Step Condition"
msgstr ""
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the next_sync_token (Password) field in DocType 'Google Calendar'
+#. Label of the next_sync_token (Password) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Next Sync Token"
-msgstr "Token Sinkronisasi Berikutnya"
+msgstr ""
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Next Sync Token"
-msgstr "Token Sinkronisasi Berikutnya"
+#: frappe/public/js/frappe/ui/filters/filter.js:692
+msgid "Next Week"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/public/js/frappe/ui/filters/filter.js:708
+msgid "Next Year"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Next actions"
+msgstr ""
+
+#. Label of the next_on_click (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next on Click"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:137
-#: public/js/form_builder/utils.js:341
-#: public/js/frappe/form/controls/link.js:471
-#: public/js/frappe/list/list_sidebar_group_by.js:223
-#: public/js/frappe/views/reports/query_report.js:1513
-#: website/doctype/help_article/templates/help_article.html:26
-msgid "No"
-msgstr "No"
-
-#: public/js/frappe/ui/filters/filter.js:501
-msgctxt "Checkbox is not checked"
-msgid "No"
-msgstr "No"
-
-#: public/js/frappe/ui/messages.js:37
-msgctxt "Dismiss confirmation dialog"
-msgid "No"
-msgstr "No"
-
+#. Option for the 'Standard' (Select) field in DocType 'Page'
+#. Option for the 'Is Standard' (Select) field in DocType 'Report'
#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "No"
-msgstr "No"
-
-#. Option for the 'Standard' (Select) field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "No"
-msgstr "No"
-
#. Option for the 'Standard' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:96
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:128
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:341
+#: frappe/public/js/frappe/form/controls/link.js:494
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
+#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
-msgstr "No"
+msgstr ""
-#. Option for the 'Is Standard' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/public/js/frappe/ui/filters/filter.js:546
+msgctxt "Checkbox is not checked"
msgid "No"
-msgstr "No"
+msgstr ""
-#: www/third_party_apps.html:54
+#: frappe/public/js/frappe/ui/messages.js:37
+msgctxt "Dismiss confirmation dialog"
+msgid "No"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:56
msgid "No Active Sessions"
msgstr "Tidak ada sesi aktif"
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the no_copy (Check) field in DocType 'DocField'
+#. Label of the no_copy (Check) field in DocType 'Custom Field'
+#. Label of the no_copy (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "Tidak ada Copy"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "No Copy"
-msgstr "Tidak ada Copy"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "No Copy"
-msgstr "Tidak ada Copy"
-
-#: core/doctype/data_export/exporter.py:162
-#: email/doctype/auto_email_report/auto_email_report.py:263
-#: public/js/frappe/data_import/import_preview.js:142
-#: public/js/frappe/form/multi_select_dialog.js:223
-#: public/js/frappe/utils/datatable.js:10
+#: frappe/core/doctype/data_export/exporter.py:162
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:301
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:64
+#: frappe/public/js/frappe/data_import/import_preview.js:146
+#: frappe/public/js/frappe/form/multi_select_dialog.js:224
+#: frappe/public/js/frappe/utils/datatable.js:10
+#: frappe/public/js/frappe/widgets/chart_widget.js:57
msgid "No Data"
msgstr "Tidak ada data"
-#: public/js/frappe/views/inbox/inbox_view.js:176
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:134
+msgid "No Data..."
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:176
msgid "No Email Account"
msgstr "Tidak ada Akun Surel"
-#: public/js/frappe/views/inbox/inbox_view.js:183
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:196
+msgid "No Email Accounts Assigned"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:183
msgid "No Emails"
msgstr "Tidak ada Email"
-#: integrations/doctype/ldap_settings/ldap_settings.py:362
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361
msgid "No Entry for the User {0} found within LDAP!"
msgstr "Tidak ada Entri untuk Pengguna {0} yang ditemukan dalam LDAP!"
-#: public/js/frappe/widgets/chart_widget.js:366
+#: frappe/public/js/frappe/widgets/chart_widget.js:407
msgid "No Filters Set"
msgstr "Tidak Ada Filter Ditetapkan"
-#: integrations/doctype/google_calendar/google_calendar.py:356
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:372
msgid "No Google Calendar Event to sync."
msgstr "Tidak ada Acara Kalender Google untuk disinkronkan."
-#: public/js/frappe/ui/capture.js:254
+#: frappe/public/js/frappe/ui/capture.js:262
msgid "No Images"
msgstr ""
-#: desk/page/leaderboard/leaderboard.js:282
-msgid "No Items Found"
-msgstr ""
-
-#: integrations/doctype/ldap_settings/ldap_settings.py:364
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363
msgid "No LDAP User found for email: {0}"
msgstr "Tidak ada Pengguna LDAP yang ditemukan untuk email: {0}"
-#: printing/page/print/print.js:675 printing/page/print/print.js:757
-#: public/js/frappe/list/bulk_operations.js:82
-#: public/js/frappe/list/bulk_operations.js:126 utils/weasyprint.py:54
+#: frappe/public/js/form_builder/components/EditableInput.vue:11
+#: frappe/public/js/form_builder/components/EditableInput.vue:14
+#: frappe/public/js/form_builder/components/Field.vue:209
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55
+#: frappe/public/js/print_format_builder/Field.vue:24
+#: frappe/public/js/workflow_builder/components/ActionNode.vue:53
+#: frappe/public/js/workflow_builder/components/StateNode.vue:47
+#: frappe/public/js/workflow_builder/store.js:51
+msgid "No Label"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:703
+#: frappe/printing/page/print/print.js:784
+#: frappe/public/js/frappe/list/bulk_operations.js:98
+#: frappe/public/js/frappe/list/bulk_operations.js:170
+#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: model/naming.py:436
+#: frappe/model/naming.py:481
msgid "No Name Specified for {0}"
msgstr "Tidak Ada Nama Yang Ditentukan untuk {0}"
-#: core/doctype/doctype/doctype.py:1684
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "No New notifications"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1743
msgid "No Permissions Specified"
msgstr "Tidak ada izin yang ditentukan"
-#: core/page/permission_manager/permission_manager.js:192
+#: frappe/core/page/permission_manager/permission_manager.js:199
msgid "No Permissions set for this criteria."
msgstr "Tidak ada Izin ditetapkan untuk kriteria ini."
-#: core/page/dashboard_view/dashboard_view.js:93
+#: frappe/core/page/dashboard_view/dashboard_view.js:93
msgid "No Permitted Charts"
msgstr "Tidak Ada Grafik yang Diizinkan"
-#: core/page/dashboard_view/dashboard_view.js:92
+#: frappe/core/page/dashboard_view/dashboard_view.js:92
msgid "No Permitted Charts on this Dashboard"
msgstr "Tidak Ada Diagram yang Diizinkan di Dasbor ini"
-#: printing/page/print/print.js:835
+#: frappe/printing/doctype/print_settings/print_settings.js:13
+msgid "No Preview"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:707
+msgid "No Preview Available"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:862
msgid "No Printer is Available."
msgstr "Tidak Ada Printer."
-#: public/js/frappe/form/link_selector.js:135
-msgid "No Results"
-msgstr "No Results"
+#: frappe/core/doctype/rq_worker/rq_worker_list.js:3
+msgid "No RQ Workers connected. Try restarting the bench."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:51
+#: frappe/public/js/frappe/form/link_selector.js:135
+msgid "No Results"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:51
msgid "No Results found"
msgstr ""
-#: core/doctype/user/user.py:765
+#: frappe/core/doctype/user/user.py:809
msgid "No Roles Specified"
msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:341
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
-#: desk/reportview.py:565
+#: frappe/core/doctype/recorder/recorder.py:179
+msgid "No Suggestions"
+msgstr ""
+
+#: frappe/desk/reportview.py:672
msgid "No Tags"
msgstr "Tidak ada Tags"
-#: email/doctype/notification/notification.js:180
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "No Upcoming Events"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:43
+msgid "No address added yet."
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:229
msgid "No alerts for today"
msgstr "Tidak ada pemberitahuan untuk hari ini"
-#: email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
+#: frappe/core/doctype/recorder/recorder.py:178
+msgid "No automatic optimization suggestions available."
msgstr ""
-#: public/js/frappe/form/save.js:38
+#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Tidak ada perubahan dalam dokumen"
-#: model/rename_doc.py:370
+#: frappe/public/js/frappe/views/workspace/workspace.js:662
+msgid "No changes made"
+msgstr ""
+
+#: frappe/model/rename_doc.py:369
msgid "No changes made because old and new name are the same."
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1477
-msgid "No changes made on the page"
-msgstr ""
-
-#: custom/doctype/doctype_layout/doctype_layout.js:59
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59
msgid "No changes to sync"
msgstr ""
-#: core/doctype/data_import/importer.py:286
+#: frappe/core/doctype/data_import/importer.py:298
msgid "No changes to update"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:376
+#: frappe/website/doctype/blog_post/blog_post.py:378
msgid "No comments yet"
msgstr "Belum ada komentar"
-#: templates/includes/comments/comments.html:4
+#: frappe/templates/includes/comments/comments.html:4
msgid "No comments yet. "
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:426
+#: frappe/public/js/frappe/form/templates/contact_list.html:91
+msgid "No contacts added yet."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
msgid "No contacts linked to document"
msgstr "Tidak ada kontak yang tertaut ke dokumen"
-#: desk/query_report.py:335
+#: frappe/desk/query_report.py:344
msgid "No data to export"
msgstr "Tidak ada data untuk diekspor"
-#: contacts/doctype/address/address.py:251
+#: frappe/contacts/doctype/address/address.py:246
msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template."
msgstr "Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template."
-#: public/js/frappe/ui/toolbar/search.js:71
+#: frappe/public/js/frappe/ui/toolbar/search.js:71
msgid "No documents found tagged with {0}"
msgstr "Tidak ditemukan dokumen yang ditandai dengan {0}"
-#: public/js/frappe/views/inbox/inbox_view.js:21
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:21
msgid "No email account associated with the User. Please add an account under User > Email Inbox."
msgstr "Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email."
-#: utils/file_manager.py:143
+#: frappe/core/doctype/data_import/data_import.js:478
+msgid "No failed logs"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
+msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
+msgstr ""
+
+#: frappe/utils/file_manager.py:143
msgid "No file attached"
msgstr "Tidak ada file terlampir"
-#: desk/form/utils.py:102
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134
+msgid "No filters found"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "No filters selected"
+msgstr ""
+
+#: frappe/desk/form/utils.py:111
msgid "No further records"
msgstr "Tidak ada catatan lebih lanjut"
-#: templates/includes/search_template.html:49
+#: frappe/templates/includes/search_template.html:49
msgid "No matching records. Search something new"
msgstr "Tidak ada catatan yang cocok. Cari sesuatu yang baru"
-#: public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:161
msgid "No more items to display"
msgstr "Tidak ada lagi item untuk ditampilkan"
-#: utils/password_strength.py:45
+#: frappe/utils/password_strength.py:45
msgid "No need for symbols, digits, or uppercase letters."
msgstr "Tidak perlu untuk simbol, angka, atau huruf besar."
-#: integrations/doctype/google_contacts/google_contacts.py:192
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:195
msgid "No new Google Contacts synced."
msgstr "Tidak ada Kontak Google baru yang disinkronkan."
-#: printing/page/print_format_builder/print_format_builder.js:415
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:46
+msgid "No new notifications"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:415
msgid "No of Columns"
msgstr "Tidak ada dari Kolom"
-#. Label of a Int field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Requested SMS"
msgstr ""
-#. Label of a Int field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "No of Rows (Max 500)"
-msgstr "Tidak ada dari Rows (Max 500)"
+msgstr ""
-#. Label of a Int field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
msgstr ""
-#: __init__.py:1027 client.py:109 client.py:151
+#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Tidak ada izin untuk {0}"
-#: public/js/frappe/form/form.js:1115
+#: frappe/public/js/frappe/form/form.js:1142
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Tidak ada izin untuk '{0}' {1}"
-#: model/db_query.py:943
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "Tidak ada izin untuk membaca {0}"
-#: share.py:224
+#: frappe/share.py:220
msgid "No permission to {0} {1} {2}"
msgstr "Tidak ada izin untuk {0} {1} {2}"
-#: core/doctype/user_permission/user_permission_list.js:175
+#: frappe/core/doctype/user_permission/user_permission_list.js:175
msgid "No records deleted"
msgstr "Tidak ada catatan yang dihapus"
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:121
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
msgid "No records present in {0}"
msgstr "Tidak ada catatan di {0}"
-#: public/js/frappe/data_import/data_exporter.js:221
+#: frappe/public/js/frappe/list/list_sidebar_stat.html:3
+msgid "No records tagged."
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:225
msgid "No records will be exported"
msgstr "Tidak ada catatan yang akan diekspor"
-#: www/printview.py:426
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "No rows"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:129
+msgid "No subject"
+msgstr ""
+
+#: frappe/www/printview.py:472
msgid "No template found at path: {0}"
msgstr "Tidak ada template yang ditemukan di jalan: {0}"
-#: website/web_template/discussions/discussions.html:2
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:262
+msgid "No values to show"
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:2
msgid "No {0}"
msgstr ""
-#: public/js/frappe/list/list_view.js:466
+#: frappe/public/js/frappe/list/list_view_select.js:157
+msgid "No {0} Found"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form_list.js:233
+msgid "No {0} found"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:494
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:171
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:171
msgid "No {0} mail"
msgstr "Tidak ada {0} email"
-#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:251
+#: frappe/public/js/form_builder/utils.js:117
+#: frappe/public/js/frappe/form/grid_row.js:256
+msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Non Negative"
-msgstr "Non Negatif"
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Nomatim"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the non_negative (Check) field in DocType 'DocField'
+#. Label of the non_negative (Check) field in DocType 'Custom Field'
+#. Label of the non_negative (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr "Non Negatif"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Non Negative"
-msgstr "Non Negatif"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:33
+msgid "Non-Conforming"
+msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "None"
-msgstr "Tidak ada"
+msgstr ""
-#: public/js/frappe/form/workflow.js:36
+#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Tidak ada: Akhir Alur Kerja"
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the normalized_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Copies"
msgstr ""
-#. Label of a Data field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the normalized_query (Data) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Query"
msgstr ""
-#: core/doctype/user/user.py:972 utils/oauth.py:272
+#: frappe/core/doctype/user/user.py:1022
+#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Tidak Diizinkan"
-#: public/js/frappe/ui/filters/filter.js:36
+#: frappe/templates/includes/login/login.js:259
+msgid "Not Allowed: Disabled User"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:36
msgid "Not Ancestors Of"
msgstr "Bukan Leluhur"
-#: public/js/frappe/ui/filters/filter.js:34
+#: frappe/public/js/frappe/ui/filters/filter.js:34
msgid "Not Descendants Of"
msgstr "Bukan Descendants Of"
-#: public/js/frappe/ui/filters/filter.js:17
+#: frappe/public/js/frappe/ui/filters/filter.js:17
msgid "Not Equals"
msgstr "Tidak sama dengan"
-#: app.py:363 www/404.html:3
+#: frappe/app.py:387 frappe/www/404.html:3
msgid "Not Found"
msgstr "Tidak ditemukan"
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the not_helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Not Helpful"
msgstr ""
-#: public/js/frappe/ui/filters/filter.js:21
+#: frappe/public/js/frappe/ui/filters/filter.js:21
msgid "Not In"
msgstr "Tidak Masuk"
-#: public/js/frappe/ui/filters/filter.js:19
+#: frappe/public/js/frappe/ui/filters/filter.js:19
msgid "Not Like"
msgstr "Tidak suka"
-#: public/js/frappe/form/linked_with.js:45
+#: frappe/public/js/frappe/form/linked_with.js:45
msgid "Not Linked to any record"
msgstr "Tidak terkait dengan catatan apapun"
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the not_nullable (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Not Nullable"
msgstr ""
-#: __init__.py:921 app.py:354 desk/calendar.py:26 geo/utils.py:97
-#: public/js/frappe/web_form/webform_script.js:15
-#: website/doctype/web_form/web_form.py:603
-#: website/page_renderers/not_permitted_page.py:20 www/login.py:177
-#: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37
+#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26
+#: frappe/public/js/frappe/web_form/webform_script.js:15
+#: frappe/website/doctype/web_form/web_form.py:736
+#: frappe/website/page_renderers/not_permitted_page.py:22
+#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
+#: frappe/www/qrcode.py:37
msgid "Not Permitted"
msgstr "Tidak Diijinkan"
-#: desk/query_report.py:513
+#: frappe/desk/query_report.py:555
msgid "Not Permitted to read {0}"
msgstr ""
-#: website/doctype/blog_post/blog_post_list.js:7
-#: website/doctype/web_form/web_form_list.js:7
-#: website/doctype/web_page/web_page_list.js:7
+#: frappe/website/doctype/blog_post/blog_post_list.js:7
+#: frappe/website/doctype/web_form/web_form_list.js:7
+#: frappe/website/doctype/web_page/web_page_list.js:7
msgid "Not Published"
msgstr "Tidak Diterbitkan"
-#: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740
-#: public/js/frappe/model/indicator.js:28
-#: public/js/frappe/views/kanban/kanban_view.js:167
-#: public/js/frappe/views/reports/report_view.js:173
-#: public/js/print_format_builder/print_format_builder.bundle.js:39
-#: website/doctype/web_form/templates/web_form.html:75
+#: frappe/public/js/frappe/form/toolbar.js:287
+#: frappe/public/js/frappe/form/toolbar.js:816
+#: frappe/public/js/frappe/model/indicator.js:28
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/reports/report_view.js:203
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
+#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
msgstr "Tidak Disimpan"
-#: core/doctype/error_log/error_log_list.js:7
+#: frappe/core/doctype/error_log/error_log_list.js:7
msgid "Not Seen"
msgstr "Tidak Terlihat"
-#: email/doctype/newsletter/newsletter_list.js:9
-msgid "Not Sent"
-msgstr "Tidak terkirim"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Not Sent"
-msgstr "Tidak terkirim"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Not Sent"
msgstr "Tidak terkirim"
-#: public/js/frappe/list/list_sidebar_group_by.js:219
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219
msgid "Not Set"
msgstr "Tidak Diatur"
-#: public/js/frappe/ui/filters/filter.js:563
+#: frappe/public/js/frappe/ui/filters/filter.js:608
msgctxt "Field value is not set"
msgid "Not Set"
msgstr "Tidak Diatur"
-#: utils/csvutils.py:77
+#: frappe/utils/csvutils.py:102
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Bukan Nilai Comma Separated valid (CSV file)"
-#: core/doctype/user/user.py:197
+#: frappe/core/doctype/user/user.py:266
msgid "Not a valid User Image."
msgstr "Bukan Gambar Pengguna yang valid."
-#: model/workflow.py:118
+#: frappe/model/workflow.py:114
msgid "Not a valid Workflow Action"
msgstr "Bukan Aksi Alur Kerja yang valid"
-#: workflow/doctype/workflow/workflow_list.js:7
+#: frappe/templates/includes/login/login.js:255
+msgid "Not a valid user"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:7
msgid "Not active"
msgstr "Tidak aktif"
-#: permissions.py:367
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Tidak diizinkan untuk {0}: {1}"
-#: email/doctype/notification/notification.py:388
+#: frappe/email/doctype/notification/notification.py:595
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
msgstr "Tidak diizinkan melampirkan dokumen {0}, harap aktifkan Izinkan Pencetakan Untuk {0} di Setelan Cetak"
-#: core/doctype/doctype/doctype.py:338
+#: frappe/core/doctype/doctype/doctype.py:335
msgid "Not allowed to create custom Virtual DocType."
msgstr ""
-#: www/printview.py:141
+#: frappe/www/printview.py:165
msgid "Not allowed to print cancelled documents"
msgstr "Tidak diizinkan untuk mencetak dokumen dibatalkan"
-#: www/printview.py:138
+#: frappe/www/printview.py:162
msgid "Not allowed to print draft documents"
msgstr "Tidak diizinkan untuk mencetak dokumen draft"
-#: permissions.py:213
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
-#: public/js/frappe/request.js:145 website/js/website.js:94
+#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Tidak ditemukan"
-#: core/doctype/page/page.py:62
+#: frappe/core/doctype/page/page.py:62
msgid "Not in Developer Mode"
msgstr "Tidak dalam Mode Developer"
-#: core/doctype/doctype/doctype.py:332
+#: frappe/core/doctype/doctype/doctype.py:330
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Tidak dalam Mode Pengembang! Diatur dalam site_config.json atau membuat DOCTYPE 'Custom'."
-#: api/v1.py:88 api/v1.py:93
-#: core/doctype/system_settings/system_settings.py:199 handler.py:109
-#: public/js/frappe/request.js:157 public/js/frappe/request.js:167
-#: public/js/frappe/request.js:172
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:68
-#: website/doctype/web_form/web_form.py:616 website/js/website.js:97
+#: frappe/core/doctype/system_settings/system_settings.py:215
+#: frappe/public/js/frappe/request.js:159
+#: frappe/public/js/frappe/request.js:170
+#: frappe/public/js/frappe/request.js:175
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749
+#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Tidak diperbolehkan"
-#: public/js/frappe/list/list_view.js:45
+#: frappe/public/js/frappe/list/list_view.js:50
msgid "Not permitted to view {0}"
msgstr "Tidak diizinkan untuk melihat {0}"
-#. Name of a DocType
-#: automation/doctype/auto_repeat/auto_repeat.py:395
-#: desk/doctype/note/note.json
-msgid "Note"
-msgstr "Catatan"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Note"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/note/note.json
msgid "Note"
msgstr "Catatan"
#. Name of a DocType
-#: desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
msgid "Note Seen By"
msgstr "Catatan Dilihat Oleh"
-#: www/confirm_workflow_action.html:8
+#: frappe/www/confirm_workflow_action.html:8
msgid "Note:"
msgstr "catatan:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Catatan: Secara default email untuk cadangan gagal dikirim."
-
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Catatan: Secara default email untuk cadangan gagal dikirim."
-
-#: public/js/frappe/utils/utils.js:775
+#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Catatan: Mengubah Nama Halaman akan mematahkan URL sebelumnya ke halaman ini."
-#: core/doctype/user/user.js:25
+#: frappe/core/doctype/user/user.js:35
msgid "Note: Etc timezones have their signs reversed."
msgstr ""
#. Description of the 'sb0' (Section Break) field in DocType 'Website
#. Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Note: For best results, images must be of the same size and width must be greater than height."
-msgstr "Catatan: Untuk hasil terbaik, gambar harus memiliki ukuran dan lebar yang sama harus lebih besar dari tinggi."
+msgstr ""
#. Description of the 'Allow only one session per user' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Note: Multiple sessions will be allowed in case of mobile device"
-msgstr "Catatan: Beberapa sesi akan diizinkan dalam kasus perangkat mobile"
+msgstr ""
-#: website/web_form/request_to_delete_data/request_to_delete_data.js:8
+#: frappe/core/doctype/user/user.js:393
+msgid "Note: This will be shared with user."
+msgstr ""
+
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8
msgid "Note: Your request for account deletion will be fulfilled within {0} hours."
msgstr ""
-#: core/doctype/data_export/exporter.py:183
+#: frappe/core/doctype/data_export/exporter.py:183
msgid "Notes:"
msgstr "Catatan:"
-#: public/js/frappe/form/undo_manager.js:43
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "Nothing New"
+msgstr ""
+
+#: frappe/public/js/frappe/form/undo_manager.js:43
msgid "Nothing left to redo"
msgstr ""
-#: public/js/frappe/form/undo_manager.js:33
+#: frappe/public/js/frappe/form/undo_manager.js:33
msgid "Nothing left to undo"
msgstr ""
-#: public/js/frappe/list/base_list.js:359 templates/includes/list/list.html:7
-#: website/doctype/blog_post/templates/blog_post_list.html:41
+#: frappe/public/js/frappe/list/base_list.js:372
+#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/templates/includes/list/list.html:9
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41
+#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
msgstr "Tidak ada yang menunjukkan"
-#: core/doctype/user_permission/user_permission_list.js:129
+#: frappe/core/doctype/user_permission/user_permission_list.js:129
msgid "Nothing to update"
msgstr "Tidak ada yang diperbarui"
-#. Name of a DocType
-#: core/doctype/communication/mixins.py:142
-#: email/doctype/notification/notification.json
-msgid "Notification"
-msgstr "Pemberitahuan"
-
-#. Label of a Section Break field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Notification"
-msgstr "Pemberitahuan"
-
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Notification"
-msgstr "Pemberitahuan"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Notification"
-msgstr "Pemberitahuan"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Notification"
-msgstr "Pemberitahuan"
-
+#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Notification"
-msgid "Notification"
-msgstr "Pemberitahuan"
-
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/email/doctype/notification/notification.json
msgid "Notification"
msgstr "Pemberitahuan"
#. Name of a DocType
-#: desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Notification Log"
msgstr "Log Pemberitahuan"
#. Name of a DocType
-#: email/doctype/notification_recipient/notification_recipient.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Notification Recipient"
msgstr "Penerima Pemberitahuan"
-#. Name of a DocType
-#: desk/doctype/notification_settings/notification_settings.json
-#: public/js/frappe/ui/notifications/notifications.js:36
-msgid "Notification Settings"
-msgstr "Pengaturan pemberitahuan"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Notification Settings"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:37
msgid "Notification Settings"
msgstr "Pengaturan pemberitahuan"
#. Name of a DocType
-#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json
+#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
msgid "Notification Subscribed Document"
msgstr "Pemberitahuan Dokumen Berlangganan"
-#: public/js/frappe/ui/notifications/notifications.js:49
-#: public/js/frappe/ui/notifications/notifications.js:180
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
+msgid "Notification sent to"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:500
+msgid "Notification: customer {0} has no Mobile number set"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:486
+msgid "Notification: document {0} has no {1} number set (field: {2})"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:495
+msgid "Notification: user {0} has no Mobile number set"
+msgstr ""
+
+#. Label of the notifications (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:50
+#: frappe/public/js/frappe/ui/notifications/notifications.js:187
msgid "Notifications"
msgstr "Pemberitahuan"
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Notifications"
-msgstr "Pemberitahuan"
+#: frappe/public/js/frappe/ui/notifications/notifications.js:299
+msgid "Notifications Disabled"
+msgstr ""
#. Description of the 'Default Outgoing' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr "Pemberitahuan dan kiriman bulk akan dikirim dari server keluar ini."
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the notify_on_every_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Notify Users On Every Login"
-msgstr "Beritahu Pengguna Pada Setiap Login"
+msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Notify by Email"
-msgstr "Beri tahu melalui Email"
+msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
+#. Label of the notify_by_email (Check) field in DocType 'DocShare'
+#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr "Beritahu melalui Surel"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied"
-msgstr "Beritahu jika unreplied"
+msgstr ""
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied for (in mins)"
-msgstr "Beritahu jika unreplied untuk (dalam menit)"
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the notify_on_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Notify users with a popup when they log in"
-msgstr "Memberitahu pengguna dengan popup ketika mereka login"
+msgstr ""
-#: public/js/frappe/form/controls/datetime.js:25
-#: public/js/frappe/form/controls/time.js:37
+#: frappe/public/js/frappe/form/controls/datetime.js:28
+#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
msgstr "Sekarang"
-#. Label of a Data field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the phone (Data) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Jumlah"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/number_card/number_card.json
-#: public/js/frappe/widgets/widget_dialog.js:591
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "Kartu Nomor"
#. Name of a DocType
-#: desk/doctype/number_card_link/number_card_link.json
+#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Number Card Link"
msgstr "Tautan Kartu Nomor"
-#. Label of a Link field in DocType 'Workspace Number Card'
-#: desk/doctype/workspace_number_card/workspace_number_card.json
-msgctxt "Workspace Number Card"
+#. Label of the number_card_name (Link) field in DocType 'Workspace Number
+#. Card'
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Number Card Name"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:621
+#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the number_cards (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "Kartu Nomor"
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Number Cards"
-msgstr "Kartu Nomor"
-
-#. Label of a Select field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the number_format (Select) field in DocType 'Language'
+#. Label of the number_format (Select) field in DocType 'System Settings'
+#. Label of the number_format (Select) field in DocType 'Currency'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr "Nomor Format"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Number Format"
-msgstr "Nomor Format"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the backup_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of Backups"
-msgstr "Jumlah Cadangan"
+msgstr ""
-#. Label of a Int field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Number of DB Backups"
-msgstr "Jumlah Pencadangan DB"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:53
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Jumlah cadangan DB tidak boleh kurang dari 1"
-
-#. Label of a Int field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
-msgstr "Jumlah Grup"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the number_of_queries (Int) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Number of Queries"
msgstr ""
-#: core/doctype/doctype/doctype.py:444 public/js/frappe/doctype/index.js:59
+#: frappe/core/doctype/doctype/doctype.py:442
+#: frappe/public/js/frappe/doctype/index.js:59
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)"
-msgstr "Jumlah kolom untuk lapangan di Grid (Jumlah Kolom dalam kotak harus kurang dari 11)"
-
-#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Jumlah kolom untuk bidang dalam Daftar View atau Grid (Jumlah Kolom harus kurang dari 11)"
+msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Jumlah kolom untuk bidang dalam Daftar View atau Grid (Jumlah Kolom harus kurang dari 11)"
+msgstr ""
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of days after which the document Web View link shared on email will be expired"
msgstr ""
+#. Label of the cache_keys (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of keys"
+msgstr ""
+
+#. Label of the onsite_backups (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of onsite backups"
+msgstr ""
+
#. Option for the 'Method' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "OAuth"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "OAuth Authorization Code"
msgstr "Kode Otorisasi OAuth"
#. Name of a DocType
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "OAuth Bearer Token"
msgstr "OAuth Pembawa Token"
#. Name of a DocType
-#: integrations/doctype/oauth_client/oauth_client.json
-msgid "OAuth Client"
-msgstr "OAuth Klien"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Client"
msgstr "OAuth Klien"
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "ID Klien OAuth"
+msgstr ""
-#: email/oauth.py:31
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+msgid "OAuth Client Role"
+msgstr ""
+
+#: frappe/email/oauth.py:30
msgid "OAuth Error"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgid "OAuth Provider Settings"
-msgstr "Pengaturan OAuth Provider"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "OAuth Provider Settings"
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Provider Settings"
msgstr "Pengaturan OAuth Provider"
#. Name of a DocType
-#: integrations/doctype/oauth_scope/oauth_scope.json
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "OAuth Scope"
msgstr ""
-#: email/doctype/email_account/email_account.js:187
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "OAuth Settings"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
-#: templates/includes/oauth_confirmation.html:39
-msgid "OK"
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "OPTIONS"
msgstr ""
-#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "OPTIONS"
+#: frappe/public/js/form_builder/components/Tabs.vue:190
+msgid "OR"
msgstr ""
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "Apl OTP"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Nama Emiten OTP"
+msgstr ""
-#: twofactor.py:468
+#: frappe/twofactor.py:445
msgid "OTP Secret Reset - {0}"
msgstr ""
-#: twofactor.py:487
+#: frappe/twofactor.py:464
msgid "OTP Secret has been reset. Re-registration will be required on next login."
msgstr "OTP Secret telah di-reset. Registrasi ulang akan diminta pada login berikutnya."
+#: frappe/templates/includes/login/login.js:355
+msgid "OTP setup using OTP App was not completed. Please contact Administrator."
+msgstr ""
+
+#. Label of the occurrences (Int) field in DocType 'System Health Report
+#. Errors'
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+msgid "Occurrences"
+msgstr ""
+
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "Mati"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr "Kantor"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Office 365"
-msgstr "Kantor 365"
+msgstr ""
-#. Label of a Int field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/core/doctype/server_script/server_script.js:36
+msgid "Official Documentation"
+msgstr ""
+
+#. Label of the offset_x (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset X"
msgstr ""
-#. Label of a Int field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
msgstr ""
-#: www/update-password.html:15
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
+#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Password Lama"
-#: custom/doctype/custom_field/custom_field.py:362
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Old and new fieldnames are same."
msgstr ""
#. Description of the 'Number of Backups' (Int) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr "Cadangan yang lebih tua akan dihapus secara otomatis"
+msgstr ""
+
+#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Oldest Unscheduled Job"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "On Hold"
-msgstr ""
+msgstr "Tertahan"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Authorization"
msgstr ""
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Failed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Acquisition Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Paid"
+msgstr ""
+
#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "On checking this option, URL will be treated like a jinja template string"
msgstr ""
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/public/js/frappe/ui/filters/filter.js:66
+#: frappe/public/js/frappe/ui/filters/filter.js:72
+msgid "On or After"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:65
+#: frappe/public/js/frappe/ui/filters/filter.js:71
+msgid "On or Before"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:963
+msgid "On {0}, {1} wrote:"
+msgstr ""
+
+#. Label of the onboard (Check) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
+#: frappe/public/js/frappe/widgets/widget_dialog.js:232
+msgid "Onboarding Name"
+msgstr ""
+
#. Name of a DocType
-#: desk/doctype/onboarding_permission/onboarding_permission.json
+#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
msgid "Onboarding Permission"
msgstr "Izin Orientasi"
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the onboarding_status (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Onboarding Status"
msgstr ""
#. Name of a DocType
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgid "Onboarding Step"
-msgstr "Langkah Orientasi"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Onboarding Step"
msgstr "Langkah Orientasi"
#. Name of a DocType
-#: desk/doctype/onboarding_step_map/onboarding_step_map.json
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Onboarding Step Map"
msgstr "Peta Langkah Orientasi"
-#: public/js/frappe/widgets/onboarding_widget.js:269
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:264
msgid "Onboarding complete"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:28
-msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
-msgstr "Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah."
-
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:42
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah."
-#: www/complete_signup.html:7
+#: frappe/core/page/permission_manager/permission_manager_help.html:35
+msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
+msgstr ""
+
+#: frappe/www/complete_signup.html:7
msgid "One Last Step"
msgstr "Satu Langkah terakhir"
-#: twofactor.py:283
+#: frappe/twofactor.py:278
msgid "One Time Password (OTP) Registration Code from {}"
msgstr "Kode Pendaftaran One Time Password (OTP) dari {}"
-#: core/doctype/data_export/exporter.py:331
+#: frappe/core/doctype/data_export/exporter.py:331
msgid "One of"
msgstr "Satu dari"
-#: public/js/frappe/views/workspace/workspace.js:1312
-msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving"
-msgstr ""
-
-#: client.py:213
+#: frappe/client.py:213
msgid "Only 200 inserts allowed in one request"
msgstr "Hanya 200 sisipan diperbolehkan dalam satu permintaan"
-#: email/doctype/email_queue/email_queue.py:80
+#: frappe/email/doctype/email_queue/email_queue.py:87
msgid "Only Administrator can delete Email Queue"
msgstr "Hanya Administrator dapat menghapus Antrian Surel"
-#: core/doctype/page/page.py:66
+#: frappe/core/doctype/page/page.py:66
msgid "Only Administrator can edit"
msgstr "Hanya Administrator dapat mengedit"
-#: core/doctype/report/report.py:71
+#: frappe/core/doctype/report/report.py:75
msgid "Only Administrator can save a standard report. Please rename and save."
msgstr "Hanya Administrator dapat menyimpan laporan standar. Silahkan mengubah nama dan simpan."
-#: recorder.py:234
+#: frappe/recorder.py:314
msgid "Only Administrator is allowed to use Recorder"
msgstr "Hanya Administrator yang diizinkan menggunakan Perekam"
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the allow_edit (Link) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Only Allow Edit For"
-msgstr "Hanya Izinkan Sunting Untuk"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1561
+#: frappe/core/doctype/doctype/doctype.py:1620
msgid "Only Options allowed for Data field are:"
msgstr "Hanya Opsi yang diperbolehkan untuk bidang Data adalah:"
-#. Label of a Int field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Only Send Records Updated in Last X Hours"
-msgstr "Hanya Kirim Data yang Diperbarui pada X Jam Terakhir"
+msgstr ""
-#: desk/doctype/workspace/workspace.js:36
+#: frappe/desk/doctype/workspace/workspace.js:32
msgid "Only Workspace Manager can edit public workspaces"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:536
-msgid "Only Workspace Manager can sort or edit this page"
-msgstr ""
-
-#: modules/utils.py:66
+#: frappe/modules/utils.py:65
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Only change this if you want to use other S3 compatible object storage backends."
+#: frappe/model/document.py:1235
+msgid "Only draft documents can be discarded"
msgstr ""
-#. Label of a Link field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the only_for (Link) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
-#: core/doctype/data_export/exporter.py:194
+#: frappe/core/doctype/data_export/exporter.py:192
msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish."
msgstr "Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus kolom non-wajib jika Anda inginkan."
-#: contacts/doctype/contact/contact.py:129
-#: contacts/doctype/contact/contact.py:153
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact/contact.py:158
msgid "Only one {0} can be set as primary."
msgstr "Hanya satu {0} yang dapat ditetapkan sebagai utama."
-#: desk/reportview.py:319
+#: frappe/desk/reportview.py:357
msgid "Only reports of type Report Builder can be deleted"
msgstr ""
-#: desk/reportview.py:290
+#: frappe/desk/reportview.py:328
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:124
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
msgstr "Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi."
-#: desk/form/assign_to.py:181
+#: frappe/model/delete_doc.py:241
+msgid "Only the Administrator can delete a standard DocType."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:198
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:54
-msgid "Only users involved in the document are listed"
-msgstr "Hanya pengguna yang terlibat dalam dokumen yang terdaftar"
-
-#: email/doctype/auto_email_report/auto_email_report.py:100
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: core/doctype/deleted_document/deleted_document.js:7
+#: frappe/templates/includes/login/login.js:291
+msgid "Oops! Something went wrong."
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Contact'
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#. Option for the 'Email Status' (Select) field in DocType 'Communication'
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'ToDo'
+#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/deleted_document/deleted_document.js:7
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Open"
msgstr "Buka"
-#: desk/doctype/todo/todo_list.js:20
+#: frappe/desk/doctype/todo/todo_list.js:14
msgctxt "Access"
msgid "Open"
msgstr "Buka"
-#. Option for the 'Status' (Select) field in DocType 'Communication'
-#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Open"
-msgstr "Buka"
-
-#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Open"
-msgstr "Buka"
-
-#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Open"
-msgstr "Buka"
-
-#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Open"
-msgstr "Buka"
-
-#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Open"
-msgstr "Buka"
-
-#: public/js/frappe/ui/keyboard.js:202
+#: frappe/public/js/frappe/ui/keyboard.js:207
+#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
msgstr "Buka Awesomebar"
-#: templates/emails/new_notification.html:10
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97
+msgid "Open Communication"
+msgstr ""
+
+#: frappe/templates/emails/new_notification.html:10
msgid "Open Document"
msgstr "Buka Dokumen"
-#. Label of a Table MultiSelect field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the subscribed_documents (Table MultiSelect) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Buka Dokumen"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:237
+#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
msgstr "Buka Bantuan"
-#. Label of a Button field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the open_reference_document (Button) field in DocType 'Notification
+#. Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Buka Dokumen Referensi"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:220
+#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
msgstr "Buka Pengaturan"
-#. Label of a Check field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Open Source Applications for the Web"
+msgstr ""
+
+#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Open URL in a New Tab"
-msgstr "Buka URL di Tab Baru"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Open a dialog with mandatory fields to create a new record quickly"
-msgstr "Buka dialog dengan bidang wajib untuk membuat catatan baru dengan cepat"
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:176
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176
msgid "Open a module or tool"
msgstr "Buka modul atau alat"
-#: public/js/frappe/list/list_view.js:1187
+#: frappe/public/js/frappe/ui/keyboard.js:366
+msgid "Open console"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Preview.vue:17
+msgid "Open in a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1288
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Buka item daftar"
-#: www/qrcode.html:13
+#: frappe/core/doctype/error_log/error_log.js:15
+msgid "Open reference document"
+msgstr ""
+
+#: frappe/www/qrcode.html:13
msgid "Open your authentication app on your mobile phone."
msgstr "Buka aplikasi autentikasi Anda di ponsel Anda."
-#: desk/doctype/todo/todo_list.js:23
-#: public/js/frappe/ui/toolbar/search_utils.js:261
-#: public/js/frappe/ui/toolbar/search_utils.js:262
-#: public/js/frappe/ui/toolbar/search_utils.js:273
-#: public/js/frappe/ui/toolbar/search_utils.js:283
-#: public/js/frappe/ui/toolbar/search_utils.js:292
-#: public/js/frappe/ui/toolbar/search_utils.js:310
-#: public/js/frappe/ui/toolbar/search_utils.js:311
-#: social/doctype/energy_point_log/energy_point_log_list.js:23
+#: frappe/desk/doctype/todo/todo_list.js:17
+#: frappe/public/js/frappe/form/templates/form_links.html:18
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
msgid "Open {0}"
msgstr "Terbuka {0}"
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the openid_configuration (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr "Dibuka"
+msgstr ""
-#. Label of a Select field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the operation (Select) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Operation"
msgstr "Operasi"
-#: utils/data.py:2063
+#: frappe/utils/data.py:2128
msgid "Operator must be one of {0}"
msgstr "Operator harus menjadi salah satu dari {0}"
-#: core/doctype/file/file.js:24
+#: frappe/core/doctype/file/file.js:34
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28
msgid "Optimize"
msgstr ""
-#: core/doctype/file/file.js:89
+#: frappe/core/doctype/file/file.js:106
msgid "Optimizing image..."
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:100
+#: frappe/custom/doctype/custom_field/custom_field.js:100
msgid "Option 1"
msgstr "Pilihan 1"
-#: custom/doctype/custom_field/custom_field.js:102
+#: frappe/custom/doctype/custom_field/custom_field.js:102
msgid "Option 2"
msgstr "Opsi 2"
-#: custom/doctype/custom_field/custom_field.js:104
+#: frappe/custom/doctype/custom_field/custom_field.js:104
msgid "Option 3"
msgstr "Opsi 3"
-#: core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1638
msgid "Option {0} for field {1} is not a child table"
msgstr "Opsi {0} untuk bidang {1} bukan tabel anak"
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr "Opsi: Selalu kirim ke ID ini. Setiap Alamat Email pada baris baru"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Opsional: pemberitahuan akan dikirim jika persamaan ini benar"
+msgstr ""
-#. Label of a Small Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the options (Small Text) field in DocType 'DocField'
+#. Label of the options (Data) field in DocType 'Report Column'
+#. Label of the options (Small Text) field in DocType 'Report Filter'
+#. Label of the options (Small Text) field in DocType 'Custom Field'
+#. Label of the options (Small Text) field in DocType 'Customize Form Field'
+#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/templates/form_grid/fields.html:43
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
-msgstr "Pilihan"
+msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Options"
-msgstr "Pilihan"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Options"
-msgstr "Pilihan"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Options"
-msgstr "Pilihan"
-
-#. Label of a Small Text field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Options"
-msgstr "Pilihan"
-
-#. Label of a Text field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Options"
-msgstr "Pilihan"
-
-#. Label of a Small Text field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Options"
-msgstr "Pilihan"
-
-#: core/doctype/doctype/doctype.py:1317
+#: frappe/core/doctype/doctype/doctype.py:1366
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Jenis Options 'Dynamic Link' lapangan harus mengarah ke Link Field lain dengan pilihan sebagai 'DocType'"
-#. Label of a HTML field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the options_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Pilihan Bantuan"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1601
+#: frappe/core/doctype/doctype/doctype.py:1660
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:96
+#: frappe/custom/doctype/custom_field/custom_field.js:96
msgid "Options for select. Each option on a new line."
msgstr "Pilihan untuk pilih. Setiap opsi pada baris baru."
-#: core/doctype/doctype/doctype.py:1334
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "Options for {0} must be set before setting the default value."
msgstr "Opsi untuk {0} harus disetel sebelum menyetel nilai bawaan."
-#: public/js/form_builder/store.js:177
+#: frappe/public/js/form_builder/store.js:182
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: model/base_document.py:767
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "Pilihan tidak diatur untuk bidang tautan {0}"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Orange"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Orange"
msgstr ""
-#. Label of a Code field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#. Label of the order (Code) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Order"
-msgstr "Memesan"
+msgstr ""
-#. Label of a Section Break field in DocType 'About Us Settings'
-#. Label of a Table field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
+#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
+#. Label of the company_history (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History"
-msgstr "Org Sejarah"
+msgstr ""
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the company_history_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History Heading"
-msgstr "Org Sejarah Pos"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:26
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "Orientation"
msgstr "Orientasi"
+#: frappe/core/doctype/version/version_view.html:13
+#: frappe/core/doctype/version/version_view.html:75
+msgid "Original Value"
+msgstr ""
+
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Other"
-msgstr "Lain-lain"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Other"
-msgstr "Lain-lain"
-
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Other"
-msgstr "Lain-lain"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Lain-lain"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Outgoing"
+msgstr "Keluaran"
+
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing (SMTP) Settings"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Outgoing Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the smtp_server (Data) field in DocType 'Email Account'
+#. Label of the smtp_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
msgstr ""
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Outgoing Server"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Settings"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:33
+#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
msgstr "Akun email keluar tidak benar"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Outlook.com"
-msgstr "Outlook.com"
+msgstr ""
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the output (Code) field in DocType 'Permission Inspector'
+#. Label of the output (Code) field in DocType 'System Console'
+#. Label of the output (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr "Keluaran"
+msgstr ""
-#. Label of a Code field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "Output"
-msgstr "Keluaran"
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
+msgid "Overview"
+msgstr ""
-#. Label of a Code field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Output"
-msgstr "Keluaran"
-
-#: core/report/transaction_log_report/transaction_log_report.py:100
-#: social/doctype/energy_point_rule/energy_point_rule.js:42
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:100
msgid "Owner"
msgstr "Pemilik"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "PATCH"
msgstr ""
-#: printing/page/print/print.js:71
-#: public/js/frappe/views/reports/query_report.js:1637
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/page/print/print.js:71
+#: frappe/public/js/frappe/form/templates/print_layout.html:44
+#: frappe/public/js/frappe/views/reports/query_report.js:1794
msgid "PDF"
-msgstr "PDF"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+msgid "PDF Generation in Progress"
+msgstr ""
+
+#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "PDF Generator"
+msgstr ""
+
+#. Label of the pdf_page_height (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Height (in mm)"
msgstr ""
-#. Label of a Select field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "PDF Page Size"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Pengaturan PDF"
+msgstr ""
-#: utils/print_format.py:177
+#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
msgstr "Generasi PDF gagal"
-#: utils/pdf.py:95
+#: frappe/utils/pdf.py:106
msgid "PDF generation failed because of broken image links"
msgstr "Generasi PDF gagal karena link gambar rusak"
-#: printing/page/print/print.js:524
+#: frappe/printing/page/print/print.js:616
+msgid "PDF generation may not work as expected."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:534
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the pid (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "PID"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "POST"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "POST"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "PUT"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "PUT"
msgstr ""
+#. Label of the package (Link) field in DocType 'Module Def'
#. Name of a DocType
-#: core/doctype/package/package.json
-msgid "Package"
-msgstr ""
-
-#. Label of a Link field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Package"
-msgstr ""
-
+#. Label of the package (Link) field in DocType 'Package Release'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Package"
-msgid "Package"
-msgstr ""
-
-#. Label of a Link field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34
msgid "Package"
msgstr ""
#. Name of a DocType
-#: core/doctype/package_import/package_import.json
-msgid "Package Import"
-msgstr ""
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Package Import"
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/workspace/build/build.json
msgid "Package Import"
msgstr ""
-#. Label of a Data field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the package_name (Data) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "Package Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/package_release/package_release.json
-msgid "Package Release"
-msgstr ""
-
-#. Linked DocType in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package_release/package_release.json
msgid "Package Release"
msgstr ""
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "Packages"
msgstr ""
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI"
+msgstr ""
+
+#. Label of the page (Link) field in DocType 'Custom Role'
#. Name of a DocType
-#: core/doctype/page/page.json
-msgid "Page"
-msgstr "Halaman"
-
-#. Label of a Link field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Page"
-msgstr "Halaman"
-
-#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Page"
-msgstr "Halaman"
-
#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
#. Page and Report'
-#. Label of a Link field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Page"
-msgstr "Halaman"
-
+#. Label of the page (Link) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of a Link in the Build Workspace
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Page"
-msgstr "Halaman"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Page"
msgstr "Halaman"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Page Break"
msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Page Builder"
-msgstr "Pembuat Halaman"
+msgstr ""
-#. Label of a Table field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the page_blocks (Table) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Page Building Blocks"
-msgstr "Blok Penyusun Halaman"
+msgstr ""
-#. Label of a Section Break field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the page_html (Section Break) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr "Halaman HTML"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:64
+#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
msgstr ""
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Page Name"
-msgstr "Nama Halaman"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5
+msgid "Page Margins"
+msgstr ""
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the page_name (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
+msgid "Page Name"
+msgstr ""
+
+#. Label of the page_number (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63
msgid "Page Number"
msgstr ""
-#. Label of a Small Text field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the page_route (Small Text) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Page Route"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1499
-msgid "Page Saved Successfully"
+#. Label of the view_link_in_email (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Page Settings"
msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Page Settings"
-msgstr "Pengaturan halaman"
-
-#: public/js/frappe/ui/keyboard.js:121
+#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
msgstr "Pintasan Halaman"
-#: public/js/frappe/list/bulk_operations.js:57
+#: frappe/public/js/frappe/list/bulk_operations.js:66
msgid "Page Size"
msgstr ""
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the page_title (Data) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Page Title"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:71
+#: frappe/public/js/frappe/list/bulk_operations.js:80
msgid "Page Width (in mm)"
msgstr ""
-#: www/qrcode.py:35
+#: frappe/www/qrcode.py:35
msgid "Page has expired!"
msgstr "Halaman telah kedaluwarsa!"
-#: printing/doctype/print_settings/print_settings.py:71
-#: public/js/frappe/list/bulk_operations.js:90
+#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
-#: public/js/frappe/views/container.js:52
+#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23
msgid "Page not found"
msgstr "Halaman tidak ditemukan"
-#: public/js/frappe/views/workspace/workspace.js:1299
-msgid "Page with title {0} already exist."
+#. Description of a DocType
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Page to show on the website\n"
msgstr ""
-#: public/js/frappe/web_form/web_form.js:264
-#: templates/print_formats/standard.html:34
+#: frappe/public/html/print_template.html:25
+#: frappe/public/js/frappe/views/reports/print_tree.html:89
+#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Halaman {0} dari {1}"
-#. Label of a Data field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
+#. Label of the parameter (Data) field in DocType 'SMS Parameter'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "Parameter"
-msgstr "Parameter"
+msgstr ""
-#: public/js/frappe/model/model.js:132
-#: public/js/frappe/views/workspace/workspace.js:606
-#: public/js/frappe/views/workspace/workspace.js:934
-#: public/js/frappe/views/workspace/workspace.js:1181
+#: frappe/public/js/frappe/model/model.js:142
+#: frappe/public/js/frappe/views/workspace/workspace.js:434
msgid "Parent"
msgstr "Induk"
-#. Label of a Link field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
msgstr ""
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the parent_document_type (Link) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
msgstr ""
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Parent Document Type"
-msgstr ""
-
-#: desk/doctype/number_card/number_card.py:61
+#: frappe/desk/doctype/number_card/number_card.py:65
msgid "Parent Document Type is required to create a number card"
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the parent_element_selector (Data) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Element Selector"
msgstr ""
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Field"
msgstr ""
-#: core/doctype/doctype/doctype.py:915
+#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype.py:933
msgid "Parent Field (Tree)"
msgstr "Bidang Induk (Pohon)"
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Parent Field (Tree)"
-msgstr "Bidang Induk (Pohon)"
-
-#: core/doctype/doctype/doctype.py:921
+#: frappe/core/doctype/doctype/doctype.py:939
msgid "Parent Field must be a valid fieldname"
msgstr "Bidang Induk harus nama bidang yang valid"
-#. Label of a Select field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#. Label of the parent_label (Select) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Parent Label"
-msgstr "Induk Label"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1148
+#: frappe/core/doctype/doctype/doctype.py:1197
msgid "Parent Missing"
msgstr ""
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the parent_page (Link) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Parent Page"
msgstr ""
-#: core/doctype/data_export/exporter.py:24
+#: frappe/core/doctype/data_export/exporter.py:24
msgid "Parent Table"
msgstr "Induk Tabel"
-#: desk/doctype/dashboard_chart/dashboard_chart.py:404
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
msgid "Parent document type is required to create a dashboard chart"
msgstr ""
-#: core/doctype/data_export/exporter.py:255
+#: frappe/core/doctype/data_export/exporter.py:253
msgid "Parent is the name of the document to which the data will get added to."
msgstr "Induk adalah nama dokumen yang akan ditambahkan datanya."
-#: permissions.py:806
+#: frappe/public/js/frappe/ui/group_by/group_by.js:253
+msgid "Parent-to-child or child-to-different-child grouping is not allowed."
+msgstr ""
+
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: client.py:476
+#: frappe/client.py:467
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
-#. Label of a Check field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Partial"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Partial Success"
-msgstr "Sukses Partial"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Partially Sent"
msgstr ""
-#: desk/doctype/event/event.js:30
+#. Label of the participants (Section Break) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Para peserta"
-#. Label of a Section Break field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Participants"
-msgstr "Para peserta"
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pass"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Pasif"
-
-#: core/doctype/user/user.js:154 core/doctype/user/user.js:201
-#: core/doctype/user/user.js:221 desk/page/setup_wizard/setup_wizard.js:474
-#: www/login.html:21
-msgid "Password"
-msgstr "Kata sandi"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Password"
-msgstr "Kata sandi"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Password"
-msgstr "Kata sandi"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Password"
-msgstr "Kata sandi"
-
-#. Label of a Password field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Password"
-msgstr "Kata sandi"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Password"
-msgstr "Kata sandi"
-
+#. Label of the password_settings (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the password_tab (Tab Break) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the password (Password) field in DocType 'Email Account'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219
+#: frappe/core/doctype/user/user.js:239
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:493
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/www/login.html:22
msgid "Password"
msgstr "Kata sandi"
-#: core/doctype/user/user.py:1036
+#: frappe/core/doctype/user/user.py:1085
msgid "Password Email Sent"
msgstr ""
-#: core/doctype/user/user.py:418
+#: frappe/core/doctype/user/user.py:459
msgid "Password Reset"
-msgstr "Password Reset"
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr "Batas Pembuatan Tautan Setel Ulang Sandi"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:790
+#: frappe/public/js/frappe/form/grid_row.js:880
msgid "Password cannot be filtered"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:358
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357
msgid "Password changed successfully."
msgstr "Kata sandi berhasil diubah."
-#. Label of a Password field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the password (Password) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Password for Base DN"
-msgstr "Sandi untuk Base DN"
+msgstr ""
-#: email/doctype/email_account/email_account.py:165
+#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
msgstr "Sandi diperlukan atau pilih Menunggu sandi"
-#: public/js/frappe/desk.js:191
+#: frappe/public/js/frappe/desk.js:212
msgid "Password missing in Email Account"
msgstr ""
-#: utils/password.py:42
+#: frappe/utils/password.py:47
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: core/doctype/user/user.py:1035
-msgid "Password reset instructions have been sent to your email"
-msgstr "Instruksi atur ulang password telah dikirim ke email Anda"
+#: frappe/core/doctype/user/user.py:1084
+msgid "Password reset instructions have been sent to {}'s email"
+msgstr ""
-#: www/update-password.html:164
+#: frappe/www/update-password.html:191
msgid "Password set"
msgstr ""
-#: auth.py:239
+#: frappe/auth.py:258
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: core/doctype/user/user.py:828
+#: frappe/core/doctype/user/user.py:875
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: www/update-password.html:78
+#: frappe/www/update-password.html:93
msgid "Passwords do not match"
msgstr ""
-#: core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:205
msgid "Passwords do not match!"
msgstr "Sandi tidak cocok!"
-#: email/doctype/newsletter/newsletter.py:156
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
-#: public/js/frappe/views/file/file_view.js:151
+#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Pasta"
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the patch (Int) field in DocType 'Package Release'
+#. Label of the patch (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr "Tambalan"
-
-#. Label of a Code field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
-msgid "Patch"
-msgstr "Tambalan"
+msgstr ""
#. Name of a DocType
-#: core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch Log"
-msgstr "Patch Log"
+msgstr ""
-#: modules/patch_handler.py:137
+#: frappe/modules/patch_handler.py:136
msgid "Patch type {} not found in patches.txt"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:35
+#. Label of the path (Data) field in DocType 'API Request Log'
+#. Label of the path (Small Text) field in DocType 'Package Release'
+#. Label of the path (Data) field in DocType 'Recorder'
+#. Label of the path (Data) field in DocType 'Onboarding Step'
+#. Label of the path (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:35
msgid "Path"
msgstr "Jalan"
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Path"
-msgstr "Jalan"
-
-#. Label of a Small Text field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
-msgid "Path"
-msgstr "Jalan"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Path"
-msgstr "Jalan"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Path"
-msgstr "Jalan"
-
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to CA Certs File"
-msgstr "Path ke File CA Certs"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Jalur ke Sertifikat Server"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to private Key File"
-msgstr "Path ke File Kunci pribadi"
+msgstr ""
-#. Label of a Int field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/website/path_resolver.py:208
+msgid "Path {0} it not a valid path"
+msgstr ""
+
+#. Label of the payload_count (Int) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Payload Count"
msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Pending"
-msgstr "Menunggu"
+#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Peak Memory Usage"
+msgstr ""
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Pending"
-msgstr "Menunggu"
-
-#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Pending"
msgstr "Menunggu"
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "Menunggu persetujuan"
+msgstr ""
+
+#. Label of the pending_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pending Emails"
+msgstr ""
+
+#. Label of the pending_jobs (Int) field in DocType 'System Health Report
+#. Queue'
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "Pending Jobs"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "Verifikasi Tertunda"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Percent"
-msgstr "Persen"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Percent"
-msgstr "Persen"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Percent"
-msgstr "Persen"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Persentase"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Period"
msgstr "periode"
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the permlevel (Int) field in DocType 'DocField'
+#. Label of the permlevel (Int) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr "Perm Tingkat"
-
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Perm Level"
-msgstr "Perm Tingkat"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
-msgstr "Permanen"
+msgstr ""
-#: public/js/frappe/form/form.js:1047
+#: frappe/public/js/frappe/form/form.js:1028
msgid "Permanently Cancel {0}?"
msgstr "Permanen Batal {0}?"
-#: public/js/frappe/form/form.js:877
+#: frappe/public/js/frappe/form/form.js:1074
+msgid "Permanently Discard {0}?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:861
msgid "Permanently Submit {0}?"
msgstr "Kirim permanen {0}?"
-#: public/js/frappe/model/model.js:698
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "Secara permanen menghapus {0}?"
-#: core/doctype/user_type/user_type.py:83
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Kesalahan izin"
#. Name of a DocType
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Inspector"
-msgstr "Kesalahan izin"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:446
+#. Label of the permlevel (Int) field in DocType 'Custom Field'
+#: frappe/core/page/permission_manager/permission_manager.js:463
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Izin Tingkat"
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Permission Level"
-msgstr "Izin Tingkat"
+#: frappe/core/page/permission_manager/permission_manager_help.html:22
+msgid "Permission Levels"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Permission Log"
+msgstr ""
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
+#: frappe/core/workspace/users/users.json
msgid "Permission Manager"
msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
msgstr ""
-#. Label of a Section Break field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
+#. Label of the permission_rules (Section Break) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "Permission Rules"
-msgstr "Aturan Izin"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Permission Rules"
-msgstr "Aturan Izin"
-
-#. Label of a Select field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#. Label of the permission_type (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Type"
-msgstr "Aturan Izin"
+msgstr ""
+#. Label of the section_break_4 (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the permissions (Section Break) field in DocType 'DocField'
+#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm'
+#. Label of the permissions (Table) field in DocType 'DocType'
+#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
+#. Label of the permissions (Section Break) field in DocType 'System Settings'
#. Label of a Card Break in the Users Workspace
-#: core/doctype/user/user.js:129 core/doctype/user/user.js:138
-#: core/page/permission_manager/permission_manager.js:214
-#: core/workspace/users/users.json
+#. Label of the permissions (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:156
+#: frappe/core/page/permission_manager/permission_manager.js:221
+#: frappe/core/workspace/users/users.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Otorisasi"
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Permissions"
-msgstr "Otorisasi"
-
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Permissions"
-msgstr "Otorisasi"
-
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Permissions"
-msgstr "Otorisasi"
-
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Permissions"
-msgstr "Otorisasi"
-
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Permissions"
-msgstr "Otorisasi"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Permissions"
-msgstr "Otorisasi"
-
-#: core/doctype/doctype/doctype.py:1775 core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1834
+#: frappe/core/doctype/doctype/doctype.py:1844
msgid "Permissions Error"
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:10
+msgid "Permissions are automatically applied to Standard Reports and searches."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:5
+msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
+msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:24
+msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:6
+msgid "Permissions get applied on Users based on what Roles they are assigned."
+msgstr ""
+
#. Name of a report
#. Label of a Link in the Users Workspace
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.json
-#: core/workspace/users/users.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json
+#: frappe/core/workspace/users/users.json
msgid "Permitted Documents For User"
msgstr "Dokumen Diijinkan Untuk Pengguna"
-#. Label of a Table MultiSelect field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow
+#. Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Permitted Roles"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Pribadi"
+msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Personal Data Deletion Request"
msgstr "Permintaan Penghapusan Data Pribadi"
#. Name of a DocType
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Personal Data Deletion Step"
msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Personal Data Download Request"
msgstr "Permintaan Unduhan Data Pribadi"
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Phone"
-msgstr "Telepon"
-
+#. Label of the phone (Data) field in DocType 'Address'
+#. Label of the phone (Data) field in DocType 'Contact'
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Phone"
-msgstr "Telepon"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Phone"
-msgstr "Telepon"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Phone"
-msgstr "Telepon"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Phone"
-msgstr "Telepon"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Phone"
-msgstr "Telepon"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Phone"
-msgstr "Telepon"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Phone"
-msgstr "Telepon"
-
+#. Label of the phone (Data) field in DocType 'User'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Phone"
msgstr "Telepon"
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the phone_no (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
-msgstr "Nomor Telepon"
+msgstr ""
-#: utils/__init__.py:108
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: public/js/frappe/form/print_utils.js:38
-#: public/js/frappe/views/reports/report_view.js:1504
-#: public/js/frappe/views/reports/report_view.js:1507
+#: frappe/public/js/frappe/form/print_utils.js:53
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "Pilih Kolom"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Pai"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Pincode"
-msgstr "Kode PIN"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Pink"
msgstr ""
-#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Pink"
+#. Label of the placeholder (Data) field in DocType 'DocField'
+#. Label of the placeholder (Data) field in DocType 'Custom Field'
+#. Label of the placeholder (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Placeholder"
msgstr ""
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Plain Text"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr "Tanaman"
+msgstr ""
-#: email/oauth.py:30
+#: frappe/email/doctype/email_account/email_account.py:544
+msgid "Please Authorize OAuth for Email Account {0}"
+msgstr ""
+
+#: frappe/email/oauth.py:29
msgid "Please Authorize OAuth for Email Account {}"
msgstr ""
-#: website/doctype/website_theme/website_theme.py:79
+#: frappe/website/doctype/website_theme/website_theme.py:77
msgid "Please Duplicate this Website Theme to customize."
msgstr "Silakan Gandakan situs ini Tema untuk menyesuaikan."
-#: integrations/doctype/ldap_settings/ldap_settings.py:159
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Silakan Instal perpustakaan ldap3 melalui pip untuk menggunakan fungsionalitas ldap."
-#: public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:308
msgid "Please Set Chart"
msgstr "Silakan Tetapkan Bagan"
-#: core/doctype/sms_settings/sms_settings.py:84
+#: frappe/core/doctype/sms_settings/sms_settings.py:84
msgid "Please Update SMS Settings"
msgstr "Harap Perbarui Pengaturan SMS"
-#: automation/doctype/auto_repeat/auto_repeat.py:569
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582
msgid "Please add a subject to your email"
msgstr "Silakan tambahkan subjek ke email Anda"
-#: templates/includes/comments/comments.html:168
+#: frappe/templates/includes/comments/comments.html:168
msgid "Please add a valid comment."
msgstr "Harap tambahkan komentar yang valid."
-#: core/doctype/user/user.py:1017
+#: frappe/core/doctype/user/user.py:1067
msgid "Please ask your administrator to verify your sign-up"
msgstr "Minta administrator untuk memverifikasi Anda sign-up"
-#: public/js/frappe/form/controls/select.js:96
+#: frappe/public/js/frappe/form/controls/select.js:101
msgid "Please attach a file first."
msgstr "Harap melampirkan file pertama."
-#: printing/doctype/letter_head/letter_head.py:73
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: printing/doctype/letter_head/letter_head.py:61
+#: frappe/printing/doctype/letter_head/letter_head.py:64
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
-#: core/doctype/package_import/package_import.py:38
+#: frappe/core/doctype/package_import/package_import.py:39
msgid "Please attach the package"
msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:19
+#: frappe/integrations/doctype/connected_app/connected_app.js:19
msgid "Please check OpenID Configuration URL"
msgstr ""
-#: utils/dashboard.py:58
+#: frappe/utils/dashboard.py:58
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Silakan periksa nilai filter yang disetel untuk Dasbor: {}"
-#: model/base_document.py:839
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Harap periksa nilai set "Ambil Dari" untuk bidang {0}"
-#: core/doctype/user/user.py:1015
+#: frappe/core/doctype/user/user.py:1065
msgid "Please check your email for verification"
msgstr "Silahkan cek email Anda untuk verifikasi"
-#: email/smtp.py:131
+#: frappe/email/smtp.py:134
msgid "Please check your email login credentials."
msgstr ""
-#: twofactor.py:246
+#: frappe/twofactor.py:243
msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it."
msgstr "Silakan periksa alamat email terdaftar Anda untuk petunjuk cara melanjutkan. Jangan tutup jendela ini karena Anda harus kembali kesini."
-#: twofactor.py:291
+#: frappe/desk/doctype/workspace/workspace.js:23
+msgid "Please click Edit on the Workspace for best results"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:158
+msgid "Please click on 'Export Errored Rows', fix the errors and import again."
+msgstr ""
+
+#: frappe/twofactor.py:286
msgid "Please click on the following link and follow the instructions on the page. {0}"
msgstr ""
-#: templates/emails/password_reset.html:2
+#: frappe/templates/emails/password_reset.html:2
msgid "Please click on the following link to set your new password"
msgstr "Silahkan klik pada link berikut untuk mengatur password baru anda"
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:344
-msgid "Please close this window"
-msgstr "Tutup jendela ini"
-
-#: www/confirm_workflow_action.html:4
+#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "Harap konfirmasikan tindakan Anda ke {0} dokumen ini."
-#: core/doctype/server_script/server_script.js:33
-msgid "Please contact your system administrator to enable this feature."
+#: frappe/printing/page/print/print.js:618
+msgid "Please contact your system manager to install correct version."
msgstr ""
-#: desk/doctype/number_card/number_card.js:44
+#: frappe/desk/doctype/number_card/number_card.js:44
msgid "Please create Card first"
msgstr "Harap buat Kartu terlebih dahulu"
-#: desk/doctype/dashboard_chart/dashboard_chart.js:42
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42
msgid "Please create chart first"
msgstr "Harap buat grafik terlebih dahulu"
-#: desk/form/meta.py:209
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
-#: core/doctype/data_export/exporter.py:184
+#: frappe/core/doctype/data_export/exporter.py:184
msgid "Please do not change the template headings."
msgstr "Harap jangan mengubah judul Template."
-#: printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:18
msgid "Please duplicate this to make changes"
msgstr "Silakan duplikat ini untuk membuat perubahan"
-#: core/doctype/system_settings/system_settings.py:145
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
-#: desk/doctype/notification_log/notification_log.js:45
-#: email/doctype/auto_email_report/auto_email_report.js:17
-#: printing/page/print/print.js:611 printing/page/print/print.js:640
-#: public/js/frappe/list/bulk_operations.js:117
-#: public/js/frappe/utils/utils.js:1416
+#: frappe/desk/doctype/notification_log/notification_log.js:45
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
+#: frappe/printing/page/print/print.js:638
+#: frappe/printing/page/print/print.js:668
+#: frappe/public/js/frappe/list/bulk_operations.js:161
+#: frappe/public/js/frappe/utils/utils.js:1434
msgid "Please enable pop-ups"
msgstr "Aktifkan pop-up"
-#: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177
+#: frappe/public/js/frappe/microtemplate.js:162
+#: frappe/public/js/frappe/microtemplate.js:177
msgid "Please enable pop-ups in your browser"
msgstr "Harap aktifkan munculan di peramban Anda"
-#: integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
-#: utils/oauth.py:191
+#: frappe/utils/oauth.py:191
msgid "Please ensure that your profile has an email address"
msgstr "Pastikan bahwa profil Anda memiliki alamat email"
-#: integrations/doctype/social_login_key/social_login_key.py:73
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:83
msgid "Please enter Access Token URL"
msgstr "Harap masukkan URL Akses Token"
-#: integrations/doctype/social_login_key/social_login_key.py:71
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:81
msgid "Please enter Authorize URL"
msgstr "Harap masukkan Authorize URL"
-#: integrations/doctype/social_login_key/social_login_key.py:69
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:79
msgid "Please enter Base URL"
msgstr "Harap masukkan URL Base"
-#: integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:87
msgid "Please enter Client ID before social login is enabled"
msgstr "Harap masukkan ID Klien sebelum login sosial diaktifkan"
-#: integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:90
msgid "Please enter Client Secret before social login is enabled"
msgstr "Silakan masukkan Rahasia Klien sebelum login sosial diaktifkan"
-#: integrations/doctype/connected_app/connected_app.js:8
+#: frappe/integrations/doctype/connected_app/connected_app.js:8
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:75
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:85
msgid "Please enter Redirect URL"
msgstr "Masukkan URL Pengalihan"
-#: templates/includes/comments/comments.html:163
+#: frappe/templates/includes/comments/comments.html:163
msgid "Please enter a valid email address."
msgstr ""
-#: www/update-password.html:233
+#: frappe/templates/includes/contact.js:15
+msgid "Please enter both your email and message so that we can get back to you. Thanks!"
+msgstr ""
+
+#: frappe/www/update-password.html:259
msgid "Please enter the password"
msgstr "Masukkan password"
-#: public/js/frappe/desk.js:196
+#: frappe/public/js/frappe/desk.js:217
msgctxt "Email Account"
msgid "Please enter the password for: {0}"
msgstr ""
-#: core/doctype/sms_settings/sms_settings.py:42
+#: frappe/core/doctype/sms_settings/sms_settings.py:43
msgid "Please enter valid mobile nos"
msgstr "Entrikan nos ponsel yang valid"
-#: www/update-password.html:115
+#: frappe/www/update-password.html:142
msgid "Please enter your new password."
msgstr ""
-#: www/update-password.html:108
+#: frappe/www/update-password.html:135
msgid "Please enter your old password."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:401
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413
msgid "Please find attached {0}: {1}"
msgstr "Silakan temukan lampiran {0}: {1}"
-#: core/doctype/navbar_settings/navbar_settings.py:44
-msgid "Please hide the standard navbar items instead of deleting them"
-msgstr "Harap sembunyikan item navbar standar daripada menghapusnya"
-
-#: templates/includes/comments/comments.py:31
+#: frappe/templates/includes/comments/comments.py:31
msgid "Please login to post a comment."
msgstr ""
-#: core/doctype/communication/communication.py:210
+#: frappe/core/doctype/communication/communication.py:186
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Harap pastikan Dokumen Komunikasi Referensi tidak terhubung secara sirkuler."
-#: model/document.py:810
+#: frappe/model/document.py:988
msgid "Please refresh to get the latest document."
msgstr "Silahkan refresh untuk mendapatkan dokumen terbaru."
-#: printing/page/print/print.js:525
+#: frappe/printing/page/print/print.js:535
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: public/js/frappe/form/form.js:384
+#: frappe/public/js/frappe/form/form.js:358
msgid "Please save before attaching."
msgstr "Silakan simpan sebelum memasang."
-#: email/doctype/newsletter/newsletter.py:133
-msgid "Please save the Newsletter before sending"
-msgstr "Harap menyimpan Newsletter sebelum dikirim"
-
-#: public/js/frappe/form/sidebar/assign_to.js:51
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Silakan menyimpan dokumen sebelum penugasan"
-#: public/js/frappe/form/sidebar/assign_to.js:71
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:72
msgid "Please save the document before removing assignment"
msgstr "Silakan menyimpan dokumen sebelum mengeluarkan penugasan"
-#: public/js/frappe/views/reports/report_view.js:1614
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "Harap menyimpan laporan pertama"
-#: website/doctype/web_template/web_template.js:22
+#: frappe/website/doctype/web_template/web_template.js:22
msgid "Please save to edit the template."
msgstr "Harap simpan untuk mengedit template."
-#: desk/page/leaderboard/leaderboard.js:244
-msgid "Please select Company"
-msgstr "Silakan pilih Perusahaan"
-
-#: printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:30
msgid "Please select DocType first"
msgstr "Silakan pilih DOCTYPE pertama"
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
msgid "Please select Entity Type first"
msgstr "Silakan pilih Tipe Entitas terlebih dahulu"
-#: core/doctype/system_settings/system_settings.py:103
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "Harap pilih Skor Minimum Kata Sandi"
-#: utils/__init__.py:115
+#: frappe/public/js/frappe/views/reports/query_report.js:1184
+msgid "Please select X and Y fields"
+msgstr ""
+
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
-#: utils/file_manager.py:50
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506
+msgid "Please select a file first."
+msgstr ""
+
+#: frappe/utils/file_manager.py:50
msgid "Please select a file or url"
msgstr "Silahkan pilih file atau url"
-#: model/rename_doc.py:670
+#: frappe/model/rename_doc.py:685
msgid "Please select a valid csv file with data"
msgstr "Silakan pilih file csv dengan data yang valid"
-#: utils/data.py:285
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Pilih filter tanggal yang valid"
-#: core/doctype/user_permission/user_permission_list.js:203
+#: frappe/core/doctype/user_permission/user_permission_list.js:203
msgid "Please select applicable Doctypes"
msgstr "Silakan pilih DOCTYPE yang berlaku"
-#: model/db_query.py:1140
+#: frappe/model/db_query.py:1142
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group"
-#: core/doctype/document_naming_settings/document_naming_settings.py:215
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214
msgid "Please select prefix first"
msgstr "Silakan pilih awalan terlebih dahulu"
-#: core/doctype/data_export/data_export.js:42
+#: frappe/core/doctype/data_export/data_export.js:42
msgid "Please select the Document Type."
msgstr "Harap pilih Jenis Dokumen."
#. Description of the 'Directory Server' (Select) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Please select the LDAP Directory being used"
msgstr ""
-#: website/doctype/website_settings/website_settings.js:100
+#: frappe/website/doctype/website_settings/website_settings.js:100
msgid "Please select {0}"
msgstr "Silahkan pilih {0}"
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:306
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
-#: contacts/doctype/contact/contact.py:200
+#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "Silahkan tetapkan Alamat Email"
-#: printing/page/print/print.js:539
+#: frappe/printing/page/print/print.js:549
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Silakan atur pemetaan printer untuk format cetak ini di Pengaturan Printer"
-#: public/js/frappe/views/reports/query_report.js:1308
+#: frappe/public/js/frappe/views/reports/query_report.js:1407
msgid "Please set filters"
msgstr "Silakan set filter"
-#: email/doctype/auto_email_report/auto_email_report.py:226
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:263
msgid "Please set filters value in Report Filter table."
msgstr "Silakan menetapkan nilai filter dalam Laporan Filter meja."
-#: model/naming.py:533
+#: frappe/model/naming.py:572
msgid "Please set the document name"
msgstr ""
-#: desk/doctype/dashboard/dashboard.py:125
+#: frappe/desk/doctype/dashboard/dashboard.py:120
msgid "Please set the following documents in this Dashboard as standard first."
msgstr "Harap tetapkan dokumen berikut di Dasbor ini sebagai standar terlebih dahulu."
-#: core/doctype/document_naming_settings/document_naming_settings.py:121
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120
msgid "Please set the series to be used."
msgstr "Silakan mengatur seri yang akan digunakan."
-#: core/doctype/system_settings/system_settings.py:116
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "Tolong atur SMS sebelum menyetelnya sebagai metode otentikasi, melalui Pengaturan SMS"
-#: automation/doctype/auto_repeat/auto_repeat.js:102
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Please setup a message first"
msgstr "Harap siapkan pesan terlebih dahulu"
-#: email/doctype/email_account/email_account.py:389
-msgid "Please setup default Email Account from Settings > Email Account"
-msgstr ""
-
-#: core/doctype/user/user.py:369
+#: frappe/core/doctype/user/user.py:424
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: public/js/frappe/model/model.js:785
+#: frappe/email/doctype/email_account/email_account.py:432
+msgid "Please setup default outgoing Email Account from Tools > Email Account"
+msgstr ""
+
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "Silakan tentukan"
-#: permissions.py:782
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
-#: email/doctype/notification/notification.py:86
+#: frappe/email/doctype/notification/notification.py:154
+msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:151
+msgid "Please specify the minutes offset"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:145
msgid "Please specify which date field must be checked"
msgstr "Silakan tentukan tanggal yang lapangan harus diperiksa"
-#: email/doctype/notification/notification.py:89
+#: frappe/email/doctype/notification/notification.py:149
+msgid "Please specify which datetime field must be checked"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:158
msgid "Please specify which value field must be checked"
msgstr "Silakan tentukan mana bidang nilai harus diperiksa"
-#: public/js/frappe/request.js:184
-#: public/js/frappe/views/translation_manager.js:102
+#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Silakan coba lagi"
-#: integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:332
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Harap verifikasi Alamat Email Anda"
+#: frappe/templates/emails/file_backup_notification.html:4
+msgid "Please use following links to download file backup."
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Point Allocation Periodicity"
-msgstr "Titik Alokasi Periode"
+#: frappe/utils/password.py:218
+msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
+msgstr ""
-#: public/js/frappe/form/sidebar/review.js:75
-msgid "Points"
-msgstr "Poin"
+#. Label of the policy_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Policy URI"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Points"
-msgstr "Poin"
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Polling"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Points"
-msgstr "Poin"
-
-#: templates/emails/energy_points_summary.html:40
-msgid "Points Given"
-msgstr "Poin yang Diberikan"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the popover_element (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover Element"
msgstr ""
-#. Label of a HTML Editor field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover or Modal Description"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the smtp_port (Data) field in DocType 'Email Account'
+#. Label of the incoming_port (Data) field in DocType 'Email Account'
+#. Label of the smtp_port (Data) field in DocType 'Email Domain'
+#. Label of the incoming_port (Data) field in DocType 'Email Domain'
+#. Label of the port (Int) field in DocType 'Network Printer Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "Port"
-
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Port"
-msgstr "Port"
-
-#. Label of a Int field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
-msgid "Port"
-msgstr "Port"
-
-#. Label of a Card Break in the Website Workspace
-#: website/workspace/website/website.json
-msgid "Portal"
msgstr ""
-#. Label of a Table field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr "Portal menu"
+msgstr ""
#. Name of a DocType
-#: website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Portal Menu Item"
-msgstr "Portal Menu Item"
+msgstr ""
#. Name of a DocType
-#: website/doctype/portal_settings/portal_settings.json
-msgid "Portal Settings"
-msgstr "Pengaturan Portal"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Portal Settings"
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Portal Settings"
msgstr "Pengaturan Portal"
-#: public/js/frappe/form/print_utils.js:29
+#: frappe/public/js/frappe/form/print_utils.js:18
msgid "Portrait"
msgstr "Potret"
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the position (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Position"
-msgstr "Posisi"
+msgstr ""
-#: templates/discussions/comment_box.html:29
-#: templates/discussions/reply_card.html:15
+#: frappe/templates/discussions/comment_box.html:29
+#: frappe/templates/discussions/reply_card.html:15
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Post"
-msgstr "Post"
+msgstr ""
-#: templates/discussions/reply_section.html:39
+#: frappe/templates/discussions/reply_section.html:40
msgid "Post it here, our mentors will help you out."
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Postal"
-msgstr "Pos"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the pincode (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Postal Code"
msgstr "kode Pos"
-#. Group in Blog Category's connections
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Posts"
-msgstr "Posts"
+#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed'
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Posting Timestamp"
+msgstr ""
-#: website/doctype/blog_post/blog_post.py:258
+#: frappe/website/doctype/blog_post/blog_post.py:264
msgid "Posts by {0}"
msgstr "Posting oleh {0}"
-#: website/doctype/blog_post/blog_post.py:250
+#: frappe/website/doctype/blog_post/blog_post.py:256
msgid "Posts filed under {0}"
msgstr "Posting mengajukan di bawah {0}"
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Precision"
-msgstr "Ketelitian"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
-#. Label of a Select field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the precision (Select) field in DocType 'DocField'
+#. Label of the precision (Select) field in DocType 'Custom Field'
+#. Label of the precision (Select) field in DocType 'Customize Form Field'
+#. Label of the precision (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Ketelitian"
+msgstr ""
-#. Label of a Select field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Precision"
-msgstr "Ketelitian"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Precision"
-msgstr "Ketelitian"
-
-#: core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1400
msgid "Precision should be between 1 and 6"
msgstr "Presisi harus antara 1 dan 6"
-#: utils/password_strength.py:191
+#: frappe/utils/password_strength.py:187
msgid "Predictable substitutions like '@' instead of 'a' don't help very much."
msgstr "substitusi diprediksi seperti '@' bukan 'a' tidak membantu banyak."
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:34
+msgid "Prefer not to say"
+msgstr ""
+
+#. Label of the is_primary_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr "Disukai Alamat Penagihan"
+msgstr ""
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the is_shipping_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr "Disukai Alamat Pengiriman"
+msgstr ""
-#. Label of a Data field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
+#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Awalan"
-
-#. Label of a Autocomplete field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Prefix"
-msgstr "Awalan"
+msgstr ""
#. Name of a DocType
-#: core/doctype/prepared_report/prepared_report.json
+#. Label of the prepared_report (Check) field in DocType 'Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32
msgid "Prepared Report"
msgstr "Laporan yang disiapkan"
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Prepared Report"
-msgstr "Laporan yang disiapkan"
+#. Name of a report
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
+msgid "Prepared Report Analytics"
+msgstr ""
#. Name of a role
-#: core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Prepared Report User"
msgstr "Pengguna Laporan yang Disiapkan"
-#: desk/query_report.py:296
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:469
+#: frappe/public/js/frappe/views/reports/query_report.js:473
msgid "Preparing Report"
msgstr "Mempersiapkan Laporan"
-#: public/js/frappe/views/communication.js:321
+#: frappe/public/js/frappe/views/communication.js:431
msgid "Prepend the template to the email message"
msgstr ""
-#: public/js/frappe/list/list_filter.js:134
+#: frappe/public/js/frappe/ui/keyboard.js:139
+msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:141
msgid "Press Enter to save"
msgstr "Tekan Enter untuk menyimpan"
-#: email/doctype/newsletter/newsletter.js:14
-#: email/doctype/newsletter/newsletter.js:42
-#: public/js/frappe/form/controls/markdown_editor.js:31
-#: public/js/frappe/ui/capture.js:228
+#. Label of the section_import_preview (Section Break) field in DocType 'Data
+#. Import'
+#. Label of the preview (Section Break) field in DocType 'File'
+#. Label of the preview_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the preview (Attach Image) field in DocType 'Print Style'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/notification/notification.js:190
+#: frappe/integrations/doctype/webhook/webhook.js:90
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:17
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/ui/capture.js:236
msgid "Preview"
msgstr "Pratayang"
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Preview"
-msgstr "Pratayang"
-
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Preview"
-msgstr "Pratayang"
-
-#. Label of a Section Break field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "Preview"
-msgstr "Pratayang"
-
-#. Label of a Attach Image field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Preview"
-msgstr "Pratayang"
-
-#. Label of a Tab Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Preview"
-msgstr "Pratayang"
-
-#. Label of a HTML field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the preview_html (HTML) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Preview HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
+#. Label of the preview_image (Attach Image) field in DocType 'Blog Category'
+#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Preview Image"
msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Preview Image"
-msgstr ""
-
-#. Label of a Button field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Pesan Pratinjau"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:83
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
msgstr ""
-#. Label of a Text field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the series_preview (Text) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Preview of generated names"
msgstr ""
-#: public/js/onboarding_tours/onboarding_tours.js:16
-#: templates/includes/slideshow.html:34
-#: website/web_template/slideshow/slideshow.html:40
+#: frappe/public/js/frappe/views/render_preview.js:19
+msgid "Preview on {0}"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Preview.vue:103
+msgid "Preview type"
+msgstr ""
+
+#: frappe/email/doctype/email_group/email_group.js:81
+msgid "Preview:"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:15
+#: frappe/public/js/frappe/web_form/web_form.js:95
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:16
+#: frappe/templates/includes/slideshow.html:34
+#: frappe/website/web_template/slideshow/slideshow.html:40
msgid "Previous"
msgstr "Kembali"
-#: public/js/frappe/form/toolbar.js:289
-msgid "Previous Document"
+#: frappe/public/js/frappe/ui/slides.js:351
+msgctxt "Go to previous slide"
+msgid "Previous"
+msgstr "Kembali"
+
+#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Previous Hash"
msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Previous Hash"
-msgstr "Sebelumnya Hash"
-
-#: public/js/frappe/form/form.js:2162
+#: frappe/public/js/frappe/form/form.js:2214
msgid "Previous Submission"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr "Utama"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#: frappe/public/js/frappe/form/templates/address_list.html:27
+msgid "Primary Address"
+msgstr ""
+
+#. Label of the primary_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr "Warna primer"
+msgstr ""
-#: core/doctype/success_action/success_action.js:56
-#: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81
-#: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333
-#: public/js/frappe/list/bulk_operations.js:79
-#: public/js/frappe/views/reports/query_report.js:1623
-#: public/js/frappe/views/reports/report_view.js:1463
-#: public/js/frappe/views/treeview.js:473 www/printview.html:18
+#: frappe/public/js/frappe/form/templates/contact_list.html:23
+msgid "Primary Contact"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:69
+msgid "Primary Email"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:49
+msgid "Primary Mobile"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:41
+msgid "Primary Phone"
+msgstr ""
+
+#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199
+#: frappe/database/sqlite/schema.py:141
+msgid "Primary key of doctype {0} can not be changed as there are existing values."
+msgstr ""
+
+#. Label of the print (Check) field in DocType 'Custom DocPerm'
+#. Label of the print (Check) field in DocType 'DocPerm'
+#. Label of the print (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:58
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/printing/page/print/print.js:65
+#: frappe/public/js/frappe/form/success_action.js:81
+#: frappe/public/js/frappe/form/templates/print_layout.html:46
+#: frappe/public/js/frappe/form/toolbar.js:360
+#: frappe/public/js/frappe/form/toolbar.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:95
+#: frappe/public/js/frappe/views/reports/query_report.js:1780
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
+#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Mencetak"
-#: public/js/frappe/list/list_view.js:1849
+#: frappe/public/js/frappe/list/list_view.js:2017
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Mencetak"
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Print"
-msgstr "Mencetak"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Print"
-msgstr "Mencetak"
-
-#: public/js/frappe/list/bulk_operations.js:39
+#: frappe/public/js/frappe/list/bulk_operations.js:48
msgid "Print Documents"
msgstr "Cetak Dokumen"
-#. Name of a DocType
-#: printing/doctype/print_format/print_format.json
-#: printing/page/print/print.js:94 printing/page/print/print.js:794
-#: public/js/frappe/list/bulk_operations.js:50
-msgid "Print Format"
-msgstr "Format Cetak"
-
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Print Format"
-msgstr "Format Cetak"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Print Format"
-msgstr "Format Cetak"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Print Format"
-msgstr "Format Cetak"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Print Format"
-msgstr "Format Cetak"
-
+#. Label of the print_format (Link) field in DocType 'Auto Repeat'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Print Format"
-msgid "Print Format"
-msgstr "Format Cetak"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the print_format (Link) field in DocType 'Notification'
+#. Name of a DocType
+#. Label of the print_format (Link) field in DocType 'Web Form'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/workspace/build/build.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/page/print/print.js:94
+#: frappe/printing/page/print/print.js:821
+#: frappe/public/js/frappe/list/bulk_operations.js:59
+#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
msgstr "Format Cetak"
#. Label of a Link in the Tools Workspace
-#. Label of a shortcut in the Build Workspace
-#: automation/workspace/tools/tools.json core/workspace/build/build.json
-#: printing/page/print_format_builder/print_format_builder.js:44
-#: printing/page/print_format_builder/print_format_builder.js:67
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:4
-msgid "Print Format Builder"
-msgstr "Cetak Format Builder"
-
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_builder (Check) field in DocType 'Print Format'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:44
+#: frappe/printing/page/print_format_builder/print_format_builder.js:67
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4
msgid "Print Format Builder"
msgstr "Cetak Format Builder"
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Print Format Builder (New)"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_builder_beta (Check) field in DocType 'Print
+#. Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Builder Beta"
msgstr ""
-#: utils/pdf.py:52
+#: frappe/utils/pdf.py:63
msgid "Print Format Error"
msgstr ""
#. Name of a DocType
-#: printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Print Format Field Template"
msgstr ""
-#. Label of a HTML field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_for (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Print Format For"
+msgstr ""
+
+#. Label of the print_format_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
-msgstr "Print Format Bantuan"
+msgstr ""
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_type (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Type"
-msgstr "Print Format Type"
+msgstr ""
-#: www/printview.py:407
+#: frappe/public/js/frappe/views/reports/query_report.js:1577
+msgid "Print Format not found"
+msgstr ""
+
+#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
msgstr "Cetak Format {0} dinonaktifkan"
-#. Description of the Onboarding Step 'Customize Print Formats'
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Print Formats allow you can define looks for documents when printed or converted to PDF. You can also create a custom Print Format using drag-and-drop tools."
-msgstr ""
-
-#. Name of a DocType
-#: printing/doctype/print_heading/print_heading.json
-msgid "Print Heading"
-msgstr ""
-
#. Label of a Link in the Tools Workspace
-#. Label of a Data field in DocType 'Print Heading'
-#: automation/workspace/tools/tools.json
-#: printing/doctype/print_heading/print_heading.json
-msgctxt "Print Heading"
+#. Name of a DocType
+#. Label of the print_heading (Data) field in DocType 'Print Heading'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/printing/doctype/print_heading/print_heading.json
msgid "Print Heading"
+msgstr "Cetak Pos"
+
+#. Label of the print_hide (Check) field in DocType 'DocField'
+#. Label of the print_hide (Check) field in DocType 'Custom Field'
+#. Label of the print_hide (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Print Hide"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Print Hide"
-msgstr "Cetak Sembunyikan"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Hide"
-msgstr "Cetak Sembunyikan"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Hide"
-msgstr "Cetak Sembunyikan"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide If No Value"
-msgstr "Cetak Sembunyikan Jika ada Nilai"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Hide If No Value"
-msgstr "Cetak Sembunyikan Jika ada Nilai"
+#: frappe/public/js/frappe/views/communication.js:168
+msgid "Print Language"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Hide If No Value"
-msgstr "Cetak Sembunyikan Jika ada Nilai"
-
-#: public/js/frappe/form/print_utils.js:195
+#: frappe/public/js/frappe/form/print_utils.js:210
msgid "Print Sent to the printer!"
msgstr "Cetak Terkirim ke printer!"
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the server_printer (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Server Cetak"
-
-#. Name of a DocType
-#: printing/doctype/print_settings/print_settings.json
-#: printing/doctype/print_style/print_style.js:6
-#: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69
-msgid "Print Settings"
-msgstr "Pengaturan Cetak"
-
-#. Label of a Section Break field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Print Settings"
-msgstr "Pengaturan Cetak"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Print Settings"
+#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.js:6
+#: frappe/printing/page/print/print.js:160
+#: frappe/public/js/frappe/form/print_utils.js:84
+#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Pengaturan Cetak"
+#. Label of the print_style_section (Section Break) field in DocType 'Print
+#. Settings'
+#. Label of the print_style (Link) field in DocType 'Print Settings'
#. Name of a DocType
-#: printing/doctype/print_style/print_style.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
msgid "Print Style"
-msgstr "Print Style"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#. Label of a Link field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Print Style"
-msgstr "Print Style"
-
-#. Label of a Data field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
+#. Label of the print_style_name (Data) field in DocType 'Print Style'
+#: frappe/printing/doctype/print_style/print_style.json
msgid "Print Style Name"
-msgstr "Cetak Nama Gaya"
+msgstr ""
-#. Label of a HTML field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the print_style_preview (HTML) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Style Preview"
-msgstr "Print Style Preview"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the print_width (Data) field in DocType 'DocField'
+#. Label of the print_width (Data) field in DocType 'Custom Field'
+#. Label of the print_width (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Cetak Lebar"
-
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Width"
-msgstr "Cetak Lebar"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Width"
-msgstr "Cetak Lebar"
+msgstr ""
#. Description of the 'Print Width' (Data) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width of the field, if the field is a column in a table"
-msgstr "Cetak Lebar lapangan, jika lapangan adalah kolom dalam tabel"
+msgstr ""
-#: public/js/frappe/form/form.js:170
+#: frappe/public/js/frappe/form/form.js:170
msgid "Print document"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Mencetak dengan kop surat"
+msgstr ""
-#: printing/page/print/print.js:803
+#: frappe/printing/page/print/print.js:830
msgid "Printer"
-msgstr "Printer"
+msgstr ""
-#: printing/page/print/print.js:780
+#: frappe/printing/page/print/print.js:807
msgid "Printer Mapping"
msgstr "Pemetaan Printer"
-#. Label of a Select field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
+#. Label of the printer_name (Select) field in DocType 'Network Printer
+#. Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Nama Printer"
+msgstr ""
-#: printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:799
msgid "Printer Settings"
msgstr "Pengaturan Printer"
-#: printing/page/print/print.js:538
+#: frappe/printing/page/print/print.js:548
msgid "Printer mapping not set."
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Printing"
msgstr "Pencetakan"
-#: utils/print_format.py:179
+#: frappe/utils/print_format.py:291
msgid "Printing failed"
msgstr "Pencetakan gagal"
-#: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184
+#. Label of the priority (Int) field in DocType 'Assignment Rule'
+#. Label of the priority (Int) field in DocType 'Document Naming Rule'
+#. Label of the priority (Select) field in DocType 'ToDo'
+#. Label of the priority (Int) field in DocType 'Email Queue'
+#. Label of the idx (Int) field in DocType 'Web Page'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:211
+#: frappe/website/doctype/web_page/web_page.json
msgid "Priority"
msgstr "Prioritas"
-#. Label of a Int field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Priority"
-msgstr "Prioritas"
-
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Priority"
-msgstr "Prioritas"
-
-#. Label of a Int field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Priority"
-msgstr "Prioritas"
-
-#. Label of a Select field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Priority"
-msgstr "Prioritas"
-
-#. Label of a Int field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Priority"
-msgstr "Prioritas"
-
-#: desk/doctype/note/note_list.js:8
-msgid "Private"
-msgstr "Swasta"
-
-#. Label of a Check field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Private"
-msgstr "Swasta"
-
+#. Label of the private (Check) field in DocType 'Custom HTML Block'
#. Option for the 'Event Type' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the private (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/note/note_list.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35
msgid "Private"
msgstr "Swasta"
-#. Label of a Check field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Private"
-msgstr "Swasta"
+#. Label of the private_files_size (Float) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Private Files (MB)"
+msgstr ""
+
+#: frappe/templates/emails/file_backup_notification.html:6
+msgid "Private Files Backup:"
+msgstr ""
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "Protip: Tambahkan Reference: {{ reference_doctype }} {{ reference_name }} referensi dokumen untuk mengirim"
+msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:22
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:931
msgid "Proceed Anyway"
msgstr "Tetap melanjutkan"
-#: public/js/frappe/form/controls/table.js:88
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
msgstr "Pengolahan"
-#: email/doctype/email_queue/email_queue.py:407
+#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
msgstr "Pengolahan..."
+#: frappe/desk/page/setup_wizard/install_fixtures.py:51
+msgid "Prof"
+msgstr ""
+
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Profile"
msgstr ""
-#: public/js/frappe/socketio_client.js:78
+#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
msgstr "Kemajuan"
-#: public/js/frappe/views/kanban/kanban_view.js:405
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Proyek"
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property (Data) field in DocType 'Property Setter'
+#: frappe/core/doctype/version/version_view.html:12
+#: frappe/core/doctype/version/version_view.html:37
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
-msgstr "Harta benda"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Customize Form Field'
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Web Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr "Properti Tergantung"
-
-#. Label of a Section Break field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Property Depends On"
-msgstr "Properti Tergantung"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/property_setter/property_setter.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
msgstr "Setter Properti"
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Property Setter"
-msgstr "Setter Properti"
+#. Description of a DocType
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property Setter overrides a standard DocType or Field property"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property_type (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr "Jenis properti"
+msgstr ""
+
+#. Label of the protect_attached_files (Check) field in DocType 'DocType'
+#. Label of the protect_attached_files (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Protect Attached Files"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:501
+msgid "Protected File"
+msgstr ""
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG"
msgstr ""
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
+#. Label of the provider (Data) field in DocType 'User Social Login'
+#. Label of the provider (Select) field in DocType 'Geolocation Settings'
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Pemberi"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Provider Name"
-msgstr "Nama Penyedia"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Provider Name"
-msgstr "Nama Penyedia"
-
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Provider Name"
-msgstr "Nama Penyedia"
-
-#: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78
-#: public/js/frappe/views/workspace/workspace.js:613
-#: public/js/frappe/views/workspace/workspace.js:941
-#: public/js/frappe/views/workspace/workspace.js:1187
-msgid "Public"
-msgstr "Publik"
-
-#. Option for the 'Event Type' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Public"
-msgstr "Publik"
-
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Public"
-msgstr "Publik"
-
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Public"
-msgstr "Publik"
-
-#: website/doctype/blog_post/blog_post.js:36
-#: website/doctype/web_form/web_form.js:77
-msgid "Publish"
-msgstr "Menerbitkan"
-
-#. Label of a Check field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
-msgid "Publish"
-msgstr "Menerbitkan"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Publish as a web page"
msgstr ""
-#: website/doctype/blog_post/blog_post_list.js:5
-#: website/doctype/web_form/web_form_list.js:5
-#: website/doctype/web_page/web_page_list.js:5
+#. Label of the provider_name (Data) field in DocType 'Connected App'
+#. Label of the provider_name (Data) field in DocType 'Social Login Key'
+#. Label of the provider_name (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Provider Name"
+msgstr ""
+
+#. Option for the 'Event Type' (Select) field in DocType 'Event'
+#. Label of the public (Check) field in DocType 'Note'
+#. Label of the public (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/note/note_list.js:6
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/interaction.js:78
+#: frappe/public/js/frappe/views/workspace/workspace.js:440
+msgid "Public"
+msgstr "Publik"
+
+#. Label of the public_files_size (Float) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Public Files (MB)"
+msgstr ""
+
+#: frappe/templates/emails/file_backup_notification.html:5
+msgid "Public Files Backup:"
+msgstr ""
+
+#. Label of the publish (Check) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/public/js/frappe/form/footer/form_timeline.js:632
+#: frappe/website/doctype/blog_post/blog_post.js:36
+#: frappe/website/doctype/web_form/web_form.js:86
+msgid "Publish"
+msgstr "Menerbitkan"
+
+#. Label of the published (Check) field in DocType 'Comment'
+#. Label of the published (Check) field in DocType 'Blog Category'
+#. Label of the published (Check) field in DocType 'Blog Post'
+#. Label of the published (Check) field in DocType 'Help Article'
+#. Label of the published (Check) field in DocType 'Help Category'
+#. Label of the published (Check) field in DocType 'Web Form'
+#. Label of the published (Check) field in DocType 'Web Page'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/blog_post_list.js:5
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_form/web_form_list.js:5
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/web_page/web_page_list.js:5
msgid "Published"
msgstr "Diterbitkan"
-#. Label of a Check field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Check field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Check field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Check field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Published"
-msgstr "Diterbitkan"
-
-#. Label of a Date field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the published_on (Date) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Published On"
-msgstr "Published On"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post.html:59
+#: frappe/website/doctype/blog_post/templates/blog_post.html:59
msgid "Published on"
msgstr "Diterbitkan di"
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the publishing_dates_section (Section Break) field in DocType 'Web
+#. Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Publishing Dates"
msgstr ""
-#: email/doctype/email_account/email_account.js:164
+#: frappe/email/doctype/email_account/email_account.js:208
msgid "Pull Emails"
msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the pull_from_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Tarik dari Kalender Google"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr "Tarik dari Kontak Google"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Ditarik dari Kalender Google"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Ditarik dari Kontak Google"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:209
+msgid "Pulling emails..."
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Manager"
msgstr "Manajer Pembelian"
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Master Manager"
msgstr "Master Manajer Pembelian"
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Purchase User"
msgstr "Pembelian Pengguna"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Purple"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Purple"
msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notification Settings"
+msgstr ""
+
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notifications"
+msgstr ""
+
+#. Label of the push_to_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Dorong ke Kalender Google"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the push_to_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr "Dorong ke Kontak Google"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Python"
msgstr ""
-#: www/qrcode.html:3
+#: frappe/www/qrcode.html:3
msgid "QR Code"
msgstr "Kode QR"
-#: www/qrcode.html:6
+#: frappe/www/qrcode.html:6
msgid "QR Code for Login Verification"
msgstr "Kode QR untuk Verifikasi Login"
-#: public/js/frappe/form/print_utils.js:204
+#: frappe/public/js/frappe/form/print_utils.js:219
msgid "QZ Tray Failed: "
msgstr "Baki QZ Gagal:"
-#: public/js/frappe/utils/common.js:401
-msgid "Quarterly"
-msgstr "Triwulan"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Quarterly"
-msgstr "Triwulan"
-
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Quarterly"
-msgstr "Triwulan"
-
#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:401
msgid "Quarterly"
msgstr "Triwulan"
-#. Label of a Data field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the query (Data) field in DocType 'Recorder Query'
+#. Label of the query (Code) field in DocType 'Report'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Query"
+msgstr ""
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Query"
-msgstr "Query"
-
-#. Label of a Section Break field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the section_break_6 (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr "Kueri / Skrip"
+msgstr ""
-#. Label of a Small Text field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the query_options (Small Text) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr "Opsi Query"
+msgstr ""
+#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
-#: integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
msgid "Query Parameters"
msgstr ""
-#. Label of a Table field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Query Parameters"
-msgstr ""
-
-#: public/js/frappe/views/reports/query_report.js:17
-msgid "Query Report"
-msgstr "Laporan \"Query\""
-
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
+#: frappe/public/js/frappe/views/reports/query_report.js:17
msgid "Query Report"
msgstr "Laporan \"Query\""
-#: utils/safe_exec.py:437
+#: frappe/core/doctype/recorder/recorder.py:188
+msgid "Query analysis complete. Check suggested indexes."
+msgstr ""
+
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
-#. Label of a Select field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the queue (Select) field in DocType 'RQ Job'
+#. Label of the queue (Data) field in DocType 'System Health Report Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
msgstr ""
-#. Label of a Select field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/utils/background_jobs.py:731
+msgid "Queue Overloaded"
+msgstr ""
+
+#. Label of the queue_status (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Queue Status"
+msgstr ""
+
+#. Label of the queue_type (Select) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the queue_in_background (Check) field in DocType 'DocType'
+#. Label of the queue_in_background (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Queue in Background (BETA)"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Queue in Background (BETA)"
-msgstr ""
-
-#: utils/background_jobs.py:473
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "Antrian adalah salah satu dari {0}"
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the queue (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:208
-msgid "Queued"
-msgstr "Diantrikan"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Queued"
-msgstr "Diantrikan"
-
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Queued"
-msgstr "Diantrikan"
-
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "Diantrikan"
-#. Label of a Datetime field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued At"
msgstr ""
-#. Label of a Data field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the queued_by (Data) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued By"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:173
+#: frappe/core/doctype/submission_queue/submission_queue.py:174
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:64
-#: integrations/doctype/google_drive/google_drive.py:156
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:81
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "Diantrikan untuk dicadangan. Mungkin memakan waktu beberapa menit sampai satu jam."
-
-#: desk/page/backups/backups.py:96
+#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "Diantrikan untuk pencadangan. Anda akan menerima email dengan tautan unduh"
-#: email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
+#. Label of the queues (Data) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Queues"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
-#: desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the quick_entry (Check) field in DocType 'DocType'
+#. Label of the quick_entry (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Quick Entry"
msgstr "Entri Cepat"
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Quick Entry"
-msgstr "Entri Cepat"
+#: frappe/core/page/permission_manager/permission_manager_help.html:3
+msgid "Quick Help for Setting Permissions"
+msgstr ""
-#. Label of a Code field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
+#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick
+#. List'
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Quick List Filter"
msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the quick_lists (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Quick Lists"
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:280
+#: frappe/public/js/frappe/views/reports/report_utils.js:304
msgid "Quoting must be between 0 and 3"
msgstr ""
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the raw_information_log_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Log Informasi RAW"
+msgstr ""
#. Name of a DocType
-#: core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "RQ Job"
msgstr ""
#. Name of a DocType
-#: core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "RQ Worker"
msgstr ""
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Random"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Random"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:20
+#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
msgstr "Jarak"
-#. Label of a Section Break field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limiting_section (Section Break) field in DocType 'Server
+#. Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Rate Limiting"
msgstr ""
-#. Label of a Section Break field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the section_break_12 (Section Break) field in DocType 'Blog
+#. Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Rate Limits"
msgstr ""
-#. Label of a Int field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Rating"
-msgstr "penilaian"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Rating"
-msgstr "penilaian"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Rating"
-msgstr "penilaian"
+#. Label of the rate_limit_email_link_login (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Rate limit for email link login"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Rating"
-msgstr "penilaian"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Rating"
-msgstr "penilaian"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:89
+#. Label of the raw_commands (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "Raw Commands"
msgstr "Perintah Mentah"
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Raw Commands"
-msgstr "Perintah Mentah"
-
-#. Label of a Code field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
+#. Label of the raw (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Raw Email"
-msgstr "Raw Email"
+msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the raw_printing (Check) field in DocType 'Print Format'
+#. Label of the raw_printing_section (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Raw Printing"
-msgstr "Pencetakan Mentah"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Raw Printing"
-msgstr "Pencetakan Mentah"
-
-#: printing/page/print/print.js:165
+#: frappe/printing/page/print/print.js:165
msgid "Raw Printing Setting"
msgstr ""
-#: desk/doctype/console_log/console_log.js:6
+#: frappe/public/js/frappe/form/templates/print_layout.html:37
+msgid "Raw Printing Settings"
+msgstr ""
+
+#: frappe/desk/doctype/console_log/console_log.js:6
msgid "Re-Run in Console"
msgstr ""
-#: email/doctype/email_account/email_account.py:630
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
-#: core/doctype/communication/communication.js:268
-#: public/js/frappe/form/footer/form_timeline.js:564
-#: public/js/frappe/views/communication.js:257
+#: frappe/core/doctype/communication/communication.js:268
+#: frappe/public/js/frappe/form/footer/form_timeline.js:600
+#: frappe/public/js/frappe/views/communication.js:367
msgid "Re: {0}"
-msgstr "Re: {0}"
-
-#: client.py:459
-msgid "Read"
-msgstr "Membaca"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Read"
-msgstr "Membaca"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Read"
-msgstr "Membaca"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Read"
-msgstr "Membaca"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Read"
-msgstr "Membaca"
-
+#. Label of the read (Check) field in DocType 'Custom DocPerm'
+#. Label of the read (Check) field in DocType 'DocPerm'
+#. Label of the read (Check) field in DocType 'DocShare'
+#. Label of the read (Check) field in DocType 'User Document Type'
+#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#: frappe/client.py:450 frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Read"
msgstr "Membaca"
-#. Label of a Check field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Read"
-msgstr "Membaca"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Read"
-msgstr "Membaca"
-
-#: public/js/form_builder/form_builder.bundle.js:83
-msgid "Read Only"
-msgstr "Read Only"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Read Only"
-msgstr "Read Only"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Read Only"
-msgstr "Read Only"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the read_only (Check) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Label of the read_only (Check) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only"
-msgstr "Read Only"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Read Only"
-msgstr "Read Only"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only Depends On"
-msgstr "Hanya Baca Tergantung"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Read Only Depends On"
-msgstr "Hanya Baca Tergantung"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Read Only Depends On"
-msgstr "Hanya Baca Tergantung"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Read Only Depends On (JS)"
msgstr ""
-#: templates/includes/navbar/navbar_items.html:97
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:16
+#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
-#. Label of a Int field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the read_time (Int) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Read Time"
-msgstr "Baca Waktu"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_by_recipient (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Dibaca oleh Penerima"
+msgstr ""
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_by_recipient_on (Datetime) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient On"
-msgstr "Baca oleh Penerima Aktif"
+msgstr ""
-#: desk/doctype/note/note.js:10
+#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
msgstr ""
-#: utils/safe_exec.py:91
+#: frappe/utils/safe_exec.py:98
msgid "Read the documentation to know more"
msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the readme (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "Readme"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:85
-#: social/doctype/energy_point_log/energy_point_log.js:20
+#. Label of the realtime_socketio_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Realtime (SocketIO)"
+msgstr ""
+
+#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Reason"
msgstr "Alasan"
-#. Label of a Text field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reason"
-msgstr "Alasan"
-
-#. Label of a Long Text field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "Reason"
-msgstr "Alasan"
-
-#: public/js/frappe/views/reports/query_report.js:815
+#: frappe/public/js/frappe/views/reports/query_report.js:885
msgid "Rebuild"
msgstr "Membangun kembali"
-#: public/js/frappe/views/treeview.js:492
+#: frappe/public/js/frappe/views/treeview.js:509
msgid "Rebuild Tree"
msgstr ""
-#: utils/nestedset.py:180
+#: frappe/utils/nestedset.py:177
msgid "Rebuilding of tree is not supported for {}"
msgstr ""
-#. Description of the 'Anonymous' (Check) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Receive anonymous response"
-msgstr ""
-
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Received"
msgstr "Diterima"
-#: integrations/doctype/token_cache/token_cache.py:49
+#: frappe/integrations/doctype/token_cache/token_cache.py:49
msgid "Received an invalid token type."
msgstr ""
-#. Label of a Select field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#. Label of the receiver_by_document_field (Select) field in DocType
+#. 'Notification Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr "Penerima Berdasarkan Bidang Dokumen"
+msgstr ""
-#. Label of a Link field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#. Label of the receiver_by_role (Link) field in DocType 'Notification
+#. Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Role"
-msgstr "Penerima Berdasarkan Peran"
+msgstr ""
-#. Label of a Data field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr "Parameter Penerima"
+msgstr ""
-#: utils/password_strength.py:125
+#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
msgstr "tahun terakhir mudah ditebak."
-#: public/js/frappe/ui/toolbar/search_utils.js:516
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532
msgid "Recents"
msgstr ""
-#. Label of a Table field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the recipients (Table) field in DocType 'Email Queue'
+#. Label of the recipient (Data) field in DocType 'Email Queue Recipient'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Penerima"
-
-#. Label of a Data field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Recipient"
-msgstr "Penerima"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "Penerima Berhenti berlangganan"
+msgstr ""
-#. Label of a Small Text field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
+#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
+#. Label of the recipients (Table) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Penerima"
-
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Table field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Recipients"
-msgstr "Penerima"
+msgstr ""
#. Name of a DocType
-#: core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder/recorder.json
msgid "Recorder"
msgstr "Perekam"
#. Name of a DocType
-#: core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Recorder Query"
msgstr ""
+#. Name of a DocType
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+msgid "Recorder Suggested Index"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_help.html:2
+msgid "Records for following doctypes will be filtered"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1608
+msgid "Recursive Fetch From"
+msgstr ""
+
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Red"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Red"
-msgstr ""
+msgstr "Merah"
-#. Label of a Select field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
+#. Label of the redirect_http_status (Select) field in DocType 'Website Route
+#. Redirect'
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Redirect HTTP Status"
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the redirect_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
+#. DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr "Redirect URI Bound Untuk Kode Tupoksi"
+msgstr ""
-#. Label of a Text field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr "redirect URI"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the redirect_url (Small Text) field in DocType 'User'
+#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "redirect URL"
+msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Redirect URL"
-msgstr "redirect URL"
+#. Description of the 'Default App' (Select) field in DocType 'System Settings'
+#. Description of the 'Default App' (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Redirect to the selected app after login"
+msgstr ""
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Redirects"
msgstr ""
-#: sessions.py:148
+#: frappe/sessions.py:149
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Cache server Redis tidak berjalan. Silahkan hubungi Administrator / dukungan Tech"
-#: public/js/frappe/form/toolbar.js:462
+#: frappe/public/js/frappe/form/toolbar.js:530
msgid "Redo"
msgstr ""
-#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470
+#: frappe/public/js/frappe/form/form.js:164
+#: frappe/public/js/frappe/form/toolbar.js:538
msgid "Redo last action"
msgstr ""
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the ref_doctype (Link) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr "DocType Ref"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:38
+#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
msgstr ""
-#: core/doctype/user_type/user_type_dashboard.py:5 desk/report/todo/todo.py:42
-#: public/js/frappe/views/interaction.js:54
+#. Label of the linked_with (Section Break) field in DocType 'Address'
+#. Label of the contact_details (Section Break) field in DocType 'Contact'
+#. Label of the reference_section (Section Break) field in DocType 'Activity
+#. Log'
+#. Label of the reference_section (Section Break) field in DocType
+#. 'Communication'
+#. Label of the reference (Dynamic Link) field in DocType 'Permission Log'
+#. Label of the section_break_6 (Section Break) field in DocType 'ToDo'
+#. Label of the reference_section (Section Break) field in DocType 'Integration
+#. Request'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/user_type/user_type_dashboard.py:5
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/views/interaction.js:54
msgid "Reference"
msgstr "Referensi"
-#. Label of a Section Break field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference"
-msgstr "Referensi"
-
-#. Label of a Section Break field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Reference"
-msgstr "Referensi"
-
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference"
-msgstr "Referensi"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Reference"
-msgstr "Referensi"
-
-#. Label of a Section Break field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference"
-msgstr "Referensi"
-
-#. Label of a Section Break field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Reference"
-msgstr "Referensi"
-
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the date_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Reference Date"
msgstr "Referensi Tanggal"
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the datetime_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Reference Datetime"
+msgstr ""
+
+#. Label of the reference_name (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "Referensi Nama Dokumen"
+msgstr ""
-#. Label of a Link field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
+#. Label of the reference_doctype (Link) field in DocType 'Error Log'
+#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr "Referensi DocType"
+msgstr ""
-#. Label of a Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Reference DocType"
-msgstr "Referensi DocType"
-
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:25
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
msgstr "Referensi DOCTYPE dan referensi Nama diperlukan"
-#. Label of a Dynamic Link field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
+#. Topic'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "Referensi DocName"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Reference Docname"
-msgstr "Referensi DocName"
-
-#: core/doctype/communication/communication.js:143
-#: core/report/transaction_log_report/transaction_log_report.py:88
+#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
+#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
+#: frappe/core/doctype/communication/communication.js:143
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:88
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/views/render_preview.js:34
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Doctype"
msgstr "Referensi DocType"
-#. Label of a Link field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
-msgid "Reference Doctype"
-msgstr "Referensi DocType"
-
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the reference_document (Dynamic Link) field in DocType 'Auto
+#. Repeat'
+#. Label of the reference_document (Data) field in DocType 'Access Log'
+#. Label of the reference_doctype (Link) field in DocType 'Form Tour'
+#. Label of the reference_document (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_document (Data) field in DocType 'Webhook Request
+#. Log'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Reference Document"
-msgstr "Dokumen referensi"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Reference Document"
-msgstr "Dokumen referensi"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Reference Document"
-msgstr "Dokumen referensi"
-
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Reference Document"
-msgstr "Dokumen referensi"
-
-#. Label of a Data field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Reference Document"
-msgstr "Dokumen referensi"
-
-#. Label of a Dynamic Link field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Document
+#. Share Key'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration
+#. Request'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Reference Document Name"
msgstr ""
-#. Label of a Dynamic Link field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference Document Name"
+#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat'
+#. Label of the reference_doctype (Link) field in DocType 'Activity Log'
+#. Label of the reference_doctype (Link) field in DocType 'Comment'
+#. Label of the reference_doctype (Link) field in DocType 'Communication'
+#. Label of the parent (Data) field in DocType 'Custom DocPerm'
+#. Label of the ref_doctype (Data) field in DocType 'Custom Role'
+#. Label of the reference_doctype (Link) field in DocType 'Document Share Key'
+#. Label of the reference_doctype (Link) field in DocType 'Server Script'
+#. Label of the ref_doctype (Link) field in DocType 'Success Action'
+#. Label of the reference_doctype (Data) field in DocType 'Transaction Log'
+#. Label of the reference_doctype (Link) field in DocType 'View Log'
+#. Label of the reference_doctype (Link) field in DocType 'Calendar View'
+#. Label of the reference_doctype (Link) field in DocType 'Event Participants'
+#. Label of the reference_doctype (Link) field in DocType 'Kanban Board'
+#. Label of the reference_doctype (Link) field in DocType 'List Filter'
+#. Label of the reference_doctype (Link) field in DocType 'Email Queue'
+#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe'
+#. Label of the reference_doctype (Link) field in DocType 'Integration Request'
+#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item'
+#. Label of the reference_doctype (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Reference Document Type"
+msgstr "Tipe Dokumen Referensi"
+
+#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Comment'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Communication'
+#. Label of the docname (Data) field in DocType 'Data Import Log'
+#. Label of the reference_name (Data) field in DocType 'Error Log'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Event
+#. Participants'
+#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Email
+#. Unsubscribe'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow
+#. Action'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.js:152
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:94
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Reference Name"
+msgstr "nama referensi"
+
+#. Label of the reference_owner (Read Only) field in DocType 'Activity Log'
+#. Label of the reference_owner (Data) field in DocType 'Comment'
+#. Label of the reference_owner (Read Only) field in DocType 'Communication'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+msgid "Reference Owner"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Data field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Data field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Reference Document Type"
-msgstr "Tipe Dokumen Referensi"
-
-#: core/doctype/communication/communication.js:152
-#: core/report/transaction_log_report/transaction_log_report.py:94
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Dynamic Link field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Dynamic Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Data field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Dynamic Link field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Data field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Dynamic Link field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Dynamic Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Dynamic Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Reference Name"
-msgstr "nama referensi"
-
-#. Label of a Read Only field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference Owner"
-msgstr "referensi Pemilik"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Owner"
-msgstr "referensi Pemilik"
-
-#. Label of a Read Only field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Owner"
-msgstr "referensi Pemilik"
-
-#. Label of a Data field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the reference_report (Data) field in DocType 'Report'
+#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_report (Data) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Laporan Referensi"
+msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Reference Report"
-msgstr "Laporan Referensi"
-
-#. Label of a Data field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Reference Report"
-msgstr "Laporan Referensi"
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the reference_type (Link) field in DocType 'Permission Log'
+#. Label of the reference_type (Link) field in DocType 'ToDo'
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/todo/todo.json
msgid "Reference Type"
-msgstr "Referensi Type"
+msgstr ""
-#: social/doctype/energy_point_rule/energy_point_rule.py:144
-msgid "Reference document has been cancelled"
-msgstr "Dokumen referensi telah dibatalkan"
-
-#. Label of a Dynamic Link field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
+#. Label of the reference_name (Dynamic Link) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
msgid "Reference name"
-msgstr "Referensi Nama"
+msgstr ""
-#: templates/emails/auto_reply.html:3
+#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
msgstr "Referensi: {0} {1}"
-#: website/report/website_analytics/website_analytics.js:37
+#. Label of the referrer (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:37
msgid "Referrer"
msgstr "Perujuk"
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Referrer"
-msgstr "Perujuk"
-
-#: printing/page/print/print.js:73 public/js/frappe/desk.js:133
-#: public/js/frappe/form/form.js:1174 public/js/frappe/list/base_list.js:65
-#: public/js/frappe/views/reports/query_report.js:1612
-#: public/js/frappe/views/treeview.js:479
-#: public/js/frappe/widgets/chart_widget.js:290
-#: public/js/frappe/widgets/number_card_widget.js:307
+#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
+#: frappe/public/js/frappe/desk.js:558
+#: frappe/public/js/frappe/form/form.js:1201
+#: frappe/public/js/frappe/form/templates/print_layout.html:6
+#: frappe/public/js/frappe/list/base_list.js:66
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
+#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/widgets/chart_widget.js:291
+#: frappe/public/js/frappe/widgets/number_card_widget.js:340
+#: frappe/public/js/print_format_builder/Preview.vue:24
msgid "Refresh"
msgstr "Segarkan"
-#: core/page/dashboard_view/dashboard_view.js:177
+#: frappe/core/page/dashboard_view/dashboard_view.js:177
msgid "Refresh All"
msgstr "Segarkan Semua"
-#. Label of a Button field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr "Segarkan Google Sheet"
+msgstr ""
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
+#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
+#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the refresh_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr "Segarkan Token"
+msgstr ""
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Refresh Token"
-msgstr "Segarkan Token"
+#: frappe/public/js/frappe/list/list_view.js:531
+msgctxt "Document count in list view"
+msgid "Refreshing"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Refresh Token"
-msgstr "Segarkan Token"
-
-#. Label of a Data field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Refresh Token"
-msgstr "Segarkan Token"
-
-#. Label of a Password field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Refresh Token"
-msgstr "Segarkan Token"
-
-#: core/doctype/system_settings/system_settings.js:52
-#: core/doctype/user/user.js:345 desk/page/setup_wizard/setup_wizard.js:204
+#: frappe/core/doctype/system_settings/system_settings.js:57
+#: frappe/core/doctype/user/user.js:368
+#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
msgstr "Refreshing ..."
-#: core/doctype/user/user.py:979
+#: frappe/core/doctype/user/user.py:1029
msgid "Registered but disabled"
msgstr "Terdaftar tapi dinonaktifkan"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Rejected"
-msgstr "Ditolak"
-
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/translation/translation.json
msgid "Rejected"
-msgstr "Ditolak"
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
+msgid "Relay Server URL missing"
+msgstr ""
+
+#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Relay Settings"
+msgstr ""
#. Group in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "Release"
msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the release_notes (Markdown Editor) field in DocType 'Package
+#. Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
msgstr ""
-#: core/doctype/communication/communication.js:48
-#: core/doctype/communication/communication.js:159
+#: frappe/core/doctype/communication/communication.js:48
+#: frappe/core/doctype/communication/communication.js:159
msgid "Relink"
msgstr "relink"
-#: core/doctype/communication/communication.js:138
+#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
msgstr "Komunikasi relink"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr "ditautkan kembali"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Relinked"
-msgstr "ditautkan kembali"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: custom/doctype/customize_form/customize_form.js:120 hooks.py
-#: public/js/frappe/form/toolbar.js:408
+#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
+#: frappe/public/js/frappe/form/toolbar.js:447
msgid "Reload"
msgstr "Mengisi kembali"
-#: public/js/frappe/list/base_list.js:239
+#: frappe/public/js/frappe/form/controls/attach.js:16
+msgid "Reload File"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:99
+#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'DocField'
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Ingat Nilai Dipilih terakhir"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Remember Last Selected Value"
-msgstr "Ingat Nilai Dipilih terakhir"
-
-#: public/js/frappe/form/reminders.js:33
+#. Label of the remind_at (Datetime) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/public/js/frappe/form/reminders.js:33
msgid "Remind At"
msgstr ""
-#. Label of a Datetime field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Remind At"
-msgstr ""
-
-#: public/js/frappe/form/toolbar.js:436
+#: frappe/public/js/frappe/form/toolbar.js:479
msgid "Remind Me"
msgstr ""
-#: public/js/frappe/form/reminders.js:13
+#: frappe/public/js/frappe/form/reminders.js:13
msgid "Remind Me In"
msgstr ""
#. Name of a DocType
-#: automation/doctype/reminder/reminder.json
+#: frappe/automation/doctype/reminder/reminder.json
msgid "Reminder"
msgstr ""
-#: automation/doctype/reminder/reminder.py:38
+#: frappe/automation/doctype/reminder/reminder.py:39
msgid "Reminder cannot be created in past."
msgstr ""
-#: public/js/frappe/form/reminders.js:96
+#: frappe/public/js/frappe/form/reminders.js:96
msgid "Reminder set at {0}"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:8
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
+#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
+#: frappe/public/js/frappe/ui/group_by/group_by.html:4
+msgid "Remove"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:8
msgid "Remove Failed Jobs"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:488
+#: frappe/printing/page/print_format_builder/print_format_builder.js:493
msgid "Remove Field"
msgstr "Hapus Lapangan"
-#: printing/page/print_format_builder/print_format_builder.js:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:427
msgid "Remove Section"
msgstr "Hapus Bagian"
-#: custom/doctype/customize_form/customize_form.js:138
+#: frappe/custom/doctype/customize_form/customize_form.js:138
msgid "Remove all customizations?"
msgstr "Hapus semua kustomisasi?"
-#: public/js/frappe/utils/datatable.js:9
+#: frappe/public/js/form_builder/components/Section.vue:286
+msgid "Remove all fields in the column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:278
+#: frappe/public/js/frappe/utils/datatable.js:9
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120
msgid "Remove column"
msgstr ""
-#: core/doctype/file/file.py:155
-msgid "Removed {0}"
-msgstr "Dihapus {0}"
+#: frappe/public/js/form_builder/components/Field.vue:260
+msgid "Remove field"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:133
-#: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238
-#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:737
-#: public/js/frappe/views/treeview.js:295
+#: frappe/public/js/form_builder/components/Section.vue:279
+msgid "Remove last column"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
+msgid "Remove page break"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:266
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135
+msgid "Remove section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:140
+msgid "Remove tab"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Removed"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:137
+#: frappe/public/js/frappe/form/toolbar.js:254
+#: frappe/public/js/frappe/form/toolbar.js:258
+#: frappe/public/js/frappe/form/toolbar.js:435
+#: frappe/public/js/frappe/model/model.js:723
+#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Ubah nama"
-#: custom/doctype/custom_field/custom_field.js:115
-#: custom/doctype/custom_field/custom_field.js:132
+#: frappe/custom/doctype/custom_field/custom_field.js:116
+#: frappe/custom/doctype/custom_field/custom_field.js:136
msgid "Rename Fieldname"
msgstr ""
-#: public/js/frappe/model/model.js:724
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "Ubah nama {0}"
-#: core/doctype/doctype/doctype.py:688
+#: frappe/core/doctype/doctype/doctype.py:698
msgid "Renamed files and replaced code in controllers, please check!"
msgstr "Mengganti nama file dan mengganti kode dalam pengontrol, harap periksa!"
-#: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
+msgid "Render labels to the left and values to the right in this section"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:43
+#: frappe/desk/doctype/todo/todo.js:36
msgid "Reopen"
msgstr "Membuka lagi"
-#: public/js/frappe/form/toolbar.js:479
+#: frappe/public/js/frappe/form/toolbar.js:547
msgid "Repeat"
msgstr "ulangi"
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Repeat Header and Footer"
msgstr ""
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_on (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Ulangi On"
+msgstr ""
-#. Label of a Date field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_till (Date) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr "Ulangi Sampai"
+msgstr ""
-#. Label of a Int field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Day"
-msgstr "Ulangi pada hari"
+msgstr ""
-#. Label of a Table field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Days"
msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Last Day of the Month"
-msgstr "Ulangi pada Hari Terakhir Bulan Ini"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_this_event (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Ulangi Acara ini"
+msgstr ""
-#: utils/password_strength.py:112
+#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
msgstr "Mengulangi seperti "aaa" mudah ditebak"
-#: utils/password_strength.py:107
+#: frappe/utils/password_strength.py:105
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Mengulangi seperti "abcabcabc" hanya sedikit lebih sulit untuk menebak dari "abc""
-#: public/js/frappe/form/sidebar/form_sidebar.js:135
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Ulangi {0}"
-#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Replied"
-msgstr "Menjawab"
+#: frappe/core/doctype/role_replication/role_replication.js:7
+#: frappe/core/doctype/role_replication/role_replication.js:14
+msgid "Replicate"
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:8
+msgid "Replicating..."
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:13
+msgid "Replication completed."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
msgid "Replied"
msgstr "Menjawab"
-#: core/doctype/communication/communication.js:57
-#: public/js/frappe/form/footer/form_timeline.js:550
+#. Label of the reply (Text Editor) field in DocType 'Discussion Reply'
+#: frappe/core/doctype/communication/communication.js:57
+#: frappe/public/js/frappe/form/footer/form_timeline.js:563
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Reply"
msgstr "Membalas"
-#. Label of a Text Editor field in DocType 'Discussion Reply'
-#: website/doctype/discussion_reply/discussion_reply.json
-msgctxt "Discussion Reply"
-msgid "Reply"
-msgstr "Membalas"
-
-#: core/doctype/communication/communication.js:62
+#: frappe/core/doctype/communication/communication.js:62
msgid "Reply All"
msgstr "Membalas semua"
+#. Label of the report (Check) field in DocType 'Custom DocPerm'
+#. Label of the report (Link) field in DocType 'Custom Role'
+#. Label of the report (Check) field in DocType 'DocPerm'
#. Name of a DocType
-#: core/doctype/report/report.json public/js/frappe/request.js:610
-msgid "Report"
-msgstr "Laporan"
-
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Report"
-msgstr "Laporan"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Report"
-msgstr "Laporan"
-
-#. Label of a Link field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Report"
-msgstr "Laporan"
-
-#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Report"
-msgstr "Laporan"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Report"
-msgstr "Laporan"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Report"
-msgstr "Laporan"
-
-#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Report"
-msgstr "Laporan"
-
-#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Report"
-msgstr "Laporan"
-
-#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Report"
-msgid "Report"
-msgstr "Laporan"
-
#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
#. Page and Report'
-#. Label of a Link field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Report"
-msgstr "Laporan"
-
+#. Label of the report (Link) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of a Link in the Build Workspace
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Type' (Select) field in DocType 'Number Card'
+#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health
+#. Report'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Report"
-msgstr "Laporan"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the report (Link) field in DocType 'Auto Email Report'
+#. Option for the 'Print Format For' (Select) field in DocType 'Print Format'
+#. Label of the report (Link) field in DocType 'Print Format'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/public/js/frappe/form/print_utils.js:25
+#: frappe/public/js/frappe/request.js:615
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "Report"
msgstr "Laporan"
-#: public/js/frappe/list/list_view_select.js:66
-msgid "Report Builder"
-msgstr "Report Builder"
-
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Builder"
-msgstr "Report Builder"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/list/list_view_select.js:66
msgid "Report Builder"
-msgstr "Report Builder"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_column/report_column.json
msgid "Report Column"
msgstr "Kolom Laporan"
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the report_description (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr "Deskripsi laporan"
+msgstr ""
-#: core/doctype/report/report.py:148
+#: frappe/core/doctype/report/report.py:151
msgid "Report Document Error"
msgstr "Laporkan Kesalahan Dokumen"
#. Name of a DocType
-#: core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Report Filter"
msgstr "Filter Laporan"
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the report_filters (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "laporan Filter"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the report_hide (Check) field in DocType 'DocField'
+#. Label of the report_hide (Check) field in DocType 'Custom Field'
+#. Label of the report_hide (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Laporan Hide"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Report Hide"
-msgstr "Laporan Hide"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Report Hide"
-msgstr "Laporan Hide"
-
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the report_information_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Report Information"
-msgstr "Laporkan Informasi"
+msgstr ""
#. Name of a role
-#: core/doctype/report/report.json
-#: email/doctype/auto_email_report/auto_email_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Manager"
msgstr "Manajer Laporan"
-#: public/js/frappe/views/reports/query_report.js:1793
+#. Label of the report_name (Data) field in DocType 'Access Log'
+#. Label of the report_name (Data) field in DocType 'Prepared Report'
+#. Label of the report_name (Data) field in DocType 'Report'
+#. Label of the report_name (Link) field in DocType 'Dashboard Chart'
+#. Label of the report_name (Link) field in DocType 'Number Card'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1954
msgid "Report Name"
msgstr "Nama Laporan"
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Report Name"
-msgstr "Nama Laporan"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Report Name"
-msgstr "Nama Laporan"
-
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Report Name"
-msgstr "Nama Laporan"
-
-#. Label of a Data field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Report Name"
-msgstr "Nama Laporan"
-
-#. Label of a Data field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Name"
-msgstr "Nama Laporan"
-
-#: desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:69
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Report Ref DocType"
+msgstr ""
+
+#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr "Laporkan Jenis Dokumen Referensi"
+msgstr ""
-#. Label of a Read Only field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the report_type (Select) field in DocType 'Report'
+#. Label of the report_type (Data) field in DocType 'Onboarding Step'
+#. Label of the report_type (Read Only) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr "Jenis Laporan"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Report Type"
-msgstr "Jenis Laporan"
+#: frappe/public/js/frappe/list/base_list.js:203
+msgid "Report View"
+msgstr ""
-#. Label of a Select field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Type"
-msgstr "Jenis Laporan"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:26
+msgid "Report bug"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1750
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "Report cannot be set for Single types"
msgstr "Laporan tidak dapat ditetapkan untuk jenis Tunggal"
-#: desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
+#: frappe/desk/doctype/number_card/number_card.js:191
msgid "Report has no data, please modify the filters or change the Report Name"
msgstr "Laporan tidak memiliki data, harap modifikasi filter atau ubah Nama Laporan"
-#: desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
+#: frappe/desk/doctype/number_card/number_card.js:186
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Laporan tidak memiliki bidang numerik, harap ubah Nama Laporan"
-#: public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:1012
msgid "Report initiated, click to view status"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:102
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:110
msgid "Report limit reached"
msgstr ""
-#: core/doctype/prepared_report/prepared_report.py:202
+#: frappe/core/doctype/prepared_report/prepared_report.py:223
msgid "Report timed out."
msgstr ""
-#: desk/query_report.py:568
+#: frappe/desk/query_report.py:610
msgid "Report updated successfully"
msgstr "Laporan berhasil diperbarui"
-#: public/js/frappe/views/reports/report_view.js:1283
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr "Laporan tidak disimpan (ada kesalahan)"
-#: public/js/frappe/views/reports/query_report.js:1831
+#: frappe/public/js/frappe/views/reports/query_report.js:1992
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Laporan dengan lebih dari 10 kolom terlihat lebih baik dalam mode Lansekap."
-#: public/js/frappe/ui/toolbar/search_utils.js:235
-#: public/js/frappe/ui/toolbar/search_utils.js:236
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252
msgid "Report {0}"
msgstr "Laporan {0}"
-#: desk/reportview.py:326
+#: frappe/desk/reportview.py:364
msgid "Report {0} deleted"
msgstr ""
-#: desk/query_report.py:50
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Laporan {0} dinonaktifkan"
-#: desk/reportview.py:303
+#: frappe/desk/reportview.py:341
msgid "Report {0} saved"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:20
+#: frappe/public/js/frappe/views/reports/report_view.js:20
msgid "Report:"
msgstr "Melaporkan:"
-#: public/js/frappe/ui/toolbar/search_utils.js:531
+#. Label of the prepared_report_section (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547
msgid "Reports"
msgstr "Laporan"
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Reports"
-msgstr "Laporan"
-
-#: patches/v14_0/update_workspace2.py:50
+#: frappe/patches/v14_0/update_workspace2.py:50
msgid "Reports & Masters"
msgstr "Laporan & Master"
-#: public/js/frappe/views/reports/query_report.js:851
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Reports already in Queue"
msgstr "Laporan sudah dalam Antrian"
-#: www/me.html:66
-msgid "Request Account Deletion"
+#. Description of a DocType
+#: frappe/core/doctype/user/user.json
+msgid "Represents a User in the system."
msgstr ""
-#. Label of a Code field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Represents the states allowed in one document and role assigned to change the state."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.js:101
msgid "Request Body"
msgstr ""
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the data (Code) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Data"
-msgstr "Meminta Data"
+msgstr ""
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_description (Data) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Description"
msgstr ""
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_headers (Code) field in DocType 'Recorder'
+#. Label of the request_headers (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Headers"
msgstr ""
-#. Label of a Code field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Request Headers"
-msgstr ""
-
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_id (Data) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request ID"
msgstr ""
-#. Label of a Int field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Request Limit"
msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_method (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_structure (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr "Struktur Permintaan"
+msgstr ""
-#: public/js/frappe/request.js:228
+#: frappe/public/js/frappe/request.js:231
msgid "Request Timed Out"
msgstr "Batas waktu permintaan habis"
-#: public/js/frappe/request.js:241
+#. Label of the timeout (Int) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/request.js:244
msgid "Request Timeout"
msgstr ""
-#. Label of a Int field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Request Timeout"
-msgstr ""
-
-#. Label of a Data field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_url (Small Text) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "Permintaan URL"
+msgstr ""
-#. Label of a Code field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Membutuhkan Sertifikat Tepercaya"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com"
msgstr ""
#. Description of the 'LDAP search path for Users' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
msgstr ""
-#: core/doctype/communication/communication.js:279
+#: frappe/core/doctype/communication/communication.js:279
msgid "Res: {0}"
-msgstr "Res: {0}"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:101
-#: desk/doctype/global_search_settings/global_search_settings.js:19
-#: desk/doctype/module_onboarding/module_onboarding.js:17
-#: website/doctype/portal_settings/portal_settings.js:19
+#: frappe/desk/doctype/form_tour/form_tour.js:101
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17
+#: frappe/website/doctype/portal_settings/portal_settings.js:19
msgid "Reset"
msgstr "ulang"
-#: custom/doctype/customize_form/customize_form.js:136
+#: frappe/custom/doctype/customize_form/customize_form.js:136
msgid "Reset All Customizations"
msgstr ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:21
-#: public/js/workflow_builder/workflow_builder.bundle.js:37
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37
msgid "Reset Changes"
msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:305
+#: frappe/public/js/frappe/widgets/chart_widget.js:306
msgid "Reset Chart"
msgstr "Atur Ulang Grafik"
-#: public/js/frappe/views/dashboard/dashboard_view.js:38
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39
msgid "Reset Dashboard Customizations"
msgstr ""
-#: public/js/frappe/list/list_settings.js:227
+#: frappe/public/js/frappe/list/list_settings.js:230
msgid "Reset Fields"
msgstr "Setel Ulang Bidang"
-#: core/doctype/user/user.js:161 core/doctype/user/user.js:164
+#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182
msgid "Reset LDAP Password"
msgstr "Setel ulang Kata Sandi LDAP"
-#: custom/doctype/customize_form/customize_form.js:128
+#: frappe/custom/doctype/customize_form/customize_form.js:128
msgid "Reset Layout"
msgstr ""
-#: core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:230
msgid "Reset OTP Secret"
msgstr "Setel ulang OTP Secret"
-#: core/doctype/user/user.js:145 www/login.html:179 www/me.html:35
-#: www/me.html:44 www/update-password.html:3 www/update-password.html:9
+#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199
+#: frappe/www/me.html:48 frappe/www/update-password.html:3
+#: frappe/www/update-password.html:32
msgid "Reset Password"
-msgstr "Reset Password"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the reset_password_key (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr "Reset Password Key"
+msgstr ""
-#. Label of a Duration field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Link Expiry Duration"
msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the reset_password_template (Link) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:109
+#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
msgstr "Atur Ulang Perizinan untuk {0}?"
-#: public/js/frappe/utils/datatable.js:8
+#: frappe/public/js/form_builder/components/Field.vue:114
+msgid "Reset To Default"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:8
msgid "Reset sorting"
msgstr ""
-#: www/me.html:36
-msgid "Reset the password for your account"
-msgstr ""
-
-#: public/js/frappe/form/grid_row.js:409
+#: frappe/public/js/frappe/form/grid_row.js:417
msgid "Reset to default"
msgstr ""
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
msgid "Reset to defaults"
msgstr "Ulang ke default"
-#: templates/emails/password_reset.html:3
+#: frappe/templates/emails/password_reset.html:3
msgid "Reset your password"
msgstr "Mereset password Anda"
-#. Label of a Text Editor field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Response"
-msgstr "Tanggapan"
+#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource"
+msgstr ""
-#. Label of a Section Break field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Response"
-msgstr "Tanggapan"
+#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Documentation"
+msgstr ""
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Response"
-msgstr "Tanggapan"
+#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Name"
+msgstr ""
-#. Label of a Code field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource Policy URI"
+msgstr ""
+
+#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Resource TOS URI"
+msgstr ""
+
+#. Label of the response (Text Editor) field in DocType 'Email Template'
+#. Label of the response_section (Section Break) field in DocType 'Integration
+#. Request'
+#. Label of the response (Code) field in DocType 'Webhook Request Log'
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+msgid "Response"
+msgstr ""
+
+#. Label of the response_html (Code) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
msgid "Response "
msgstr ""
-#. Label of a Select field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the response_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr "Response Type"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:400
+#: frappe/public/js/frappe/ui/notifications/notifications.js:414
msgid "Rest of the day"
msgstr ""
-#: core/doctype/deleted_document/deleted_document.js:11
-#: core/doctype/deleted_document/deleted_document_list.js:48
+#: frappe/core/doctype/deleted_document/deleted_document.js:11
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:48
msgid "Restore"
msgstr "Mengembalikan"
-#: core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:509
msgid "Restore Original Permissions"
msgstr "Kembalikan Izin Asli"
-#: website/doctype/portal_settings/portal_settings.js:20
+#: frappe/website/doctype/portal_settings/portal_settings.js:20
msgid "Restore to default settings?"
msgstr "Mengembalikan ke pengaturan default?"
-#. Label of a Check field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the restored (Check) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr "Pulih"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:73
+#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
msgstr "Mengembalikan Dokumen yang Dihapus"
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the restrict_ip (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Membatasi IP"
+msgstr ""
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
+#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
+#. Label of the restrict_to_domain (Link) field in DocType 'Page'
+#. Label of the restrict_to_domain (Link) field in DocType 'Role'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json
msgid "Restrict To Domain"
-msgstr "Batasi Ke Domain"
+msgstr ""
-#. Label of a Link field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Restrict To Domain"
-msgstr "Batasi Ke Domain"
-
-#. Label of a Link field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Restrict To Domain"
-msgstr "Batasi Ke Domain"
-
-#. Label of a Link field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Restrict To Domain"
-msgstr "Batasi Ke Domain"
-
-#. Label of a Link field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace'
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Restrict to Domain"
-msgstr "Batasi ke Domain"
-
-#. Label of a Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Restrict to Domain"
-msgstr "Batasi ke Domain"
+msgstr ""
#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)"
-msgstr "Membatasi pengguna dari alamat IP ini saja. Beberapa alamat IP dapat ditambahkan dengan memisahkan dengan koma. Juga menerima alamat IP parsial seperti (111.111.111)"
+msgstr ""
-#: public/js/frappe/list/list_view.js:172
+#: frappe/public/js/frappe/list/list_view.js:196
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Batasan"
-#: public/js/frappe/ui/toolbar/awesome_bar.js:354
-#: public/js/frappe/ui/toolbar/awesome_bar.js:369
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
msgid "Result"
msgstr ""
-#: email/doctype/email_queue/email_queue_list.js:27
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Resume Sending"
msgstr "Lanjutkan Mengirim"
-#: core/doctype/data_import/data_import.js:110
+#. Label of the retry (Int) field in DocType 'Email Queue'
+#: frappe/core/doctype/data_import/data_import.js:110
+#: frappe/desk/page/setup_wizard/setup_wizard.js:297
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Retry"
msgstr "Mencoba kembali"
-#. Label of a Int field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Retry"
-msgstr "Mencoba kembali"
-
-#: email/doctype/email_queue/email_queue_list.js:47
+#: frappe/email/doctype/email_queue/email_queue_list.js:47
msgid "Retry Sending"
msgstr ""
-#: www/qrcode.html:15
+#: frappe/www/qrcode.html:15
msgid "Return to the Verification screen and enter the code displayed by your authentication app"
msgstr "Kembali ke layar Verifikasi dan masukkan kode yang ditampilkan oleh aplikasi autentikasi Anda"
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the reverse (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Reverse Icon Color"
-msgstr "Membalikkan Icon Warna"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.js:10
-#: social/doctype/energy_point_log/energy_point_log.js:15
-msgid "Revert"
-msgstr "Kembali"
-
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Revert"
-msgstr "Kembali"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Revert Of"
-msgstr "Kembalikan Dari"
-
-#. Label of a Check field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reverted"
-msgstr "Dikembalikan"
-
-#: database/schema.py:162
+#: frappe/database/schema.py:161
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
msgstr "Mengembalikan panjang ke {0} untuk '{1}' dalam '{2}'. Menyetel panjang sebagai {3} akan menyebabkan pemotongan data."
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Review"
-msgstr "Ulasan"
-
-#. Name of a DocType
-#: social/doctype/review_level/review_level.json
-msgid "Review Level"
-msgstr "Tingkat Ulasan"
-
-#. Label of a Table field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Review Levels"
-msgstr "Tinjau Tingkat"
-
-#. Label of a Int field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Review Points"
-msgstr "Poin Ulasan"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the revocation_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Revocation URI"
msgstr ""
-#: www/third_party_apps.html:45
+#: frappe/www/third_party_apps.html:47
msgid "Revoke"
msgstr "Mencabut"
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr "dicabut"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Rich Text"
-msgstr "Rich Text"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Rich Text"
-msgstr "Rich Text"
-
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Rich Text"
-msgstr "Rich Text"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Right"
-msgstr "Benar"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Right"
-msgstr "Benar"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Right"
msgstr "Benar"
-#: printing/page/print_format_builder/print_format_builder.js:484
+#: frappe/printing/page/print_format_builder/print_format_builder.js:484
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156
msgctxt "alignment"
msgid "Right"
msgstr "Benar"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Bottom"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Center"
msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the robots_txt (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Robots.txt"
-msgstr "robots.txt"
+msgstr ""
+#. Label of the role (Link) field in DocType 'Custom DocPerm'
+#. Label of the roles (Table) field in DocType 'Custom Role'
+#. Label of the role (Link) field in DocType 'DocPerm'
+#. Label of the role (Link) field in DocType 'Has Role'
#. Name of a DocType
-#: core/doctype/role/role.json core/doctype/user_type/user_type.py:109
-#: core/page/permission_manager/permission_manager.js:212
-#: core/page/permission_manager/permission_manager.js:439
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Table field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'Has Role'
-#: core/doctype/has_role/has_role.json
-msgctxt "Has Role"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'Onboarding Permission'
-#: desk/doctype/onboarding_permission/onboarding_permission.json
-msgctxt "Onboarding Permission"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Role"
-msgstr "Peran"
-
+#. Label of the role (Link) field in DocType 'User Type'
#. Label of a Link in the Users Workspace
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role"
+#. Label of the role (Link) field in DocType 'Onboarding Permission'
+#. Label of the role (Link) field in DocType 'ToDo'
+#. Label of the role (Link) field in DocType 'OAuth Client Role'
+#. Label of the role (Link) field in DocType 'Portal Menu Item'
+#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/has_role/has_role.json
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type/user_type.py:110
+#: frappe/core/page/permission_manager/permission_manager.js:219
+#: frappe/core/page/permission_manager/permission_manager.js:456
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Role"
msgstr "Peran"
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
-msgid "Role"
-msgstr "Peran"
-
-#. Label of a Link field in DocType 'Workflow Action Permitted Role'
-#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
-msgctxt "Workflow Action Permitted Role"
-msgid "Role"
-msgstr "Peran"
-
-#: core/doctype/role/role.js:8
+#: frappe/core/doctype/role/role.js:8
msgid "Role 'All' will be given to all system + website users."
msgstr ""
-#: core/doctype/role/role.js:13
+#: frappe/core/doctype/role/role.js:13
msgid "Role 'Desk User' will be given to all system users."
msgstr ""
-#. Label of a Data field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the role_name (Data) field in DocType 'Role'
+#. Label of the role_profile (Data) field in DocType 'Role Profile'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Nama Peran"
-
-#. Label of a Data field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
-msgid "Role Name"
-msgstr "Nama Peran"
+msgstr ""
#. Name of a DocType
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgid "Role Permission for Page and Report"
-msgstr "Peran Izin Page dan Laporan"
-
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role Permission for Page and Report"
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/workspace/users/users.json
msgid "Role Permission for Page and Report"
msgstr "Peran Izin Page dan Laporan"
-#: public/js/frappe/roles_editor.js:100
-msgid "Role Permissions"
-msgstr "Izin peran"
-
-#. Label of a Section Break field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
+#. Label of the permissions_section (Section Break) field in DocType 'User
+#. Document Type'
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/public/js/frappe/roles_editor.js:103
msgid "Role Permissions"
msgstr "Izin peran"
#. Label of a Link in the Users Workspace
-#: core/page/permission_manager/permission_manager.js:4
-#: core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:4
+#: frappe/core/workspace/users/users.json
msgid "Role Permissions Manager"
msgstr "Pengelola Perizinan Peran"
-#: public/js/frappe/list/list_view.js:1650
+#: frappe/public/js/frappe/list/list_view.js:1786
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Pengelola Perizinan Peran"
#. Name of a DocType
-#: core/doctype/role_profile/role_profile.json
-msgid "Role Profile"
-msgstr "Profil Peran"
-
+#. Label of the role_profile_name (Link) field in DocType 'User'
+#. Label of the role_profile (Link) field in DocType 'User Role Profile'
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role Profile"
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Profil Peran"
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Role Profile"
-msgstr "Profil Peran"
+#. Label of the role_profiles (Table MultiSelect) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Role Profiles"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Name of a DocType
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Role Replication"
+msgstr ""
+
+#. Label of the role_and_level (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the role_and_level (Section Break) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Peran dan Tingkat"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Role and Level"
-msgstr "Peran dan Tingkat"
-
-#: core/doctype/user/user.py:314
+#: frappe/core/doctype/user/user.py:365
msgid "Role has been set as per the user type {0}"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:59
+#. Label of the roles (Table) field in DocType 'Page'
+#. Label of the roles (Table) field in DocType 'Report'
+#. Label of the roles (Table) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of the sb1 (Section Break) field in DocType 'User'
+#. Label of the roles_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the roles (Table) field in DocType 'Custom HTML Block'
+#. Label of the roles (Table) field in DocType 'Dashboard Chart'
+#. Label of the roles (Table) field in DocType 'Workspace'
+#. Label of the roles_tab (Tab Break) field in DocType 'Workspace'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/permission_manager/permission_manager.js:66
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Roles"
msgstr "4.1.2 Roles(Peran)"
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#. Label of a Table field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Roles"
-msgstr "4.1.2 Roles(Peran)"
-
-#. Label of a Table field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Roles"
-msgstr "4.1.2 Roles(Peran)"
-
-#. Label of a Table field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Roles"
-msgstr "4.1.2 Roles(Peran)"
-
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Roles"
-msgstr "4.1.2 Roles(Peran)"
-
-#. Label of a Table field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Roles"
-msgstr "4.1.2 Roles(Peran)"
-
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles"
-msgstr "4.1.2 Roles(Peran)"
-
-#. Label of a Table field in DocType 'Workspace'
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Roles"
-msgstr "4.1.2 Roles(Peran)"
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
msgstr ""
-#. Label of a Table field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
+#. Label of the roles (Table) field in DocType 'Role Profile'
+#. Label of the roles (Table) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr "Peran Ditugaskan"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles Assigned"
-msgstr "Peran Ditugaskan"
-
-#. Label of a HTML field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
+#. Label of the roles_html (HTML) field in DocType 'Role Profile'
+#. Label of the roles_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Roles HTML"
-msgstr "Peran HTML"
+msgstr ""
-#. Label of a HTML field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles HTML"
-msgstr "Peran HTML"
-
-#. Label of a HTML field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
+#. and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Peran Html"
+msgstr ""
-#: utils/nestedset.py:283
+#: frappe/core/page/permission_manager/permission_manager_help.html:7
+msgid "Roles can be set for users from their User page."
+msgstr ""
+
+#: frappe/utils/nestedset.py:280
msgid "Root {0} cannot be deleted"
msgstr "Akar {0} tidak dapat dihapus"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr "Usul"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the rounding_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
msgstr ""
-#. Label of a Data field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Route"
-msgstr "Rute"
-
+#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
-msgid "Route"
-msgstr "Rute"
-
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the route (Data) field in DocType 'Navbar Item'
+#. Label of the route (Data) field in DocType 'DocType Layout'
+#. Label of the route (Data) field in DocType 'Route History'
+#. Label of the route (Data) field in DocType 'Blog Category'
+#. Label of the route (Data) field in DocType 'Blog Post'
+#. Label of the route (Data) field in DocType 'Help Article'
+#. Label of the route (Data) field in DocType 'Help Category'
+#. Label of the route (Data) field in DocType 'Portal Menu Item'
+#. Label of the route (Data) field in DocType 'Web Form'
+#. Label of the route (Data) field in DocType 'Web Page'
+#. Label of the route (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Route History'
-#: desk/doctype/route_history/route_history.json
-msgctxt "Route History"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Route"
-msgstr "Rute"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Route"
-msgstr "Rute"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/route_history/route_history.json
msgid "Route History"
msgstr "Riwayat Rute"
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Route History"
-msgstr "Riwayat Rute"
-
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the route_redirects (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr "Pengalihan Rute"
+msgstr ""
#. Description of the 'Home Page' (Data) field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Route: Example \"/desk\""
-msgstr "Rute: Contoh "/ desk""
+#: frappe/core/doctype/role/role.json
+msgid "Route: Example \"/app\""
+msgstr ""
-#: model/base_document.py:710 model/base_document.py:751 model/document.py:591
+#: frappe/model/base_document.py:852 frappe/model/document.py:779
msgid "Row"
msgstr "Baris"
-#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782
+#: frappe/core/doctype/version/version_view.html:73
+msgid "Row #"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1831
+#: frappe/core/doctype/doctype/doctype.py:1841
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: model/base_document.py:868
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Row # {0}:"
-#: core/doctype/doctype/doctype.py:492
+#: frappe/core/doctype/doctype/doctype.py:491
msgid "Row #{}: Fieldname is required"
msgstr ""
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Row Index"
-msgstr "Indeks Baris"
+#. Label of the row_format (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Row Format"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the row_index (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Row Index"
+msgstr ""
+
+#. Label of the row_indexes (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Row Indexes"
msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the row_name (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Nama Baris"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:349
+#: frappe/core/doctype/data_import/data_import.js:483
+msgid "Row Number"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:68
+msgid "Row Values Changed"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:367
+msgid "Row {0}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:352
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
msgstr "Baris {0}: Tidak diizinkan untuk menonaktifkan Wajib untuk bidang standar"
-#: custom/doctype/customize_form/customize_form.py:337
+#: frappe/custom/doctype/customize_form/customize_form.py:341
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
msgstr "Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk bidang standar"
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the rows_added_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Added"
-msgstr "baris Ditambahkan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Removed"
-msgstr "baris Dihapus"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Rows Threshold for Grid Search"
+msgstr ""
+
+#. Label of the rule (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Aturan"
+msgstr ""
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Rule"
-msgstr "Aturan"
-
-#. Label of a Section Break field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the section_break_3 (Section Break) field in DocType 'Document
+#. Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Ketentuan Aturan"
+msgstr ""
-#. Label of a Data field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Rule Name"
-msgstr "Nama aturan"
-
-#: permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Rules"
msgstr ""
#. Description of the 'Transitions' (Table) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules defining transition of state in the workflow."
-msgstr "Aturan yang mendefinisikan transisi status dalam alur kerja."
+msgstr ""
#. Description of the 'Transition Rules' (Section Break) field in DocType
#. 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc."
-msgstr "Aturan untuk bagaimana negara adalah transisi, seperti negara berikutnya dan mana peran diperbolehkan untuk mengubah keadaan dll"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Aturan dengan nomor prioritas lebih tinggi akan diterapkan terlebih dahulu."
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the dormant_days (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run Jobs only Daily if Inactive For (Days)"
-msgstr "Jalankan Pekerjaan hanya Setiap Hari jika Tidak Aktif Untuk (Hari)"
+msgstr ""
#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run scheduled jobs only if checked"
-msgstr "Menjalankan pekerjaan dijadwalkan hanya jika diperiksa"
+msgstr ""
-#. Name of a DocType
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Backup Settings"
-msgstr "S3 Backup Settings"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
+msgid "Runtime in Minutes"
+msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "S3 Backup Settings"
-msgid "S3 Backup Settings"
-msgstr "S3 Backup Settings"
-
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3 Backup selesai!"
-
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "S3 Bucket Details"
-msgstr "Detail Bucket S3"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
+msgid "Runtime in Seconds"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "SMS"
-msgstr "SMS"
-
-#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "SMS"
-msgstr "SMS"
-
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr "SMS"
+msgstr ""
-#. Label of a Small Text field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr "SMS Gateway URL"
+msgstr ""
#. Name of a DocType
-#: core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "SMS Log"
msgstr ""
#. Name of a DocType
-#: core/doctype/sms_parameter/sms_parameter.json
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "SMS Parameter"
msgstr "Parameter SMS"
#. Name of a DocType
-#: core/doctype/sms_settings/sms_settings.json
-msgid "SMS Settings"
-msgstr "Pengaturan SMS"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "SMS Settings"
msgstr "Pengaturan SMS"
-#: core/doctype/sms_settings/sms_settings.py:110
-msgid "SMS sent to following numbers: {0}"
-msgstr "SMS dikirim ke nomor berikut: {0}"
+#: frappe/core/doctype/sms_settings/sms_settings.py:110
+msgid "SMS sent successfully"
+msgstr ""
-#: email/doctype/email_account/email_account.py:182
+#: frappe/templates/includes/login/login.js:369
+msgid "SMS was not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:212
msgid "SMTP Server is required"
msgstr ""
-#. Description of the 'Enable Outgoing' (Check) field in DocType 'Email
-#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "SMTP Settings for outgoing emails"
-msgstr "Pengaturan SMTP untuk email keluar"
-
#. Option for the 'Type' (Select) field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL"
msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "SQL Conditions. Example: status=\"Open\""
-msgstr "Kondisi SQL. Contoh: status = "Open""
+msgstr ""
-#: core/doctype/recorder/recorder.js:36
+#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:85
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "SQL Explain"
msgstr ""
-#. Label of a HTML field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "SQL Explain"
-msgstr ""
-
-#. Label of a HTML field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the sql_output (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
msgstr ""
-#. Label of a Table field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the sql_queries (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "Mode SSL / TLS"
+msgstr ""
+
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "SWATCHES"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Manager"
-msgstr "Sales Manager"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Master Manager"
msgstr "Master Manajer Penjualan"
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Sales User"
msgstr "Penjualan Pengguna"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr "Tenaga penjualan"
+msgstr ""
+#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
-#: contacts/doctype/salutation/salutation.json
+#. Label of the salutation (Data) field in DocType 'Salutation'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/salutation/salutation.json
msgid "Salutation"
msgstr "Panggilan"
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Salutation"
-msgstr "Panggilan"
-
-#. Label of a Data field in DocType 'Salutation'
-#: contacts/doctype/salutation/salutation.json
-msgctxt "Salutation"
-msgid "Salutation"
-msgstr "Panggilan"
-
-#: integrations/doctype/webhook/webhook.py:109
+#: frappe/integrations/doctype/webhook/webhook.py:109
msgid "Same Field is entered more than once"
msgstr "Bidang yang sama sudah masuk lebih dari satu kali"
-#. Label of a HTML field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the sample (HTML) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Sampel"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Saturday"
-msgstr "Sabtu"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Saturday"
-msgstr "Sabtu"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Saturday"
-msgstr "Sabtu"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Saturday"
-msgstr "Sabtu"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the saturday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Saturday"
-msgstr "Sabtu"
-
-#: core/doctype/data_import/data_import.js:113
-#: desk/page/user_profile/user_profile_controller.js:319
-#: printing/page/print/print.js:831
-#: printing/page/print_format_builder/print_format_builder.js:160
-#: public/js/frappe/form/footer/form_timeline.js:638
-#: public/js/frappe/form/quick_entry.js:156
-#: public/js/frappe/list/list_settings.js:36
-#: public/js/frappe/list/list_settings.js:244
-#: public/js/frappe/list/list_sidebar_group_by.js:25
-#: public/js/frappe/ui/toolbar/toolbar.js:297
-#: public/js/frappe/utils/common.js:443
-#: public/js/frappe/views/kanban/kanban_settings.js:45
-#: public/js/frappe/views/kanban/kanban_settings.js:189
-#: public/js/frappe/views/kanban/kanban_view.js:340
-#: public/js/frappe/views/reports/query_report.js:1785
-#: public/js/frappe/views/reports/report_view.js:1631
-#: public/js/frappe/views/workspace/workspace.js:487
-#: public/js/frappe/widgets/base_widget.js:140
-#: public/js/frappe/widgets/quick_list_widget.js:117
-#: public/js/print_format_builder/print_format_builder.bundle.js:15
-#: public/js/workflow_builder/workflow_builder.bundle.js:33
-msgid "Save"
-msgstr "Simpan"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/data_import/data_import.js:113
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/page/print/print.js:858
+#: frappe/printing/page/print_format_builder/print_format_builder.js:160
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
+#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/list/list_settings.js:36
+#: frappe/public/js/frappe/list/list_settings.js:247
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364
+#: frappe/public/js/frappe/utils/common.js:443
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/reports/query_report.js:1946
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
+#: frappe/public/js/frappe/views/workspace/workspace.js:335
+#: frappe/public/js/frappe/widgets/base_widget.js:142
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33
msgid "Save"
msgstr "Simpan"
-#: core/doctype/user/user.js:316
+#: frappe/core/doctype/user/user.js:339
msgid "Save API Secret: {0}"
msgstr ""
-#: workflow/doctype/workflow/workflow.js:143
+#: frappe/workflow/doctype/workflow/workflow.js:143
msgid "Save Anyway"
msgstr "Simpan Saja"
-#: public/js/frappe/views/reports/report_view.js:1314
-#: public/js/frappe/views/reports/report_view.js:1638
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Disimpan Sebagai"
-#: public/js/frappe/views/dashboard/dashboard_view.js:62
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63
msgid "Save Customizations"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1949
msgid "Save Report"
msgstr "Menyimpan laporan"
-#: public/js/frappe/views/kanban/kanban_view.js:94
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
msgid "Save filters"
msgstr "Simpan filter"
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the save_on_complete (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Save on Completion"
msgstr ""
-#: public/js/frappe/form/form_tour.js:287
+#: frappe/public/js/frappe/form/form_tour.js:295
msgid "Save the document."
msgstr ""
-#: desk/form/save.py:46 model/rename_doc.py:108
-#: printing/page/print_format_builder/print_format_builder.js:845
-#: public/js/frappe/form/toolbar.js:260
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:910
+#: frappe/model/rename_doc.py:106
+#: frappe/printing/page/print_format_builder/print_format_builder.js:858
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
+#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
msgstr "Disimpan"
-#: public/js/frappe/list/list_settings.js:40
-#: public/js/frappe/views/kanban/kanban_settings.js:47
-#: public/js/frappe/views/workspace/workspace.js:499
+#: frappe/public/js/frappe/list/list_sidebar.html:88
+msgid "Saved Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:40
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
+#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
msgstr "Menyimpan"
-#: public/js/frappe/form/save.js:9
+#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Menyimpan"
-#: custom/doctype/customize_form/customize_form.js:343
+#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
msgstr ""
-#: desk/doctype/module_onboarding/module_onboarding.js:8
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
msgid "Saving this will export this document as well as the steps linked here as json."
msgstr ""
-#: public/js/form_builder/store.js:228
-#: public/js/print_format_builder/store.js:36
-#: public/js/workflow_builder/store.js:73
+#: frappe/public/js/form_builder/store.js:233
+#: frappe/public/js/print_format_builder/store.js:36
+#: frappe/public/js/workflow_builder/store.js:73
msgid "Saving..."
msgstr "Penghematan..."
-#: public/js/frappe/scanner/index.js:72
+#: frappe/public/js/frappe/scanner/index.js:72
msgid "Scan QRCode"
msgstr ""
-#: www/qrcode.html:14
+#: frappe/www/qrcode.html:14
msgid "Scan the QR Code and enter the resulting code displayed."
msgstr "Scan QR Code dan masukkan hasil kode yang ditampilkan."
-#: email/doctype/newsletter/newsletter.js:125
+#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Schedule"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
-#: public/js/frappe/views/communication.js:81
+#: frappe/public/js/frappe/views/communication.js:97
msgid "Schedule Send At"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Schedule sending at a later time"
-msgstr ""
-
-#: email/doctype/newsletter/newsletter_list.js:7
-msgid "Scheduled"
-msgstr "Dijadwalkan"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Scheduled"
-msgstr "Dijadwalkan"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled"
msgstr "Dijadwalkan"
-#. Label of a Link field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event'
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+msgid "Scheduled Against"
+msgstr ""
+
+#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job"
-msgstr "Pekerjaan Terjadwal"
+msgstr ""
#. Name of a DocType
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgid "Scheduled Job Log"
-msgstr "Log Pekerjaan Terjadwal"
-
-#. Linked DocType in Scheduled Job Type's connections
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job Log"
msgstr "Log Pekerjaan Terjadwal"
#. Name of a DocType
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
+#. Label of a Link in the Build Workspace
+#. Label of the scheduled_job_type (Link) field in DocType 'System Health
+#. Report Failing Jobs'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Scheduled Job Type"
msgstr "Jenis Pekerjaan yang Dijadwalkan"
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Scheduled Job Type"
-msgid "Scheduled Job Type"
-msgstr "Jenis Pekerjaan yang Dijadwalkan"
-
-#. Linked DocType in Server Script's connections
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Scheduled Job Type"
-msgstr "Jenis Pekerjaan yang Dijadwalkan"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/workspace/build/build.json
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Scheduled To Send"
-msgstr "Dijadwalkan Untuk Mengirim"
-
-#: core/doctype/server_script/server_script.py:274
+#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Eksekusi terjadwal untuk skrip {0} telah diperbarui"
-#: email/doctype/auto_email_report/auto_email_report.js:26
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:26
msgid "Scheduled to send"
msgstr "Dijadwalkan untuk mengirim"
-#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Scheduler Event"
-msgstr "Acara Penjadwal"
+#. Label of the scheduler_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Scheduler"
+msgstr ""
-#: core/doctype/data_import/data_import.py:97
+#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type'
+#. Name of a DocType
+#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Scheduler Event"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler Inactive"
msgstr "Penjadwal Tidak Aktif"
-#: utils/scheduler.py:196
+#. Label of the scheduler_status (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Scheduler Status"
+msgstr ""
+
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
-#: core/doctype/data_import/data_import.py:97
+#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler is inactive. Cannot import data."
msgstr "Penjadwal tidak aktif. Tidak dapat mengimpor data."
-#: core/doctype/rq_job/rq_job_list.js:19
+#: frappe/core/doctype/rq_job/rq_job_list.js:19
msgid "Scheduler: Active"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:21
+#: frappe/core/doctype/rq_job/rq_job_list.js:21
msgid "Scheduler: Inactive"
msgstr ""
-#. Label of a Data field in DocType 'OAuth Scope'
-#: integrations/doctype/oauth_scope/oauth_scope.json
-msgctxt "OAuth Scope"
+#. Label of the scope (Data) field in DocType 'OAuth Scope'
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#. Label of a Table field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
+#. App'
+#. Label of the scopes (Table) field in DocType 'Connected App'
+#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code'
+#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token'
+#. Label of the scopes (Text) field in DocType 'OAuth Client'
+#. Label of the scopes (Table) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Scopes"
-msgstr "lingkup"
+msgstr ""
-#. Label of a Text field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Scopes"
-msgstr "lingkup"
+#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Scopes Supported"
+msgstr ""
-#. Label of a Text field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Scopes"
-msgstr "lingkup"
-
-#. Label of a Text field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "Scopes"
-msgstr "lingkup"
-
-#. Label of a Table field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Scopes"
-msgstr "lingkup"
-
-#. Label of a Code field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the report_script (Code) field in DocType 'Report'
+#. Label of the script (Code) field in DocType 'Server Script'
+#. Label of the script (Code) field in DocType 'Client Script'
+#. Label of the script (Code) field in DocType 'Console Log'
+#. Label of the custom_javascript (Section Break) field in DocType 'Web Page'
+#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr "Skrip"
-
-#. Label of a Code field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
-msgid "Script"
-msgstr "Skrip"
-
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Script"
-msgstr "Skrip"
-
-#. Label of a Code field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Script"
-msgstr "Skrip"
-
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Script"
-msgstr "Skrip"
-
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Script"
-msgstr "Skrip"
+msgstr ""
#. Name of a role
-#: core/doctype/server_script/server_script.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Script Manager"
msgstr "Pengelola Skrip"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr "Script Laporan"
+msgstr ""
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the script_type (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Script Type"
-msgstr "Script Type"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/website_script/website_script.json
+msgid "Script to attach to all web pages."
+msgstr ""
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page'
+#: frappe/core/workspace/build/build.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Scripting"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Scripting"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the section_break_6 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Scripting / Style"
msgstr ""
-#: public/js/frappe/form/link_selector.js:46
-#: public/js/frappe/ui/toolbar/search.js:49
-#: public/js/frappe/ui/toolbar/search.js:68
-#: templates/includes/search_template.html:26 www/search.py:19
+#. Label of the scripts_section (Section Break) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Scripts"
+msgstr ""
+
+#. Label of the search_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/form/link_selector.js:46
+#: frappe/public/js/frappe/list/list_sidebar.html:69
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
+#: frappe/public/js/frappe/ui/toolbar/search.js:49
+#: frappe/public/js/frappe/ui/toolbar/search.js:68
+#: frappe/templates/discussions/search.html:2
+#: frappe/templates/includes/search_template.html:26
msgid "Search"
msgstr "Pencarian"
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the search_bar (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Search Bar"
msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the search_fields (Data) field in DocType 'DocType'
+#. Label of the search_fields (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Cari Fields"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Search Fields"
-msgstr "Cari Fields"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:186
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186
msgid "Search Help"
msgstr "mencari bantuan"
-#. Label of a Table field in DocType 'Global Search Settings'
-#: desk/doctype/global_search_settings/global_search_settings.json
-msgctxt "Global Search Settings"
+#. Label of the allowed_in_global_search (Table) field in DocType 'Global
+#. Search Settings'
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr "Prioritas Pencarian"
-
-#: www/search.py:14
-msgid "Search Results for"
msgstr ""
-#: core/doctype/doctype/doctype.py:1418
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
+msgid "Search Results"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13
+msgid "Search by filename or extension"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1467
msgid "Search field {0} is not valid"
msgstr "kolom pencarian {0} tidak valid"
-#: public/js/frappe/ui/toolbar/search.js:50
-#: public/js/frappe/ui/toolbar/search.js:69
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87
+msgid "Search fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:19
+msgid "Search fieldtypes..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:50
+#: frappe/public/js/frappe/ui/toolbar/search.js:69
msgid "Search for anything"
msgstr "Cari untuk apapun"
-#: public/js/frappe/ui/toolbar/awesome_bar.js:306
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306
msgid "Search for {0}"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166
msgid "Search in a document type"
msgstr "Cari dalam jenis dokumen"
-#: templates/includes/search_box.html:8
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:29
+msgid "Search or type a command ({0})"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/SearchBox.vue:8
+msgid "Search properties..."
+msgstr ""
+
+#: frappe/templates/includes/search_box.html:8
msgid "Search results for"
msgstr "Hasil pencarian"
-#: templates/includes/navbar/navbar_search.html:6
-#: templates/includes/search_box.html:2
-#: templates/includes/search_template.html:23
+#: frappe/templates/includes/navbar/navbar_search.html:6
+#: frappe/templates/includes/search_box.html:2
+#: frappe/templates/includes/search_template.html:23
msgid "Search..."
msgstr "Pencarian..."
-#: public/js/frappe/ui/toolbar/search.js:210
+#: frappe/public/js/frappe/ui/toolbar/search.js:210
msgid "Searching ..."
msgstr "Mencari ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#: frappe/public/js/form_builder/components/Section.vue:263
+#: frappe/website/doctype/web_template/web_template.json
msgid "Section"
-msgstr "Bagian"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Section Break"
-msgstr "Bagian istirahat"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Section Break"
-msgstr "Bagian istirahat"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Section Break"
-msgstr "Bagian istirahat"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Section Break"
-msgstr "Bagian istirahat"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr "Bagian istirahat"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:421
+#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
msgstr "bagian Heading"
-#. Label of a Data field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the section_id (Data) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Section ID"
msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Security Settings"
-msgstr "Pengaturan Keamanan"
+#: frappe/public/js/form_builder/components/Section.vue:28
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8
+msgid "Section Title"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:784
+#: frappe/public/js/form_builder/components/Section.vue:217
+#: frappe/public/js/form_builder/components/Section.vue:240
+msgid "Section must have at least one column"
+msgstr ""
+
+#. Label of the sb3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Security Settings"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:309
+msgid "See all Activity"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:854
msgid "See all past reports."
msgstr "Lihat semua laporan sebelumnya."
-#: public/js/frappe/form/form.js:1208
-#: website/doctype/contact_us_settings/contact_us_settings.js:4
+#: frappe/public/js/frappe/form/form.js:1235
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Lihat di Website"
-#: website/doctype/web_form/templates/web_form.html:150
+#: frappe/website/doctype/web_form/templates/web_form.html:153
+msgctxt "Button in web form"
msgid "See previous responses"
msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:48
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49
msgid "See the document at {0}"
msgstr "Lihat dokumen di {0}"
-#: core/doctype/error_log/error_log_list.js:5
+#. Label of the seen (Check) field in DocType 'Comment'
+#. Label of the seen (Check) field in DocType 'Communication'
+#. Label of the seen (Check) field in DocType 'Error Log'
+#. Label of the seen (Check) field in DocType 'Notification Settings'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log_list.js:5
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Seen"
msgstr "Terlihat"
-#. Label of a Check field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Seen"
-msgstr "Terlihat"
-
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Seen"
-msgstr "Terlihat"
-
-#. Label of a Check field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Seen"
-msgstr "Terlihat"
-
-#. Label of a Check field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Seen"
-msgstr "Terlihat"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Seen"
-msgstr "Terlihat"
-
-#. Label of a Section Break field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the seen_by_section (Section Break) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Dilihat oleh"
+msgstr ""
-#. Label of a Table field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the seen_by (Table) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Dilihat Dengan Table"
-
-#: printing/page/print/print.js:592
-msgid "Select"
-msgstr "Pilih"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Select"
-msgstr "Pilih"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Select"
-msgstr "Pilih"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Select"
-msgstr "Pilih"
+msgstr ""
+#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Select"
-msgstr "Pilih"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Select"
-msgstr "Pilih"
-
+#. Label of the select (Check) field in DocType 'DocPerm'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Select"
-msgstr "Pilih"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Select"
-msgstr "Pilih"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Select"
-msgstr "Pilih"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/page/print/print.js:602
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Pilih"
-#: public/js/frappe/views/communication.js:150
-#: public/js/frappe/views/interaction.js:93
-#: public/js/frappe/views/interaction.js:155
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+#: frappe/public/js/frappe/form/grid_row.js:481
+msgid "Select All"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:177
+#: frappe/public/js/frappe/views/communication.js:598
+#: frappe/public/js/frappe/views/interaction.js:93
+#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
msgstr "Pilih Lampiran"
-#: custom/doctype/client_script/client_script.js:25
-#: custom/doctype/client_script/client_script.js:28
+#: frappe/custom/doctype/client_script/client_script.js:25
+#: frappe/custom/doctype/client_script/client_script.js:28
msgid "Select Child Table"
msgstr "Pilih Tabel Anak"
-#: public/js/frappe/views/reports/report_view.js:357
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Pilih Kolom"
-#: public/js/frappe/form/print_utils.js:43
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
+#: frappe/public/js/frappe/form/print_utils.js:58
msgid "Select Columns"
msgstr "Pilih Kolom"
-#: desk/page/setup_wizard/setup_wizard.js:387
+#: frappe/desk/page/setup_wizard/setup_wizard.js:399
msgid "Select Country"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:404
+#: frappe/desk/page/setup_wizard/setup_wizard.js:415
msgid "Select Currency"
msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:240
-msgid "Select Dashboard"
-msgstr "Pilih Dasbor"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the dashboard_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/public/js/frappe/utils/dashboard_utils.js:240
msgid "Select Dashboard"
msgstr "Pilih Dasbor"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Select Date Range"
-msgstr "Pilih Rentang Tanggal"
-
-#: public/js/frappe/doctype/index.js:170
-msgid "Select DocType"
-msgstr "Pilih DocType"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Select DocType"
-msgstr "Pilih DocType"
-
-#. Label of a Link field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
-msgid "Select Doctype"
-msgstr "Pilih Doctype"
-
-#. Label of a Dynamic Link field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Select Document"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:50
-#: workflow/page/workflow_builder/workflow_builder.js:50
+#. Label of the doc_type (Link) field in DocType 'Web Form'
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
+#: frappe/public/js/frappe/doctype/index.js:171
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Select DocType"
+msgstr "Pilih DocType"
+
+#. Label of the reference_doctype (Link) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Select Doctype"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
msgid "Select Document Type"
msgstr "Pilih Jenis Dokumen"
-#: core/page/permission_manager/permission_manager.js:172
+#: frappe/core/page/permission_manager/permission_manager.js:179
msgid "Select Document Type or Role to start."
msgstr "Pilih Document Type atau Peran untuk memulai."
-#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762
+#: frappe/core/page/permission_manager/permission_manager_help.html:34
+msgid "Select Document Types to set which User Permissions are used to limit access."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
+#: frappe/public/js/frappe/doctype/index.js:200
+#: frappe/public/js/frappe/form/toolbar.js:838
msgid "Select Field"
msgstr "Pilih Bidang"
-#: public/js/frappe/form/grid_row.js:459
-#: public/js/frappe/list/list_settings.js:233
-#: public/js/frappe/views/kanban/kanban_settings.js:181
+#: frappe/public/js/frappe/ui/group_by/group_by.html:35
+#: frappe/public/js/frappe/ui/group_by/group_by.js:141
+msgid "Select Field..."
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:473
+#: frappe/public/js/frappe/list/list_settings.js:236
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Pilih Fields"
-#: public/js/frappe/data_import/data_exporter.js:143
+#: frappe/public/js/frappe/data_import/data_exporter.js:147
msgid "Select Fields To Insert"
msgstr "Pilih Bidang Untuk Disisipkan"
-#: public/js/frappe/data_import/data_exporter.js:144
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Update"
msgstr "Pilih Fields To Update"
-#: public/js/frappe/list/list_sidebar_group_by.js:21
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21
msgid "Select Filters"
msgstr "Pilih Filter"
-#: desk/doctype/event/event.py:96
+#: frappe/desk/doctype/event/event.py:103
msgid "Select Google Calendar to which event should be synced."
msgstr "Pilih Google Kalender tempat acara harus disinkronkan."
-#: contacts/doctype/contact/contact.py:75
+#: frappe/contacts/doctype/contact/contact.py:77
msgid "Select Google Contacts to which contact should be synced."
msgstr "Pilih Google Kontak yang kontaknya harus disinkronkan."
-#: public/js/frappe/list/list_view_select.js:185
+#: frappe/public/js/frappe/ui/group_by/group_by.html:10
+msgid "Select Group By..."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:185
msgid "Select Kanban"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:379
+#: frappe/desk/page/setup_wizard/setup_wizard.js:391
msgid "Select Language"
msgstr "Pilih bahasa"
-#. Label of a Select field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the list_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select List View"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:154
+#: frappe/public/js/frappe/data_import/data_exporter.js:158
msgid "Select Mandatory"
msgstr "pilih wajib"
-#: custom/doctype/customize_form/customize_form.js:235
+#: frappe/custom/doctype/customize_form/customize_form.js:280
msgid "Select Module"
msgstr "Pilih Modul"
-#: printing/page/print/print.js:175 printing/page/print/print.js:575
+#: frappe/printing/page/print/print.js:175
+#: frappe/printing/page/print/print.js:585
msgid "Select Network Printer"
msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the page_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: public/js/frappe/views/communication.js:144
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
+#: frappe/public/js/frappe/views/communication.js:160
msgid "Select Print Format"
msgstr "Pilih Print Format"
-#: printing/page/print_format_builder/print_format_builder.js:82
+#: frappe/printing/page/print_format_builder/print_format_builder.js:82
msgid "Select Print Format to Edit"
msgstr "Pilih Print Format untuk Mengedit"
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the report_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Report"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:623
+#: frappe/printing/page/print_format_builder/print_format_builder.js:631
msgid "Select Table Columns for {0}"
msgstr "Pilih Table Kolom untuk {0}"
-#: desk/page/setup_wizard/setup_wizard.js:396
+#: frappe/desk/page/setup_wizard/setup_wizard.js:408
msgid "Select Time Zone"
msgstr ""
-#. Label of a Autocomplete field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the transaction_type (Autocomplete) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "Pilih Transaksi"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:68
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the workspace_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
msgstr ""
-#: website/doctype/website_settings/website_settings.js:23
+#. Label of the select_workspaces_section (Section Break) field in DocType
+#. 'Workspace Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Select Workspaces"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Pilih Brand Image pertama."
-#: printing/page/print_format_builder/print_format_builder.js:108
+#: frappe/printing/page/print_format_builder/print_format_builder.js:108
msgid "Select a DocType to make a new format"
msgstr "Pilih DOCTYPE untuk membuat format baru"
-#: integrations/doctype/webhook/webhook.py:130
-msgid "Select a document to check if it meets conditions."
+#: frappe/public/js/form_builder/components/Sidebar.vue:56
+msgid "Select a field to edit its properties."
msgstr ""
-#: integrations/doctype/webhook/webhook.py:142
-msgid "Select a document to preview request data"
-msgstr ""
-
-#: public/js/frappe/views/treeview.js:342
+#: frappe/public/js/frappe/views/treeview.js:358
msgid "Select a group node first."
msgstr "Pilih simpul kelompok terlebih dahulu."
-#: core/doctype/doctype/doctype.py:1885
+#: frappe/core/doctype/doctype/doctype.py:1942
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Pilih Bidang Pengirim yang valid untuk membuat dokumen dari Email"
-#: core/doctype/doctype/doctype.py:1869
+#: frappe/core/doctype/doctype/doctype.py:1926
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Pilih bidang Subjek yang valid untuk membuat dokumen dari Email"
-#: public/js/frappe/form/form_tour.js:313
+#: frappe/public/js/frappe/form/form_tour.js:321
msgid "Select an Image"
msgstr ""
+#: frappe/www/apps.html:10
+msgid "Select an app to continue"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2
+msgid "Select an existing format to edit or start a new format."
+msgstr ""
+
#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Select an image of approx width 150px with a transparent background for best results."
-msgstr "Pilih gambar lebar kira-kira 150px dengan latar belakang transparan untuk hasil terbaik."
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:34
+#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
msgstr "Pilih minimal 1 record untuk pencetakan"
-#: core/doctype/success_action/success_action.js:18
+#: frappe/core/doctype/success_action/success_action.js:18
msgid "Select atleast 2 actions"
msgstr "Pilih minimal 2 tindakan"
-#: public/js/frappe/list/list_view.js:1201
+#: frappe/public/js/frappe/list/list_view.js:1302
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Pilih item daftar"
-#: public/js/frappe/list/list_view.js:1153
-#: public/js/frappe/list/list_view.js:1169
+#: frappe/public/js/frappe/list/list_view.js:1254
+#: frappe/public/js/frappe/list/list_view.js:1270
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Pilih beberapa item daftar"
-#: public/js/frappe/views/calendar/calendar.js:174
+#: frappe/public/js/frappe/views/calendar/calendar.js:167
msgid "Select or drag across time slots to create a new event."
msgstr "Pilih atau seret di slot waktu untuk membuat acara baru."
-#: public/js/frappe/list/bulk_operations.js:195
+#: frappe/public/js/frappe/list/bulk_operations.js:239
msgid "Select records for assignment"
msgstr "Pilih catatan untuk tugas"
-#. Description of the 'Insert After' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Select the label after which you want to insert new field."
-msgstr "Pilih label setelah itu Anda ingin memasukkan bidang baru."
+#: frappe/public/js/frappe/list/bulk_operations.js:260
+msgid "Select records for removing assignment"
+msgstr ""
-#: public/js/frappe/utils/diffview.js:101
+#. Description of the 'Insert After' (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Select the label after which you want to insert new field."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
msgstr ""
-#: public/js/frappe/form/link_selector.js:24
-#: public/js/frappe/form/multi_select_dialog.js:79
-#: public/js/frappe/form/multi_select_dialog.js:279
-#: public/js/frappe/list/list_view_select.js:153
+#: frappe/public/js/frappe/form/link_selector.js:24
+#: frappe/public/js/frappe/form/multi_select_dialog.js:80
+#: frappe/public/js/frappe/form/multi_select_dialog.js:282
+#: frappe/public/js/frappe/list/list_view_select.js:153
+#: frappe/public/js/print_format_builder/Preview.vue:90
msgid "Select {0}"
msgstr "Pilih {0}"
-#: model/workflow.py:121
+#: frappe/model/workflow.py:117
msgid "Self approval is not allowed"
msgstr "Persetujuan diri tidak diizinkan"
-#: email/doctype/newsletter/newsletter.js:66
-#: email/doctype/newsletter/newsletter.js:74
-#: email/doctype/newsletter/newsletter.js:162
-#: public/js/frappe/views/communication.js:26 www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Kirim"
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Send After"
-msgstr "Kirim Setelah"
+#: frappe/public/js/frappe/views/communication.js:26
+msgctxt "Send Email"
+msgid "Send"
+msgstr "Kirim"
-#. Label of a Datetime field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Send After"
-msgstr "Kirim Setelah"
+#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence."
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the send_after (Datetime) field in DocType 'Communication'
+#. Label of the send_after (Datetime) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send After"
+msgstr ""
+
+#. Label of the event (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr "Kirim Pemberitahuan Aktif"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the send_email_alert (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "Kirim Notifikasi Email"
+msgstr ""
-#. Label of a Datetime field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Send Email At"
+#. Label of the send_email (Check) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send Email On State"
msgstr ""
#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
#. Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "Kirim Email Cetak Lampiran sebagai PDF (Disarankan)"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Send Email for Successful Backup"
-msgstr "Kirim Email untuk Pencadangan yang Sukses"
+#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Send Email To Creator"
+msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Send Email for Successful Backup"
-msgstr "Kirim Email untuk Pencadangan yang Sukses"
-
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Send Email for Successful backup"
-msgstr "Kirim Email untuk Pencadangan yang Sukses"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the send_me_a_copy (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Me A Copy of Outgoing Emails"
-msgstr "Kirimkan Saya Salinan Email yang Keluar"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Send Notification To"
-msgstr "Kirim Pemberitahuan untuk"
-
-#. Label of a Small Text field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the send_notification_to (Small Text) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr "Kirim Pemberitahuan ke"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the document_follow_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Documents Followed By Me"
-msgstr "Kirim Pemberitahuan Untuk Dokumen yang Saya Ikuti"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the thread_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr "Kirim Pemberitahuan Untuk Utas Email"
+msgstr ""
-#. Label of a Data field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Send Notifications To"
-msgstr "Kirim Pemberitahuan Untuk"
-
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Send Notifications To"
-msgstr "Kirim Pemberitahuan Untuk"
-
-#: email/doctype/auto_email_report/auto_email_report.js:21
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Kirim sekarang"
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Print as PDF"
-msgstr "Kirim Cetak sebagai PDF"
+msgstr ""
-#: public/js/frappe/views/communication.js:134
+#: frappe/public/js/frappe/views/communication.js:150
msgid "Send Read Receipt"
msgstr "Kirim Baca Receipt"
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the send_system_notification (Check) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Kirim Pemberitahuan Sistem"
-
-#: email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr "Kirim Ke Semua Penerima Tugas"
-
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Send Unsubscribe Link"
-msgstr "Kirim Unsubscribe Link"
-
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Send Web View Link"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the send_welcome_email (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
-msgstr "Kirim Email Selamat Datang"
-
-#: www/me.html:67
-msgid "Send a request to delete your account"
-msgstr ""
-
-#: email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
msgstr ""
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
-msgstr "Kirim pemberitahuan jika tanggal sesuai nilai kolom ini"
+msgstr ""
+
+#. Description of the 'Reference Datetime' (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send alert if datetime matches this field's value"
+msgstr ""
#. Description of the 'Value Changed' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send alert if this field's value changes"
-msgstr "Kirim pemberitahuan jika nilai kolom ini berubah"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the send_reminder (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Send an email reminder in the morning"
-msgstr "Kirim email pengingat di pagi hari"
+msgstr ""
#. Description of the 'Days Before or After' (Int) field in DocType
#. 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr "Kirim hari sebelum atau setelah tanggal referensi"
+msgstr ""
+
+#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send email when document transitions to the state."
+msgstr ""
#. Description of the 'Forward To Email Address' (Data) field in DocType
#. 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr "Kirim pertanyaan ke alamat email ini"
+msgstr ""
-#: www/login.html:210
+#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
msgid "Send login link"
msgstr ""
-#: public/js/frappe/views/communication.js:128
+#: frappe/public/js/frappe/views/communication.js:144
msgid "Send me a copy"
msgstr "Kirim Me Salin A"
-#: email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
-#. Label of a Check field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr "Kirim hanya jika ada data"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Send unsubscribe message in email"
-msgstr "Kirim pesan berhenti berlangganan dengan email"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the sender (Data) field in DocType 'Event'
+#. Label of the sender (Data) field in DocType 'ToDo'
+#. Label of the sender (Link) field in DocType 'Auto Email Report'
+#. Label of the sender (Data) field in DocType 'Email Queue'
+#. Label of the sender (Link) field in DocType 'Notification'
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/notification/notification.json
msgid "Sender"
-msgstr "Pengirim"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Sender"
-msgstr "Pengirim"
-
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sender"
-msgstr "Pengirim"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Sender"
-msgstr "Pengirim"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Sender"
-msgstr "Pengirim"
-
-#. Label of a Data field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Sender"
-msgstr "Pengirim"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the sender_email (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
-msgstr "Email Pengirim"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Sender Email"
-msgstr "Email Pengirim"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sender_field (Data) field in DocType 'DocType'
+#. Label of the sender_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Email Field"
msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Sender Email Field"
-msgstr ""
-
-#: core/doctype/doctype/doctype.py:1888
+#: frappe/core/doctype/doctype/doctype.py:1945
msgid "Sender Field should have Email in options"
msgstr "Sender Field harus memiliki opsi Email in"
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the sender_name (Data) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sender Name"
msgstr ""
-#. Label of a Data field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
-msgid "Sender Name"
-msgstr ""
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Sender Name Field"
-msgstr ""
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sender_name_field (Data) field in DocType 'DocType'
+#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Name Field"
msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr "Sendgrid"
-
-#: email/doctype/newsletter/newsletter.js:201
-msgid "Sending"
-msgstr "Mengirim"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Sending"
-msgstr "Mengirim"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Sending"
msgstr "Mengirim"
-#: email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
-#: email/doctype/newsletter/newsletter.js:196
-#: email/doctype/newsletter/newsletter_list.js:5
-msgid "Sent"
-msgstr "Terkirim"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Sent"
-msgstr "Terkirim"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Sent"
-msgstr "Terkirim"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Sent"
msgstr "Terkirim"
-#. Label of a Date field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the sent_folder_name (Data) field in DocType 'Email Account'
+#. Label of the sent_folder_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Sent Folder Name"
+msgstr ""
+
+#. Label of the sent_on (Date) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent On"
msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_receipt (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Mengirim Baca Receipt"
+msgstr ""
-#. Label of a Code field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the sent_to (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent To"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the sent_or_received (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Dikirim atau diterima"
-
-#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sent/Received Email"
-msgstr "Email Terkirim / Diterima"
-
-#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
-msgid "Separator"
-msgstr "Pemisah"
-
-#. Label of a Float field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Sequence Id"
msgstr ""
-#. Label of a Text field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Series List for this Transaction"
-msgstr "Daftar Series Transaksi ini"
+#. Option for the 'Event Category' (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
+msgid "Sent/Received Email"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:116
+#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+msgid "Separator"
+msgstr ""
+
+#. Label of the sequence_id (Float) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+msgid "Sequence Id"
+msgstr "Id Urutan"
+
+#. Label of the naming_series_options (Text) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Series List for this Transaction"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:226
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: core/doctype/doctype/doctype.py:1073
-#: core/doctype/document_naming_settings/document_naming_settings.py:171
+#: frappe/core/doctype/doctype/doctype.py:1109
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Seri {0} sudah digunakan dalam {1}"
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Aksi Server"
+msgstr ""
-#: public/js/frappe/request.js:606
+#: frappe/app.py:396 frappe/public/js/frappe/request.js:611
+#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "server error"
-#. Label of a Data field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
+#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Server IP"
-msgstr "IP server"
+msgstr ""
+#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
-#: core/doctype/server_script/server_script.json
-msgid "Server Script"
-msgstr "Skrip Server"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Server Script"
-msgstr "Skrip Server"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Server Script"
-msgstr "Skrip Server"
-
-#. Label of a Link field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Server Script"
-msgstr "Skrip Server"
-
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/workspace/build/build.json
msgid "Server Script"
msgstr "Skrip Server"
-#: utils/safe_exec.py:90
+#: frappe/utils/safe_exec.py:97
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
-#: core/doctype/server_script/server_script.js:32
+#: frappe/core/doctype/server_script/server_script.js:39
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: public/js/frappe/request.js:243 public/js/frappe/request.js:251
+#: frappe/public/js/frappe/request.js:254
+msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:246
msgid "Server was too busy to process this request. Please try again."
msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Service"
-msgstr "Jasa"
-
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the service (Select) field in DocType 'Email Account'
+#. Label of the integration_request_service (Data) field in DocType
+#. 'Integration Request'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Service"
msgstr "Jasa"
#. Name of a DocType
-#: core/doctype/session_default/session_default.json
+#: frappe/core/doctype/session_default/session_default.json
msgid "Session Default"
msgstr "Default Sesi"
#. Name of a DocType
-#: core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
msgid "Session Default Settings"
msgstr "Pengaturan Default Sesi"
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:296
+#. Label of the session_defaults (Table) field in DocType 'Session Default
+#. Settings'
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363
msgid "Session Defaults"
msgstr "Default Sesi"
-#. Label of a Table field in DocType 'Session Default Settings'
-#: core/doctype/session_default_settings/session_default_settings.json
-msgctxt "Session Default Settings"
-msgid "Session Defaults"
-msgstr "Default Sesi"
-
-#: public/js/frappe/ui/toolbar/toolbar.js:281
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348
msgid "Session Defaults Saved"
msgstr "Default Sesi Disimpan"
-#: app.py:345
+#: frappe/app.py:373
msgid "Session Expired"
msgstr "Sesi berakhir"
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the session_expiry (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: core/doctype/system_settings/system_settings.py:110
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "Sesi kadaluarsa harus dalam format {0}"
-#: public/js/frappe/ui/filters/filter.js:562
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
+#: frappe/desk/doctype/number_card/number_card.js:295
+#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/public/js/frappe/widgets/chart_widget.js:447
+msgid "Set"
+msgstr "Tetapkan"
+
+#: frappe/public/js/frappe/ui/filters/filter.js:607
msgctxt "Field value is set"
msgid "Set"
msgstr "Tetapkan"
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the set_banner_from_image (Button) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr "Set Banner dari Image"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:200
msgid "Set Chart"
msgstr "Setel Bagan"
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
-msgstr "Tetapkan Opsi Default untuk semua bagan di Dasbor ini (Mis: "warna": ["# d1d8dd", "# ff5858"])"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: desk/doctype/number_card/number_card.js:361
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
+#: frappe/desk/doctype/number_card/number_card.js:367
msgid "Set Dynamic Filters"
msgstr "Setel Filter Dinamis"
-#: desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: desk/doctype/number_card/number_card.js:277
-#: website/doctype/web_form/web_form.js:260
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
+#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/public/js/form_builder/components/Field.vue:80
+#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
msgstr "Tetapkan Filter"
-#: public/js/frappe/widgets/chart_widget.js:395
-#: public/js/frappe/widgets/quick_list_widget.js:102
+#: frappe/public/js/frappe/widgets/chart_widget.js:436
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:105
msgid "Set Filters for {0}"
msgstr "Setel Filter untuk {0}"
-#: core/doctype/user_type/user_type.py:91
+#: frappe/public/js/frappe/views/reports/query_report.js:2102
+msgid "Set Level"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:92
msgid "Set Limit"
msgstr ""
#. Description of the 'Setup Series for transactions' (Section Break) field in
#. DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
msgstr ""
-#. Label of a Password field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the new_password (Password) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Set Password Baru"
+msgstr ""
-#: desk/page/backups/backups.js:8
+#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
msgstr "Atur Jumlah Cadangan"
-#: www/update-password.html:9
+#: frappe/www/update-password.html:32
msgid "Set Password"
msgstr "Atur Kata Sandi"
-#: custom/doctype/customize_form/customize_form.js:112
+#: frappe/custom/doctype/customize_form/customize_form.js:112
msgid "Set Permissions"
msgstr "set Permissions"
-#: printing/page/print_format_builder/print_format_builder.js:471
+#: frappe/printing/page/print_format_builder/print_format_builder.js:471
msgid "Set Properties"
msgstr ""
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the property_section (Section Break) field in DocType
+#. 'Notification'
+#. Label of the set_property_after_alert (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr "Tetapkan Properti Setelah Pemberitahuan"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:207
-#: public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:207
+#: frappe/public/js/frappe/form/link_selector.js:208
msgid "Set Quantity"
msgstr "Set Kuantitas"
-#. Label of a Select field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the set_role_for (Select) field in DocType 'Role Permission for
+#. Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Set Role For"
-msgstr "Set Peran Untuk"
+msgstr ""
-#: core/doctype/user/user.js:122
-#: core/page/permission_manager/permission_manager.js:65
+#: frappe/core/doctype/user/user.js:131
+#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
-msgstr "Set User Permissions"
+msgstr ""
-#. Label of a Small Text field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the value (Small Text) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Mengatur Nilai"
+msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:72
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:124
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134
msgid "Set all private"
msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:72
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
msgid "Set all public"
msgstr ""
-#: printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:49
msgid "Set as Default"
msgstr "Set sebagai Default"
-#: website/doctype/website_theme/website_theme.js:33
+#: frappe/website/doctype/website_theme/website_theme.js:33
msgid "Set as Default Theme"
msgstr "Tetapkan sebagai Tema Default"
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Set by user"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Set by user"
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan"
-
-#. Description of the 'Precision' (Select) field in DocType 'Customize Form
-#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan"
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "Set dynamic filter values in JavaScript for the required fields here."
+msgstr ""
#. Description of the 'Precision' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan"
-
+#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
+#. Description of the 'Precision' (Select) field in DocType 'Customize Form
+#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the set_only_once (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
msgstr ""
+#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Set size in MB"
+msgstr ""
+
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the filters here. For example:\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the filters here. For example:\n"
"\n"
"[{\n"
"\tfieldname: \"company\",\n"
@@ -28069,11 +23498,8 @@ msgid ""
msgstr ""
#. Description of the 'Method' (Data) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the path to a whitelisted function that will return the data for the number card in the format:\n"
-"\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n"
"\n"
"{\n"
"\t\"value\": value,\n"
@@ -28083,9824 +23509,8140 @@ msgid ""
"}
"
msgstr ""
-#: contacts/doctype/address_template/address_template.py:32
+#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
msgstr "Mengatur Template Alamat ini sebagai default karena tidak ada standar lainnya"
-#: desk/doctype/global_search_settings/global_search_settings.py:85
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
msgstr "Menyiapkan dokumen Pencarian Global."
-#: desk/page/setup_wizard/setup_wizard.js:273
+#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
msgstr "Menyiapkan sistem anda"
-#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-#: public/js/frappe/ui/toolbar/toolbar.js:254
-#: public/js/frappe/views/workspace/workspace.js:515
-msgid "Settings"
-msgstr "Pengaturan"
-
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Settings"
-msgstr "Pengaturan"
-
-#. Label of a Tab Break field in DocType 'User'
+#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
+#. Label of the settings_tab (Tab Break) field in DocType 'User'
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Settings"
-msgstr "Pengaturan"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Settings"
-msgstr "Pengaturan"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Settings"
-msgstr "Pengaturan"
-
-#. Label of a Table field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
-msgid "Settings Dropdown"
-msgstr "Pengaturan Dropdown"
-
+#. Label of a Card Break in the Integrations Workspace
+#. Label of the settings_tab (Tab Break) field in DocType 'Web Form'
+#. Label of the settings (Tab Break) field in DocType 'Web Page'
#. Label of a Card Break in the Website Workspace
-#: public/js/frappe/ui/toolbar/search_utils.js:551
-#: website/workspace/website/website.json
-msgid "Setup"
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/integrations/workspace/integrations/integrations.json
+#: frappe/public/js/frappe/form/templates/print_layout.html:25
+#: frappe/public/js/frappe/ui/apps_switcher.js:137
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321
+#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/workspace/website/website.json frappe/www/me.html:20
+msgid "Settings"
msgstr "Pengaturan"
-#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Setup"
-msgstr "Pengaturan"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Setup Approval Workflows"
+#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Settings Dropdown"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1658
-#: public/js/frappe/views/reports/report_view.js:1609
+#. Description of a DocType
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Settings for Contact Us Page"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "Settings for the About Us Page"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Settings to control blog categories and interactions like comments and likes"
+msgstr ""
+
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
+msgid "Setup"
+msgstr "Pengaturan"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Setup > Customize Form"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:8
+msgid "Setup > User"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "Setup > User Permissions"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:1815
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Atur Email Otomatis"
-#: desk/page/setup_wizard/setup_wizard.js:204
+#. Label of the setup_complete (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Setup Complete"
msgstr "Pengaturan Selesai"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Setup Complete"
-msgstr "Pengaturan Selesai"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/role_permissions/role_permissions.json
-msgid "Setup Limited Access for a User"
-msgstr ""
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Setup Naming Series"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the setup_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Share"
-msgstr "Bagikan"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Share"
-msgstr "Bagikan"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Share"
-msgstr "Bagikan"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:236
+msgid "Setup failed"
+msgstr ""
+#. Label of the share (Check) field in DocType 'Custom DocPerm'
+#. Label of the share (Check) field in DocType 'DocPerm'
+#. Label of the share (Check) field in DocType 'DocShare'
+#. Label of the share (Check) field in DocType 'User Document Type'
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr "Bagikan"
+msgstr ""
-#: public/js/frappe/form/sidebar/share.js:107
+#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
msgstr "Dengan berbagi"
-#: public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/templates/set_sharing.html:49
+msgid "Share this document with"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
msgstr "Berbagi {0} dengan"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Bersama"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Shared"
-msgstr "Bersama"
-
-#: desk/form/assign_to.py:127
+#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
msgstr "Dibagikan dengan Pengguna berikut dengan akses Baca: {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr "pengiriman"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:31
+msgid "Shipping Address"
+msgstr "Alamat Pengiriman"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Toko"
+msgstr ""
-#. Label of a Data field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the short_name (Data) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr "Nama pendek"
+msgstr ""
-#: utils/password_strength.py:93
+#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
msgstr "pola keyboard pendek mudah ditebak"
-#. Label of a Table field in DocType 'Workspace'
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the shortcuts (Table) field in DocType 'Workspace'
+#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr "Pintasan"
+msgstr ""
-#: public/js/frappe/widgets/base_widget.js:46
-#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
+#: frappe/www/update-password.html:49 frappe/www/update-password.html:60
+#: frappe/www/update-password.html:120
msgid "Show"
msgstr "Menunjukkan"
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Show \"Call to Action\" in Blog"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
+#. 'System Settings'
+#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
+#. 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Show Absolute Datetime in Timeline"
+msgstr ""
+
+#. Label of the absolute_value (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show Attachments"
-msgstr "Tampilkan Lampiran"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
+msgid "Show All"
+msgstr ""
-#: desk/doctype/calendar_view/calendar_view.js:10
+#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Auth Server Metadata"
+msgstr ""
+
+#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
msgstr "Tampilkan Kalender"
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol_on_right (Check) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
msgstr ""
-#: desk/doctype/dashboard/dashboard.js:6
+#. Label of the show_dashboard (Check) field in DocType 'DocField'
+#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
+#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
msgstr "Tampilkan Dasbor"
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Show Dashboard"
-msgstr "Tampilkan Dasbor"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Show Dashboard"
-msgstr "Tampilkan Dasbor"
-
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the show_document (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr "Perlihatkan Dokumen"
+msgstr ""
-#: www/error.html:41 www/error.html:59
+#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
msgstr ""
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Show Failed Logs"
-msgstr "Tampilkan Log Gagal"
-
-#: public/js/frappe/form/layout.js:545
+#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the first_document (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr "Tampilkan Tur Formulir"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_error_traceback (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr "Tampilkan Kesalahan Lengkap dan Izinkan Pelaporan Masalah ke Pengembang"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr "Tunjukkan Formulir Lengkap?"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:228
+#. Label of the show_full_number (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show Full Number"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
msgstr "Tampilkan Pintasan Keyboard"
-#: public/js/frappe/views/kanban/kanban_settings.js:30
+#. Label of the show_labels (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
msgstr ""
-#. Label of a Check field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Show Labels"
-msgstr ""
-
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_language_picker (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the line_breaks (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr "Tampilkan Jalur Breaks setelah Bagian"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show List"
msgstr ""
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Show Percentage Stats"
-msgstr "Tampilkan Statistik Persentase"
+#: frappe/public/js/frappe/form/toolbar.js:410
+msgid "Show Links"
+msgstr ""
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
+#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Show Only Failed Logs"
+msgstr ""
+
+#. Label of the show_percentage_stats (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show Percentage Stats"
+msgstr ""
+
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
msgstr "Tampilkan Perijinan"
-#: public/js/form_builder/form_builder.bundle.js:31
-#: public/js/form_builder/form_builder.bundle.js:43
-#: public/js/print_format_builder/print_format_builder.bundle.js:18
-#: public/js/print_format_builder/print_format_builder.bundle.js:54
+#: frappe/public/js/form_builder/form_builder.bundle.js:31
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_preview_popup (Check) field in DocType 'DocType'
+#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Tampilkan Pratinjau Popup"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Preview Popup"
-msgstr "Tampilkan Pratinjau Popup"
-
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the show_processlist (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
msgstr ""
-#: core/doctype/error_log/error_log.js:9
+#. Label of the show_protected_resource_metadata (Check) field in DocType
+#. 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Protected Resource Metadata"
+msgstr ""
+
+#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
-#: core/doctype/prepared_report/prepared_report.js:43
-#: core/doctype/report/report.js:13
+#. Label of the show_report (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:43
+#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
msgstr "Tampilkan Laporan"
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Show Report"
-msgstr "Tampilkan Laporan"
-
-#: public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:15
+#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the show_section_headings (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Section Headings"
-msgstr "Tampilkan Bagian Pos"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the show_sidebar (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr "Tampilkan Sidebar"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Show Sidebar"
-msgstr "Tampilkan Sidebar"
+#. Label of the show_social_login_key_as_authorization_server (Check) field in
+#. DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "Show Social Login Key as Authorization Server"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1566
+#: frappe/public/js/frappe/list/list_sidebar.html:77
+#: frappe/public/js/frappe/list/list_view.js:1702
msgid "Show Tags"
msgstr "Tampilkan Tag"
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the show_title (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Tampilkan Judul"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
+#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Title in Link Fields"
-msgstr ""
-
-#: public/js/frappe/views/reports/report_view.js:1453
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Tampilkan Total"
-#: desk/doctype/form_tour/form_tour.js:116
+#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
msgstr ""
-#: public/js/frappe/data_import/import_preview.js:200
+#: frappe/core/doctype/data_import/data_import.js:448
+msgid "Show Traceback"
+msgstr ""
+
+#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard
+#. Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "Show Values over Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
msgstr "Tampilkan Peringatan"
-#: public/js/frappe/views/calendar/calendar.js:184
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
msgstr "Tunjukkan Akhir Pekan"
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_account_deletion_link (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
msgstr ""
-#: core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
msgstr "Tampilkan semua Versi"
-#: website/doctype/blog_post/templates/blog_post_list.html:24
+#: frappe/public/js/frappe/form/footer/form_timeline.js:69
+msgid "Show all activity"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr "Tampilkan sebagai cc"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_attachments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show attachments"
+msgstr ""
+
+#. Label of the show_footer_on_login (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
msgstr ""
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Tampilkan formulir lengkap, bukan modal entri cepat"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the document_type (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Tampilkan dalam Bagian Modul"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Show in Resource Metadata"
+msgstr ""
+
+#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr "Tampilkan dalam filter"
+msgstr ""
-#. Label of a Check field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
msgstr ""
-#: public/js/frappe/form/layout.js:265
+#. Label of the show_list (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show list"
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:273
+#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
msgstr "Tampilkan lebih detail"
+#. Label of the show_on_timeline (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Show on Timeline"
+msgstr ""
+
#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Tunjukkan perbedaan persentase menurut interval waktu ini"
+msgstr ""
+
+#. Label of the show_sidebar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show sidebar"
+msgstr ""
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show title in browser window as \"Prefix - title\""
-msgstr "Tampilkan judul di jendela browser sebagai "Awalan - judul""
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:475
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
+msgid "Show {0} List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Hanya menampilkan bidang numerik dari Laporan"
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/public/js/frappe/data_import/import_preview.js:153
+msgid "Showing only first {0} rows out of {1}"
+msgstr ""
+
+#. Label of the list_sidebar (Check) field in DocType 'User'
+#. Label of the form_sidebar (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Sidebar"
msgstr ""
-#. Label of a Table field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
+#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "Sidebar Items"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Pengaturan sidebar"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Sidebar and Comments"
-msgstr "Sidebar dan Komentar"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the sign_up_and_confirmation_section (Section Break) field in
+#. DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
msgstr ""
-#: core/doctype/user/user.py:972
+#: frappe/core/doctype/user/user.py:1022
msgid "Sign Up is disabled"
msgstr "Sign Up dinonaktifkan"
-#: templates/signup.html:16 www/login.html:120 www/login.html:136
-#: www/update-password.html:35
+#: frappe/templates/signup.html:16 frappe/www/login.html:140
+#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
msgstr "Daftar"
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Sign ups"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Signature"
-msgstr "Tanda Tangan"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Signature"
-msgstr "Tanda Tangan"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Signature"
-msgstr "Tanda Tangan"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Signature"
-msgstr "Tanda Tangan"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the signature_section (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the signature (Text Editor) field in DocType 'Email Account'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Tanda Tangan"
+msgstr ""
-#: www/login.html:148
+#: frappe/www/login.html:168
msgid "Signup Disabled"
msgstr "Pendaftaran Dinonaktifkan"
-#: www/login.html:149
+#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
msgstr "Pendaftaran telah dinonaktifkan untuk situs web ini."
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Ekspresi Python Sederhana, Contoh: Status dalam ("Ditutup", "Dibatalkan")"
+msgstr ""
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Ekspresi Python Sederhana, Contoh: Status dalam ("Tidak Valid")"
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Ekspresi Python Sederhana, Contoh: status == 'Open' dan ketik == 'Bug'"
+msgstr ""
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the simultaneous_sessions (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Sesi simultan"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:121
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
msgstr "Single DocTypes tidak dapat dikustomisasi."
-#: core/doctype/doctype/doctype_list.js:51
-msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles"
-
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles"
-#: database/database.py:230
+#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: public/js/onboarding_tours/onboarding_tours.js:18
+#: frappe/public/js/frappe/views/file/file_view.js:337
+msgid "Size"
+msgstr "Ukuran"
+
+#. Label of the size (Float) field in DocType 'System Health Report Tables'
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+msgid "Size (MB)"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
msgid "Skip"
msgstr "Melewatkan"
-#. Label of a Check field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
+#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
+#. Settings'
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
-msgstr "Loncat Otorisasi"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
-msgid "Skip Authorization"
-msgstr "Loncat Otorisasi"
-
-#: public/js/frappe/widgets/onboarding_widget.js:337
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
msgstr "Lewati Langkah"
-#. Label of a Check field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the skipped (Check) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
msgstr ""
-#: core/doctype/data_import/importer.py:905
+#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
msgstr "Melewati Kolom Ganda {0}"
-#: core/doctype/data_import/importer.py:930
+#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
msgstr "Melewati Kolom Tanpa Judul"
-#: core/doctype/data_import/importer.py:916
+#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
msgstr "Melewati kolom {0}"
-#: modules/utils.py:162
+#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
-#: core/doctype/data_import/data_import.js:39
+#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the skype (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr "Skype"
+msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "Kendur"
+msgstr ""
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr "Slack Channel"
+msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr "Slack Webhook Error"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgid "Slack Webhook URL"
-msgstr "URL Webhook Lambat"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Slack Webhook URL"
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
msgstr "URL Webhook Lambat"
-#. Label of a Link field in DocType 'Web Page'
+#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Rangkai Salindia"
+msgstr ""
-#. Label of a Table field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr "Slideshow Items"
+msgstr ""
-#. Label of a Data field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr "Nama Slideshow"
+msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Small Text"
-msgstr "Teks Kecil"
+#. Description of a DocType
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Slideshow like display for the website"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Small Text"
-msgstr "Teks Kecil"
+#. Label of the slug (Data) field in DocType 'UTM Campaign'
+#. Label of the slug (Data) field in DocType 'UTM Medium'
+#. Label of the slug (Data) field in DocType 'UTM Source'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "Slug"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Small Text"
-msgstr "Teks Kecil"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Small Text"
-msgstr "Teks Kecil"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr "Teks Kecil"
+msgstr ""
-#. Label of a Currency field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the smallest_currency_fraction_value (Currency) field in DocType
+#. 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr "Terkecil Mata Fraksi Nilai"
+msgstr ""
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr "Terkecil Unit beredar fraksi (koin). Untuk misalnya 1 sen untuk USD dan harus dimasukkan sebagai 0,01"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Snippet and more variables: {0}"
+msgstr ""
#. Name of a DocType
-#: website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Settings"
msgstr "Pengaturan Tautan Sosial"
-#. Label of a Select field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the social_link_type (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr "Jenis Tautan Sosial"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/social_login_key/social_login_key.json
-msgid "Social Login Key"
-msgstr "Kunci Masuk Sosial"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Social Login Key"
msgstr "Kunci Masuk Sosial"
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the social_login_provider (Select) field in DocType 'Social Login
+#. Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Penyedia Login Sosial"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the social_logins (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "Login Sosial"
+msgstr ""
+
+#. Label of the socketio_ping_check (Select) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Ping Check"
+msgstr ""
+
+#. Label of the socketio_transport_mode (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Transport Mode"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr "Soft-Terpental"
+msgstr ""
-#: public/js/frappe/desk.js:20
+#. Label of the software_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software ID"
+msgstr ""
+
+#. Label of the software_version (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Software Version"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
+msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
+msgstr ""
+
+#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\""
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:20
msgid "Some of the features might not work in your browser. Please update your browser to the latest version."
msgstr "Beberapa fitur mungkin tidak bekerja di browser anda. Perbarui browser anda ke versi terbaru."
-#: public/js/frappe/views/translation_manager.js:101
+#: frappe/public/js/frappe/views/translation_manager.js:101
msgid "Something went wrong"
msgstr "Ada yang salah"
-#: integrations/doctype/google_calendar/google_calendar.py:116
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Sesuatu yang salah terjadi selama pembuatan token. Klik pada {0} untuk menghasilkan yang baru."
-#: public/js/frappe/views/pageview.js:110
+#: frappe/templates/includes/login/login.js:293
+msgid "Something went wrong."
+msgstr ""
+
+#: frappe/public/js/frappe/views/pageview.js:114
msgid "Sorry! I could not find what you were looking for."
msgstr "Mohon Maaf! Saya tidak bisa menemukan apa yang Anda cari."
-#: public/js/frappe/views/pageview.js:118
+#: frappe/public/js/frappe/views/pageview.js:122
msgid "Sorry! You are not permitted to view this page."
msgstr "Mohon Maaf! Anda tidak diizinkan untuk melihat halaman ini."
-#: public/js/frappe/utils/datatable.js:6
+#: frappe/public/js/frappe/utils/datatable.js:6
msgid "Sort Ascending"
msgstr ""
-#: public/js/frappe/utils/datatable.js:7
+#: frappe/public/js/frappe/utils/datatable.js:7
msgid "Sort Descending"
msgstr ""
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_field (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Urutkan Lapangan"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the sort_options (Check) field in DocType 'DocField'
+#. Label of the sort_options (Check) field in DocType 'Custom Field'
+#. Label of the sort_options (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Sort Options"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_order (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Tata Urutan"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1501
+#: frappe/core/doctype/doctype/doctype.py:1550
msgid "Sort field {0} must be a valid fieldname"
msgstr "bidang semacam {0} harus fieldname valid"
-#: public/js/frappe/utils/utils.js:1705
-#: website/report/website_analytics/website_analytics.js:38
+#. Label of the source (Data) field in DocType 'Web Page View'
+#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/public/js/frappe/utils/utils.js:1720
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
+#: frappe/website/report/website_analytics/website_analytics.js:38
msgid "Source"
msgstr "Sumber"
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Source"
-msgstr "Sumber"
-
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Source"
-msgstr "Sumber"
-
-#. Label of a Data field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr "sumber Nama"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:38
+#. Label of the source_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
msgstr "sumber Teks"
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Source Text"
-msgstr "sumber Teks"
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
+msgid "Spacer"
+msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr "Spam"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "SparkPost"
-msgstr "SparkPost"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:83
+#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
msgstr "Karakter spesial tidak diperbolehkan"
-#: model/naming.py:58
+#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Karakter Khusus kecuali "-", "#", ".", "/", "{{" Dan "}}" tidak diizinkan dalam rangkaian penamaan {0}"
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Specify a custom timeout, default timeout is 1500 seconds"
+msgstr ""
+
+#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
+#. 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
+msgstr ""
+
+#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
msgstr ""
-#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44
+#: frappe/desk/reportview.py:419
+#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
msgstr "sr"
-#: core/doctype/recorder/recorder.js:33
+#: frappe/public/js/print_format_builder/Field.vue:143
+#: frappe/public/js/print_format_builder/Field.vue:164
+msgid "Sr No."
+msgstr ""
+
+#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:82
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
msgstr ""
-#. Label of a HTML field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Stack Trace"
-msgstr ""
-
-#: core/doctype/user_type/user_type_list.js:5
+#. Label of the standard (Select) field in DocType 'Page'
+#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Select) field in DocType 'Print Format'
+#. Label of the standard (Check) field in DocType 'Print Format Field Template'
+#. Label of the standard (Check) field in DocType 'Print Style'
+#. Label of the standard (Check) field in DocType 'Web Template'
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/user_type/user_type_list.js:5
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Standard"
msgstr "Standar"
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Standard"
-msgstr "Standar"
-
-#. Label of a Select field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Standard"
-msgstr "Standar"
-
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Standard"
-msgstr "Standar"
-
-#. Label of a Check field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Standard"
-msgstr "Standar"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Standard"
-msgstr "Standar"
-
-#. Label of a Check field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Standard"
-msgstr "Standar"
-
-#: model/delete_doc.py:79
+#: frappe/model/delete_doc.py:79
msgid "Standard DocType can not be deleted."
msgstr ""
-#: core/doctype/doctype/doctype.py:228
+#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
msgstr "DocType standar tidak dapat memiliki format cetak standar, gunakan Customize Form"
-#: desk/doctype/dashboard/dashboard.py:59
+#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
msgstr "Standar Tidak Ditetapkan"
-#: printing/doctype/print_format/print_format.py:74
+#: frappe/core/page/permission_manager/permission_manager.js:132
+msgid "Standard Permissions"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.py:81
msgid "Standard Print Format cannot be updated"
msgstr "Format Cetak Standar tidak dapat diperbarui"
-#: printing/doctype/print_style/print_style.py:31
+#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
msgstr "Gaya Cetak Standar tidak dapat diubah. Silahkan duplikat untuk mengedit."
-#: desk/reportview.py:316
+#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
msgstr ""
-#: desk/reportview.py:287
+#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Standard Sidebar menu"
+msgstr ""
-#: core/doctype/role/role.py:61
+#: frappe/website/doctype/web_form/web_form.js:40
+msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Standard rich text editor with controls"
+msgstr ""
+
+#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
msgstr "peran standar tidak dapat dinonaktifkan"
-#: core/doctype/role/role.py:48
+#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
msgstr "Peran standar tidak dapat diganti"
-#: core/doctype/user_type/user_type.py:60
+#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Standings"
-msgstr "Klasemen"
-
-#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289
-#: printing/page/print/print.js:336
+#: frappe/core/doctype/recorder/recorder_list.js:87
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
+#: frappe/printing/page/print/print.js:296
+#: frappe/printing/page/print/print.js:343
msgid "Start"
msgstr "Mulai"
-#: public/js/frappe/utils/common.js:409
+#. Label of the start_date (Date) field in DocType 'Auto Repeat'
+#. Label of the start_date (Date) field in DocType 'Audit Trail'
+#. Label of the start_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:409
+#: frappe/website/doctype/web_page/web_page.json
msgid "Start Date"
msgstr "Tanggal Mulai"
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Start Date"
-msgstr "Tanggal Mulai"
-
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Start Date"
-msgstr "Tanggal Mulai"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Start Date"
-msgstr "Tanggal Mulai"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the start_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Field Tanggal Mulai"
+msgstr ""
-#: core/doctype/data_import/data_import.js:110
+#: frappe/core/doctype/data_import/data_import.js:110
msgid "Start Import"
msgstr "Mulai Impor"
-#. Label of a Datetime field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
-msgid "Start Time"
-msgstr "Waktu Mulai"
+#: frappe/core/doctype/recorder/recorder_list.js:201
+msgid "Start Recording"
+msgstr ""
-#: templates/includes/comments/comments.html:8
+#. Label of the birth_date (Datetime) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Start Time"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:8
msgid "Start a new discussion"
msgstr ""
-#: core/doctype/data_export/exporter.py:22
+#: frappe/core/doctype/data_export/exporter.py:22
msgid "Start entering data below this line"
msgstr "Mulai memasukkan data di bawah garis ini"
-#: printing/page/print_format_builder/print_format_builder.js:165
+#: frappe/printing/page/print_format_builder/print_format_builder.js:165
msgid "Start new Format"
msgstr "Mulai Format baru"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "StartTLS"
-msgstr "StartTLS"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Dimulai"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the started_at (Datetime) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:274
+#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
msgstr "Memulai Frappé ..."
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the starts_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Mulai dari"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the state (Data) field in DocType 'Token Cache'
+#. Label of the state (Link) field in DocType 'Workflow Document State'
+#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
+#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/workflow/doctype/workflow/workflow.js:162
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "State"
-msgstr "Negara"
+msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "State"
-msgstr "Negara"
+#: frappe/public/js/workflow_builder/components/Properties.vue:24
+msgid "State Properties"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "State"
-msgstr "Negara"
-
-#. Label of a Data field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "State"
-msgstr "Negara"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "State"
-msgstr "Negara"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the state (Data) field in DocType 'Address'
+#. Label of the state (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr "Negara Bagian / Provinsi"
+msgstr ""
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
+#. Label of the states (Table) field in DocType 'Customize Form'
+#. Label of the states_head (Section Break) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Negara"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "States"
-msgstr "Negara"
-
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "States"
-msgstr "Negara"
-
-#. Label of a Table field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the parameters (Table) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Parameter Statis"
+msgstr ""
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
msgstr ""
-#: public/js/frappe/form/dashboard.js:43
+#. Label of the stats_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/dashboard.js:43
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:13
msgid "Stats"
msgstr "Statistik"
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Stats"
-msgstr "Statistik"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the stats_time_interval (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Stats Time Interval"
-msgstr "Statistik Interval Waktu"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:391
-msgid "Stats based on last month's performance (from {0} to {1})"
-msgstr "Statistik berdasarkan kinerja bulan lalu (dari {0} hingga {1})"
-
-#: social/doctype/energy_point_log/energy_point_log.py:393
-msgid "Stats based on last week's performance (from {0} to {1})"
-msgstr "Statistik berdasarkan kinerja minggu lalu (dari {0} hingga {1})"
-
-#: public/js/frappe/views/reports/report_view.js:911
+#. Label of the status (Select) field in DocType 'Auto Repeat'
+#. Label of the status (Select) field in DocType 'Contact'
+#. Label of the status (Select) field in DocType 'Activity Log'
+#. Label of the status_section (Section Break) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Data Import'
+#. Label of the status (Select) field in DocType 'Permission Log'
+#. Label of the status (Select) field in DocType 'Prepared Report'
+#. Label of the status (Select) field in DocType 'RQ Job'
+#. Label of the status (Data) field in DocType 'RQ Worker'
+#. Label of the status (Select) field in DocType 'Scheduled Job Log'
+#. Label of the status_section (Section Break) field in DocType 'Scheduled Job
+#. Type'
+#. Label of the status (Select) field in DocType 'Submission Queue'
+#. Label of the status (Select) field in DocType 'Event'
+#. Label of the status (Select) field in DocType 'Kanban Board Column'
+#. Label of the status (Select) field in DocType 'ToDo'
+#. Label of the status (Select) field in DocType 'Email Queue'
+#. Label of the status (Select) field in DocType 'Email Queue Recipient'
+#. Label of the status (Select) field in DocType 'Integration Request'
+#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion Step'
+#. Label of the status (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/public/js/frappe/list/list_settings.js:359
+#: frappe/public/js/frappe/views/reports/report_view.js:975
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr "Status"
+msgstr ""
-#. Label of a Select field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Section Break field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Status"
-msgstr "Status"
-
-#: www/update-password.html:161
+#: frappe/www/update-password.html:188
msgid "Status Updated"
msgstr "Status Diperbarui"
-#: www/message.html:40
+#: frappe/email/doctype/email_queue/email_queue.js:37
+msgid "Status Updated. The email will be picked up in the next scheduled run."
+msgstr ""
+
+#: frappe/www/message.html:24
msgid "Status: {0}"
-msgstr "Status: {0}"
+msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step Map'
-#: desk/doctype/onboarding_step_map/onboarding_step_map.json
-msgctxt "Onboarding Step Map"
+#. Label of the step (Link) field in DocType 'Onboarding Step Map'
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr "Langkah"
+msgstr ""
-#. Label of a Table field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the steps (Table) field in DocType 'Form Tour'
+#. Label of the steps (Table) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Langkah"
+msgstr ""
-#. Label of a Table field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Steps"
-msgstr "Langkah"
-
-#: www/qrcode.html:11
+#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
msgstr "Langkah untuk memverifikasi login anda"
-#: core/doctype/recorder/recorder_list.js:91
-msgid "Stop"
+#. Label of the sticky (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Sticky"
msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/recorder/recorder_list.js:87
+msgid "Stop"
+msgstr "Berhenti"
+
+#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Stopped"
msgstr "Terhenti"
+#. Label of the db_storage_usage (Float) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Storage Usage (MB)"
+msgstr ""
+
+#. Label of the top_db_tables (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Storage Usage By Table"
+msgstr ""
+
+#. Label of the store_attached_pdf_document (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Store Attached PDF Document"
+msgstr ""
+
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Toko JSON dari versi terakhir yang diketahui dari berbagai aplikasi yang diinstal. Hal ini digunakan untuk menunjukkan catatan rilis."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the datetime when the last reset password key was generated."
msgstr ""
-#: utils/password_strength.py:99
+#: frappe/utils/password_strength.py:97
msgid "Straight rows of keys are easy to guess"
msgstr "baris lurus kunci yang mudah ditebak"
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
msgstr ""
-#: public/js/frappe/form/controls/password.js:90
+#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
+#. Label of the style (Select) field in DocType 'Workflow State'
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Gaya"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Style"
-msgstr "Gaya"
-
-#. Label of a Section Break field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Pengaturan Style"
+msgstr ""
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange"
-msgstr "Gaya merupakan tombol warna: Sukses - Hijau, Danger - Red, Inverse - Black, Primer - Dark Blue, Info - Light Blue, Peringatan - Jeruk"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Stylesheet"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Sub-currency. Untuk misalnya \"Cent \""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Sub-domain yang disediakan oleh erpnext.com"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Subdomain"
+msgstr ""
-#: public/js/frappe/views/communication.js:103
-#: public/js/frappe/views/inbox/inbox_view.js:63
+#. Label of the subject (Data) field in DocType 'Auto Repeat'
+#. Label of the subject (Small Text) field in DocType 'Activity Log'
+#. Label of the subject (Text) field in DocType 'Comment'
+#. Label of the subject (Small Text) field in DocType 'Communication'
+#. Label of the subject (Small Text) field in DocType 'Event'
+#. Label of the subject (Text) field in DocType 'Notification Log'
+#. Label of the subject (Data) field in DocType 'Email Template'
+#. Label of the subject (Data) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/email/doctype/notification/notification.js:200
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/views/communication.js:119
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Perihal"
-#. Label of a Small Text field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Data field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Text field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Data field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Small Text field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Small Text field in DocType 'Newsletter'
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Text field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Subject"
-msgstr "Perihal"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the subject_field (Data) field in DocType 'DocType'
+#. Label of the subject_field (Data) field in DocType 'Customize Form'
+#. Label of the subject_field (Select) field in DocType 'Calendar View'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Bidang Subjek"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Subject Field"
-msgstr "Bidang Subjek"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Subject Field"
-msgstr "Bidang Subjek"
-
-#: core/doctype/doctype/doctype.py:1878
+#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Jenis Bidang Subjek harus Data, Teks, Teks Panjang, Teks Kecil, Editor Teks"
#. Name of a DocType
-#: core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:138
-#: public/js/frappe/form/quick_entry.js:193
-#: public/js/frappe/form/sidebar/review.js:116
-#: public/js/frappe/ui/capture.js:299
-#: social/doctype/energy_point_log/energy_point_log.js:39
-#: social/doctype/energy_point_settings/energy_point_settings.js:47
-#: website/doctype/web_form/templates/web_form.html:44
+#. Label of the submit (Check) field in DocType 'Custom DocPerm'
+#. Label of the submit (Check) field in DocType 'DocPerm'
+#. Label of the submit (Check) field in DocType 'DocShare'
+#. Label of the submit (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:138
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/quick_entry.js:225
+#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
msgstr "Kirim"
-#: public/js/frappe/list/list_view.js:1916
+#: frappe/public/js/frappe/list/list_view.js:2084
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Kirim"
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#: frappe/website/doctype/web_form/templates/web_form.html:47
+msgctxt "Button in web form"
msgid "Submit"
msgstr "Kirim"
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Submit"
-msgstr "Kirim"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Submit"
-msgstr "Kirim"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Submit"
-msgstr "Kirim"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Submit"
-msgstr "Kirim"
-
-#: public/js/frappe/ui/dialog.js:60
+#: frappe/public/js/frappe/ui/dialog.js:62
msgctxt "Primary action in dialog"
msgid "Submit"
msgstr "Kirim"
-#: public/js/frappe/ui/messages.js:97
+#: frappe/public/js/frappe/ui/messages.js:97
msgctxt "Primary action of prompt dialog"
msgid "Submit"
msgstr "Kirim"
-#: public/js/frappe/desk.js:206
+#: frappe/public/js/frappe/desk.js:227
msgctxt "Submit password for Email Account"
msgid "Submit"
msgstr "Kirim"
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Submit"
-msgstr "Kirim"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the submit_after_import (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Submit After Import"
-msgstr "Kirim Setelah Impor"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Submit Button Label"
msgstr ""
-#: website/doctype/web_form/templates/web_form.html:153
+#: frappe/core/page/permission_manager/permission_manager_help.html:39
+msgid "Submit an Issue"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:156
+msgctxt "Button in web form"
msgid "Submit another response"
msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the button_label (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Submit button label"
+msgstr ""
+
+#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:400
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
msgstr "Kirimkan dokumen ini untuk menyelesaikan langkah ini."
-#: public/js/frappe/form/form.js:1194
+#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
msgstr "Menyerahkan dokumen ini untuk mengkonfirmasi"
-#: public/js/frappe/list/list_view.js:1921
+#: frappe/public/js/frappe/list/list_view.js:2089
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Kirim {0} dokumen?"
-#: public/js/frappe/model/indicator.js:95
-#: public/js/frappe/ui/filters/filter.js:494
-#: website/doctype/web_form/templates/web_form.html:133
-msgid "Submitted"
-msgstr "Dikirim"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/model/indicator.js:95
+#: frappe/public/js/frappe/ui/filters/filter.js:539
+#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
msgstr "Dikirim"
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Submitted"
-msgstr "Dikirim"
-
-#: workflow/doctype/workflow/workflow.py:106
+#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
msgstr "Dikirim Dokumen tidak dapat dikonversi kembali untuk menyusun. Transisi baris {0}"
-#: public/js/workflow_builder/utils.js:176
+#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
msgstr ""
-#: public/js/frappe/form/save.js:10
+#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Mengirimkan"
-#: desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:88
msgid "Submitting {0}"
msgstr "Mengajukan {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr "Anak Perusahaan"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
+#. Label of the subtitle (Data) field in DocType 'Blog Settings'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Subtitle"
-msgstr "Subtitle"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Subtitle"
-msgstr "Subtitle"
-
-#: core/doctype/data_import/data_import.js:470
-#: desk/doctype/bulk_update/bulk_update.js:31
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/form/grid.js:1133
-#: public/js/frappe/views/translation_manager.js:21
-#: templates/pages/integrations/gcalendar-success.html:9
-#: workflow/doctype/workflow_action/workflow_action.py:171
-msgid "Success"
-msgstr "Keberhasilan"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Success"
-msgstr "Keberhasilan"
-
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Success"
-msgstr "Keberhasilan"
-
-#. Label of a Check field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Success"
-msgstr "Keberhasilan"
-
+#. Label of the success (Check) field in DocType 'Data Import Log'
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/data_import/data_import.js:459
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/desk/doctype/bulk_update/bulk_update.js:31
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
+#: frappe/public/js/frappe/form/grid.js:1170
+#: frappe/public/js/frappe/views/translation_manager.js:21
+#: frappe/templates/includes/login/login.js:230
+#: frappe/templates/includes/login/login.js:236
+#: frappe/templates/includes/login/login.js:269
+#: frappe/templates/includes/login/login.js:277
+#: frappe/templates/pages/integrations/gcalendar-success.html:9
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Success"
msgstr "Keberhasilan"
#. Name of a DocType
-#: core/doctype/success_action/success_action.json
+#: frappe/core/doctype/success_action/success_action.json
msgid "Success Action"
msgstr "Tindakan Sukses"
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#. Label of the success_message (Data) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr "Sukses Pesan"
-
-#. Label of a Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Message"
-msgstr "Sukses Pesan"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Title"
msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#. Label of the success_uri (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Success URI"
msgstr ""
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the success_url (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "Sukses URL"
+msgstr ""
-#: www/update-password.html:79
+#. Label of the success_message (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success message"
+msgstr ""
+
+#. Label of the success_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success title"
+msgstr ""
+
+#: frappe/www/update-password.html:94
msgid "Success! You are good to go 👍"
msgstr "Keberhasilan! Anda baik untuk pergi 👍"
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
msgstr ""
-#: model/workflow.py:306
+#: frappe/model/workflow.py:307
msgid "Successful Transactions"
msgstr "Transaksi yang berhasil"
-#: model/rename_doc.py:684
+#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
msgstr "Sukses: {0} ke {1}"
-#: social/doctype/energy_point_settings/energy_point_settings.js:41
-msgid "Successfully Done"
-msgstr "Berhasil Dilakukan"
-
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
msgstr "Berhasil Diperbarui"
-#: core/doctype/data_import/data_import.js:434
+#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
msgstr ""
-#: desk/doctype/form_tour/form_tour.py:86
+#: frappe/core/doctype/data_import/data_import.js:144
+msgid "Successfully imported {0} out of {1} records."
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: public/js/frappe/views/translation_manager.js:22
+#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
msgstr "Berhasil memperbarui terjemahan"
-#: core/doctype/data_import/data_import.js:442
+#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
msgstr ""
-#: core/doctype/data_import/data_import.js:149
-msgid "Successfully {0} 1 record."
+#: frappe/core/doctype/data_import/data_import.js:149
+msgid "Successfully updated {0} out of {1} records."
msgstr ""
-#: core/doctype/data_import/data_import.js:156
-msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#: frappe/core/doctype/recorder/recorder.js:15
+msgid "Suggest Optimizations"
msgstr ""
-#: core/doctype/data_import/data_import.js:161
-msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Suggested Indexes"
msgstr ""
-#: core/doctype/data_import/data_import.js:151
-msgid "Successfully {0} {1} records."
-msgstr ""
-
-#: core/doctype/user/user.py:679
+#: frappe/core/doctype/user/user.py:726
msgid "Suggested Username: {0}"
msgstr "Disarankan Username: {0}"
-#: public/js/frappe/ui/group_by/group_by.js:20
-msgid "Sum"
-msgstr "Jumlah"
-
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Sum"
-msgstr "Jumlah"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:20
msgid "Sum"
msgstr "Jumlah"
-#: public/js/frappe/ui/group_by/group_by.js:330
+#: frappe/public/js/frappe/ui/group_by/group_by.js:340
msgid "Sum of {0}"
msgstr "Jumlah dari {0}"
-#: public/js/frappe/views/interaction.js:88
+#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
msgstr "Ringkasan"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Sunday"
-msgstr "Minggu"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Sunday"
-msgstr "Minggu"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Sunday"
-msgstr "Minggu"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sunday"
-msgstr "Minggu"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the sunday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Sunday"
-msgstr "Minggu"
+msgstr ""
-#: email/doctype/email_queue/email_queue_list.js:27
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
msgstr "menangguhkan Mengirim"
-#: public/js/frappe/ui/capture.js:268
+#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
msgstr ""
-#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11
+#: frappe/public/js/frappe/desk.js:96
+#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
msgstr ""
-#: templates/includes/navbar/navbar_login.html:17
+#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
msgstr "Switch Untuk Meja"
-#: public/js/frappe/ui/capture.js:273
+#: frappe/public/js/frappe/list/list_sidebar.js:319
+msgid "Switch to Frappe CRM for smarter sales"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Simbol"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
+#. Label of the sync (Section Break) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr "Sinkronkan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Sync"
-msgstr "Sinkronkan"
-
-#: integrations/doctype/google_calendar/google_calendar.js:28
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
msgstr "Sinkronkan Kalender"
-#: integrations/doctype/google_contacts/google_contacts.js:28
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
msgstr "Sinkronkan Kontak"
-#: custom/doctype/customize_form/customize_form.js:214
+#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Sync events from Google as public"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
msgstr "Sinkronisasi di Migrasi"
-#: integrations/doctype/google_calendar/google_calendar.py:295
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr "Sinkronkan dengan Google Kalender"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Sinkronkan dengan Kontak Google"
+msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:46
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:100
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:31
-#: integrations/doctype/google_contacts/google_contacts.js:31
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
msgstr "Sinkronisasi"
-#: integrations/doctype/google_calendar/google_calendar.js:19
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
msgstr "Menyinkronkan {0} dari {1}"
-#: utils/data.py:2424
+#: frappe/utils/data.py:2529
msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr "Sistem"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
msgstr "Konsol Sistem"
-#: custom/doctype/custom_field/custom_field.py:358
+#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
msgstr ""
+#. Label of a standard help item
+#. Type: Route
+#: frappe/hooks.py
+msgid "System Health"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "System Health Report"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+msgid "System Health Report Errors"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "System Health Report Failing Jobs"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "System Health Report Queue"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+msgid "System Health Report Tables"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "System Health Report Workers"
+msgstr ""
+
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "System Logs"
msgstr ""
#. Name of a role
-#: automation/doctype/assignment_rule/assignment_rule.json
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: automation/doctype/milestone/milestone.json
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-#: contacts/doctype/address/address.json
-#: contacts/doctype/address_template/address_template.json
-#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/access_log/access_log.json
-#: core/doctype/activity_log/activity_log.json
-#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json
-#: core/doctype/communication/communication.json
-#: core/doctype/custom_docperm/custom_docperm.json
-#: core/doctype/custom_role/custom_role.json
-#: core/doctype/data_export/data_export.json
-#: core/doctype/data_import/data_import.json
-#: core/doctype/data_import_log/data_import_log.json
-#: core/doctype/deleted_document/deleted_document.json
-#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json
-#: core/doctype/document_naming_rule/document_naming_rule.json
-#: core/doctype/document_naming_settings/document_naming_settings.json
-#: core/doctype/document_share_key/document_share_key.json
-#: core/doctype/domain/domain.json
-#: core/doctype/domain_settings/domain_settings.json
-#: core/doctype/error_log/error_log.json core/doctype/file/file.json
-#: core/doctype/installed_applications/installed_applications.json
-#: core/doctype/language/language.json
-#: core/doctype/log_settings/log_settings.json
-#: core/doctype/module_def/module_def.json
-#: core/doctype/module_profile/module_profile.json
-#: core/doctype/navbar_settings/navbar_settings.json
-#: core/doctype/package/package.json
-#: core/doctype/package_import/package_import.json
-#: core/doctype/package_release/package_release.json
-#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json
-#: core/doctype/permission_inspector/permission_inspector.json
-#: core/doctype/prepared_report/prepared_report.json
-#: core/doctype/report/report.json core/doctype/role/role.json
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json
-#: core/doctype/rq_worker/rq_worker.json
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-#: core/doctype/session_default_settings/session_default_settings.json
-#: core/doctype/sms_log/sms_log.json
-#: core/doctype/sms_settings/sms_settings.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/success_action/success_action.json
-#: core/doctype/system_settings/system_settings.json
-#: core/doctype/translation/translation.json core/doctype/user/user.json
-#: core/doctype/user_group/user_group.json
-#: core/doctype/user_permission/user_permission.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: core/doctype/view_log/view_log.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/customize_form/customize_form.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/bulk_update/bulk_update.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/console_log/console_log.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/global_search_settings/global_search_settings.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_view_settings/list_view_settings.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/route_history/route_history.json
-#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json
-#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json
-#: email/doctype/auto_email_report/auto_email_report.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_account/email_account.json
-#: email/doctype/email_domain/email_domain.json
-#: email/doctype/email_flag_queue/email_flag_queue.json
-#: email/doctype/email_queue/email_queue.json
-#: email/doctype/email_rule/email_rule.json
-#: email/doctype/email_template/email_template.json
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-#: email/doctype/notification/notification.json
-#: email/doctype/unhandled_email/unhandled_email.json
-#: geo/doctype/country/country.json geo/doctype/currency/currency.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: integrations/doctype/google_drive/google_drive.json
-#: integrations/doctype/google_settings/google_settings.json
-#: integrations/doctype/integration_request/integration_request.json
-#: integrations/doctype/ldap_settings/ldap_settings.json
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-#: integrations/doctype/oauth_client/oauth_client.json
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-#: integrations/doctype/social_login_key/social_login_key.json
-#: integrations/doctype/token_cache/token_cache.json
-#: integrations/doctype/webhook/webhook.json
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-#: printing/doctype/print_heading/print_heading.json
-#: printing/doctype/print_settings/print_settings.json
-#: printing/doctype/print_style/print_style.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: social/doctype/energy_point_rule/energy_point_rule.json
-#: social/doctype/energy_point_settings/energy_point_settings.json
-#: website/doctype/discussion_reply/discussion_reply.json
-#: website/doctype/discussion_topic/discussion_topic.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/web_page_view/web_page_view.json
-#: website/doctype/web_template/web_template.json
-#: website/doctype/website_route_meta/website_route_meta.json
-#: workflow/doctype/workflow/workflow.json
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/installed_applications/installed_applications.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/role_replication/role_replication.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "System Manager"
-msgstr "System Manager"
+msgstr ""
-#: desk/page/backups/backups.js:36
+#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Pemberitahuan Sistem"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "System Notifications"
msgstr ""
-#. Label of a Check field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the system_page (Check) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Sistem"
+msgstr ""
#. Name of a DocType
-#: core/doctype/system_settings/system_settings.json
-msgid "System Settings"
-msgstr "Pengaturan Sistem"
-
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
msgstr "Pengaturan Sistem"
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr "Manajer sistem diizinkan secara default"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:5
+#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
msgid "T"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Tab Break"
-msgstr ""
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Tab Break"
+#. Label of the tos_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "TOS URI"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Tab Break"
msgstr ""
-#: core/doctype/data_export/exporter.py:23
-msgid "Table"
-msgstr "Tabel"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table"
-msgstr "Tabel"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table"
-msgstr "Tabel"
+#: frappe/public/js/form_builder/components/Tabs.vue:135
+msgid "Tab Label"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Table"
-msgstr "Tabel"
-
+#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the table (Data) field in DocType 'System Health Report Tables'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/data_export/exporter.py:23
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Table"
msgstr "Tabel"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr "Tabel Istirahat"
+msgstr ""
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#: frappe/core/doctype/version/version_view.html:72
+msgid "Table Field"
+msgstr ""
+
+#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
msgstr ""
-#: core/doctype/doctype/doctype.py:1154
+#: frappe/core/doctype/doctype/doctype.py:1203
msgid "Table Fieldname Missing"
msgstr ""
-#. Label of a HTML field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
+#. Label of the table_html (HTML) field in DocType 'Version'
+#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "tabel HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table MultiSelect"
-msgstr "Tabel Multi Pilih"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table MultiSelect"
-msgstr "Tabel Multi Pilih"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Tabel Multi Pilih"
+msgstr ""
-#: public/js/frappe/form/grid.js:1132
+#: frappe/custom/doctype/customize_form/customize_form.js:229
+msgid "Table Trimmed"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Tabel diperbarui"
-#: model/document.py:1366
+#: frappe/model/document.py:1574
msgid "Table {0} cannot be empty"
msgstr "Tabel {0} tidak boleh kosong"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
msgstr ""
#. Name of a DocType
-#: desk/doctype/tag/tag.json
+#: frappe/desk/doctype/tag/tag.json
msgid "Tag"
msgstr "Menandai"
#. Name of a DocType
-#: desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Tag Link"
msgstr "Tautan Tag"
-#: model/__init__.py:148 model/meta.py:52
-#: public/js/frappe/list/bulk_operations.js:365
-#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204
-#: public/js/frappe/model/model.js:123
-#: public/js/frappe/ui/toolbar/awesome_bar.js:171
+#: frappe/model/meta.py:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:81
+#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/list/list_sidebar.html:48
+#: frappe/public/js/frappe/list/list_sidebar.html:60
+#: frappe/public/js/frappe/list/list_sidebar.js:253
+#: frappe/public/js/frappe/model/meta.js:207
+#: frappe/public/js/frappe/model/model.js:133
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
msgid "Tags"
msgstr "Tag"
-#: integrations/doctype/google_drive/google_drive.js:28
-msgid "Take Backup"
-msgstr "Ambil Cadangan"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Ambil Cadangan Sekarang"
-
-#: public/js/frappe/ui/capture.js:212
+#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Memotret"
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
+#. Label of the target (Data) field in DocType 'Portal Menu Item'
+#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr "Sasaran"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Target"
-msgstr "Sasaran"
-
-#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25
+#: frappe/desk/doctype/todo/todo_calendar.js:19
+#: frappe/desk/doctype/todo/todo_calendar.js:25
msgid "Task"
msgstr "Tugas"
-#: www/about.html:45
+#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
+#. Label of the team_members (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/www/about.html:45
msgid "Team Members"
msgstr "Anggota Tim"
-#. Label of a Section Break field in DocType 'About Us Settings'
-#. Label of a Table field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Team Members"
-msgstr "Anggota Tim"
-
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Anggota Tim Pos"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Subtitle"
msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the telemetry_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
msgstr ""
-#. Label of a Code field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#. Label of the template (Link) field in DocType 'Auto Repeat'
+#. Label of the template (Code) field in DocType 'Address Template'
+#. Label of the template (Code) field in DocType 'Print Format Field Template'
+#. Label of the template (Code) field in DocType 'Web Template'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
msgstr "Contoh"
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Template"
-msgstr "Contoh"
-
-#. Label of a Code field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Template"
-msgstr "Contoh"
-
-#. Label of a Code field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Template"
-msgstr "Contoh"
-
-#: core/doctype/data_import/importer.py:468
-#: core/doctype/data_import/importer.py:596
+#: frappe/core/doctype/data_import/importer.py:483
+#: frappe/core/doctype/data_import/importer.py:610
msgid "Template Error"
msgstr "Kesalahan Templat"
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the template_file (Data) field in DocType 'Print Format Field
+#. Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Template File"
msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_options (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Opsi Templat"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_warnings (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Peringatan Templat"
+msgstr ""
-#: public/js/frappe/views/workspace/blocks/paragraph.js:78
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr ""
-#: core/doctype/user/user.py:983
+#: frappe/core/doctype/user/user.py:1033
msgid "Temporarily Disabled"
msgstr "Dinonaktifkan Sementara"
-#: email/doctype/newsletter/newsletter.py:94
-msgid "Test email sent to {0}"
-msgstr "Email percobaan dikirim ke {0}"
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
+msgid "Test Data"
+msgstr ""
-#: core/doctype/file/test_file.py:357
+#. Label of the test_job_id (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Test Job ID"
+msgstr ""
+
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
+msgid "Test Spanish"
+msgstr ""
+
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
-msgstr "Test_Folder"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text"
-msgstr "Teks"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text"
-msgstr "Teks"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text"
-msgstr "Teks"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Text"
-msgstr "Teks"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Teks"
+msgstr ""
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the text_align (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Teks Align"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the text_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Warna Teks"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the text_content (Code) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr "Konten teks"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text Editor"
-msgstr "Teks Editor"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text Editor"
-msgstr "Teks Editor"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text Editor"
-msgstr "Teks Editor"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Teks Editor"
+msgstr ""
-#: templates/emails/password_reset.html:5
+#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
msgstr "Terima kasih"
-#: website/doctype/web_form/templates/web_form.html:137
+#: frappe/www/contact.py:39
+msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
+"Your query:\n\n"
+"{0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
msgstr ""
-#: templates/emails/auto_reply.html:1
+#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
msgstr "Terima kasih atas email Anda"
-#: website/doctype/help_article/templates/help_article.html:27
+#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
msgstr "Terima kasih atas tanggapan Anda!"
-#: email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Terima kasih atas minat anda untuk berlangganan berita kami"
+#: frappe/templates/includes/contact.js:36
+msgid "Thank you for your message"
+msgstr ""
-#: templates/emails/new_user.html:16
+#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
msgstr ""
-#: templates/emails/auto_repeat_fail.html:3
+#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
msgstr "Ulangi Otomatis untuk dokumen ini telah dinonaktifkan."
-#: public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "Format CSV bersifat case sensitive"
#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The Client ID obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The Client ID obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: email/doctype/notification/notification.py:129
+#: frappe/email/doctype/notification/notification.py:201
msgid "The Condition '{0}' is invalid"
msgstr "Kondisi '{0}' tidak valid"
-#: core/doctype/file/file.py:205
+#: frappe/core/doctype/file/file.py:208
msgid "The File URL you've entered is incorrect"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
+msgid "The Next Scheduled Date cannot be later than the End Date."
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
+msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
msgstr ""
-#: public/js/frappe/desk.js:127
+#: frappe/public/js/frappe/desk.js:162
msgid "The application has been updated to a new version, please refresh this page"
msgstr "Aplikasi ini telah diperbarui ke versi baru, harap perbarui halaman ini"
#. Description of the 'Application Name' (Data) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "The application name will be used in the Login page."
msgstr ""
-#: public/js/frappe/views/interaction.js:324
+#: frappe/public/js/frappe/views/interaction.js:323
msgid "The attachments could not be correctly linked to the new document"
msgstr "Lampiran tidak dapat dikaitkan dengan benar ke dokumen baru"
#. Description of the 'API Key' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The browser API key obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The browser API key obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: database/database.py:388
+#: frappe/database/database.py:474
msgid "The changes have been reverted."
msgstr ""
-#: core/doctype/data_import/importer.py:962
+#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
msgstr "Kolom {0} memiliki {1} format tanggal yang berbeda. Secara otomatis menyetel {2} sebagai format bawaan karena ini yang paling umum. Harap ubah nilai lain di kolom ini ke format ini."
-#: templates/includes/comments/comments.py:34
+#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
msgstr "Komentar tidak boleh kosong"
-#: public/js/frappe/views/interaction.js:301
+#: frappe/templates/emails/workflow_action.html:9
+msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:658
+msgid "The count shown is an estimated count. Click here to see the accurate count."
+msgstr ""
+
+#. Description of the 'Code' (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "The country's ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
msgstr "Dokumen tidak dapat ditetapkan dengan benar"
-#: public/js/frappe/views/interaction.js:295
+#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
msgstr "Dokumen telah ditetapkan ke {0}"
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
-
#. Description of the 'Parent Document Type' (Link) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
msgstr ""
-#: core/doctype/user_type/user_type.py:109
+#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
msgstr ""
-#: core/doctype/file/file.py:143
+#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
-#: core/doctype/data_import/importer.py:1035
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
+msgid "The following Assignment Days have been repeated: {0}"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1089
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr ""
-#: core/doctype/data_import/importer.py:998
+#: frappe/core/doctype/data_import/importer.py:1046
msgid "The following values do not exist for {0}: {1}"
msgstr ""
-#: core/doctype/user_type/user_type.py:88
+#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
msgstr ""
-#: templates/emails/login_with_email_link.html:21
+#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
msgstr ""
-#: www/login.py:178
+#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
msgstr ""
-#: website/doctype/web_page/web_page.js:125
+#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
msgstr "Deskripsi meta adalah atribut HTML yang memberikan ringkasan singkat dari halaman web. Mesin pencari seperti Google sering menampilkan deskripsi meta dalam hasil pencarian, yang dapat mempengaruhi rasio klik-tayang."
-#: website/doctype/web_page/web_page.js:132
+#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
msgstr "Gambar meta adalah gambar unik yang mewakili konten halaman. Gambar untuk Kartu ini harus memiliki lebar minimal 280 piksel, dan tinggi minimal 150 piksel."
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr "Nama yang akan muncul di Google Calendar"
+msgstr ""
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
msgstr ""
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
msgstr ""
-#: www/404.html:18
-msgid "The page you are looking for has gone missing."
-msgstr ""
-
-#: www/update-password.html:86
+#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "Kata sandi akun Anda telah kedaluwarsa."
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
msgstr "Proses penghapusan {0} data yang terkait dengan {1} telah dimulai."
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The project number obtained from Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The project number obtained from Google Cloud Console under \n"
"\"IAM & Admin\" > \"Settings\"\n"
""
msgstr ""
-#: core/doctype/user/user.py:943
+#: frappe/core/doctype/user/user.py:993
msgid "The reset password link has been expired"
msgstr ""
-#: core/doctype/user/user.py:945
+#: frappe/core/doctype/user/user.py:995
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: app.py:364 public/js/frappe/request.js:147
+#: frappe/app.py:388 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Sumber daya yang Anda cari tidak tersedia"
-#: core/doctype/user_type/user_type.py:113
+#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:45
+#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: utils/response.py:321
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
-#: public/js/frappe/form/grid_row.js:615
-msgid "The total column width cannot be more than 10."
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
msgstr ""
-#: core/doctype/user_type/user_type.py:96
+#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
msgstr ""
-#. Description of the 'User Field' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "The user from this field will be rewarded points"
-msgstr "Pengguna dari bidang ini akan diberi poin penghargaan"
-
-#: public/js/frappe/form/controls/data.js:24
+#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr "Webhook akan dipicu jika ungkapan ini benar"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:168
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
msgstr "{0} sudah diulang otomatis {1}"
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the section_break_6 (Section Break) field in DocType 'Website
+#. Settings'
+#. Label of the theme (Data) field in DocType 'Website Theme'
+#. Label of the theme_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "Tema"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Theme"
-msgstr "Tema"
-
-#: public/js/frappe/ui/theme_switcher.js:130
+#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
+#. Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Konfigurasi Tema"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the theme_url (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr "URL tema"
+msgstr ""
-#: website/web_template/discussions/discussions.html:3
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "There are no upcoming events for you."
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: website/doctype/web_form/web_form.js:72
-#: website/doctype/web_form/web_form.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:964
+msgid "There are {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:81
+#: frappe/website/doctype/web_form/web_form.js:317
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: core/doctype/doctype/doctype.py:1394
+#: frappe/core/doctype/doctype/doctype.py:1443
msgid "There can be only one Fold in a form"
msgstr "Hanya ada satu Fold dalam bentuk"
-#: contacts/doctype/address/address.py:185
+#: frappe/contacts/doctype/address/address.py:183
msgid "There is an error in your Address Template {0}"
msgstr "Ada kesalahan dalam Template Alamat Anda {0}"
-#: core/doctype/data_export/exporter.py:162
+#: frappe/core/doctype/data_export/exporter.py:162
msgid "There is no data to be exported"
msgstr "Tidak ada data yang diekspor"
-#: core/doctype/file/file.py:571 utils/file_manager.py:376
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "There is nothing new to show you right now."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
msgstr "Ada beberapa masalah dengan url berkas: {0}"
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/public/js/frappe/views/reports/query_report.js:961
+msgid "There is {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "There must be atleast one permission rule."
msgstr "Harus ada minimal aturan satu izin."
-#: core/doctype/user/user.py:499
-msgid "There should remain at least one System Manager"
-msgstr "Ada harus tetap setidaknya satu System Manager"
-
-#: www/error.py:16
+#: frappe/www/error.py:17
msgid "There was an error building this page"
msgstr "Terjadi kesalahan saat membangun halaman ini"
-#: public/js/frappe/views/kanban/kanban_view.js:180
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
msgstr "Terjadi kesalahan saat menyimpan filter"
-#: public/js/frappe/form/sidebar/attachments.js:201
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Ada kesalahan"
-#: public/js/frappe/views/interaction.js:276
+#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
msgstr "Ada kesalahan saat membuat dokumen. Silakan coba lagi."
-#: public/js/frappe/views/communication.js:728
+#: frappe/public/js/frappe/views/communication.js:840
msgid "There were errors while sending email. Please try again."
msgstr "Ada kesalahan saat mengirim email. Silakan coba lagi."
-#: model/naming.py:449
+#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator"
-#: www/404.html:15
-msgid "There's nothing here"
+#. Description of the 'Announcement Widget' (Text Editor) field in DocType
+#. 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "These announcements will appear inside a dismissible alert below the Navbar."
+msgstr ""
+
+#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point."
msgstr ""
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "Nilai-nilai ini akan otomatis diperbarui dalam transaksi dan akan berguna jika membatasi hak akses pengguna ini terhadap transaksi-transaksi yang mengandung nilai-nilai ini."
+msgstr ""
-#: www/third_party_apps.html:3 www/third_party_apps.html:13
+#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
msgstr "Aplikasi Pihak Ketiga"
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the third_party_authentication (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr "Pihak Ketiga Otentikasi"
+msgstr ""
-#: geo/doctype/currency/currency.js:8
+#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Mata uang ini dinonaktifkan. Aktifkan untuk digunakan dalam transaksi"
-#: geo/utils.py:84
-msgid "This Doctype does not contain latitude and longitude fields"
-msgstr ""
-
-#: geo/utils.py:67
-msgid "This Doctype does not contain location fields"
-msgstr ""
-
-#: public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Papan Kanban ini akan menjadi pribadi"
-#: __init__.py:917
+#: frappe/public/js/frappe/ui/filters/filter.js:666
+msgid "This Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:670
+msgid "This Quarter"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:662
+msgid "This Week"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:674
+msgid "This Year"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:220
+msgid "This action is irreversible. Do you wish to continue?"
+msgstr ""
+
+#: frappe/__init__.py:546
msgid "This action is only allowed for {}"
msgstr "Tindakan ini hanya diperbolehkan untuk {}"
-#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720
+#: frappe/public/js/frappe/form/toolbar.js:117
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ini tidak dapat dibatalkan"
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr "Kartu ini akan tersedia untuk semua Pengguna jika ini disetel"
-
-#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "This chart will be available to all Users if this is set"
-msgstr "Bagan ini akan tersedia untuk semua Pengguna jika ini disetel"
-
-#: desk/doctype/workspace/workspace.js:23
-msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:90
-msgid "This document cannot be reverted"
-msgstr "Dokumen ini tidak dapat dikembalikan"
+#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "This chart will be available to all Users if this is set"
+msgstr ""
-#: www/confirm_workflow_action.html:8
+#: frappe/custom/doctype/customize_form/customize_form.js:212
+msgid "This doctype has no orphan fields to trim"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1054
+msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
+msgstr ""
+
+#: frappe/model/delete_doc.py:113
+msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
msgstr "Dokumen ini telah dimodifikasi setelah email dikirim."
-#: social/doctype/energy_point_log/energy_point_log.js:8
-msgid "This document has been reverted"
-msgstr "Dokumen ini telah dikembalikan"
+#: frappe/public/js/frappe/form/form.js:1305
+msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
+msgstr ""
-#: public/js/frappe/form/form.js:1075
+#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
msgstr "Dokumen ini sudah diubah, Anda tidak dapat mengubahnya lagi"
-#: model/document.py:1518
-msgid "This document is currently queued for execution. Please try again"
-msgstr "Dokumen ini saat antri untuk eksekusi. Silakan coba lagi"
+#: frappe/model/document.py:475
+msgid "This document is currently locked and queued for execution. Please try again after some time."
+msgstr ""
-#: templates/emails/auto_repeat_fail.html:7
+#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
msgstr "Email ini otomatis terkirim"
-#: printing/doctype/network_printer_settings/network_printer_settings.py:29
-msgid ""
-"This feature can not be used as dependencies are missing.\n"
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
+msgid "This feature can not be used as dependencies are missing.\n"
"\t\t\t\tPlease contact your system manager to enable this by installing pycups!"
msgstr ""
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "This feature is brand new and still experimental"
+msgstr ""
+
#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid ""
-"This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
"myfield\n"
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
msgstr ""
-#: core/doctype/file/file.js:10
+#: frappe/core/doctype/file/file.py:500
+msgid "This file is attached to a protected document and cannot be deleted."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
+msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: public/js/frappe/form/form.js:1172
+#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
msgstr "Formulir ini telah dimodifikasi setelah Anda dimuat"
-#: public/js/frappe/form/form.js:457
+#: frappe/public/js/frappe/form/form.js:2257
msgid "This form is not editable due to a Workflow."
msgstr ""
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr "Format ini digunakan jika format khusus negara tidak ditemukan"
+msgstr ""
+
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
+msgid "This geolocation provider is not supported yet."
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr "Ini berjalan di atas slideshow."
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2178
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ini adalah laporan latar belakang. Harap atur filter yang sesuai dan kemudian buat yang baru."
-#: utils/password_strength.py:162
+#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
msgstr "Ini adalah top-10 password yang umum."
-#: utils/password_strength.py:164
+#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
msgstr "Ini adalah sandi top-100 yang umum."
-#: utils/password_strength.py:166
+#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
msgstr "Ini adalah password yang sangat umum."
-#: core/doctype/rq_job/rq_job.js:9
+#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
msgstr ""
-#: templates/emails/auto_reply.html:5
+#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
msgstr "Ini adalah balasan secara otomatis"
#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog
#. Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "This is an example Google SERP Preview."
-msgstr "Ini adalah contoh Pratinjau SERP Google."
+msgstr ""
-#: utils/password_strength.py:168
+#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
msgstr "Hal ini mirip dengan password yang umum digunakan."
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr "Ini adalah jumlah transaksi yang diciptakan terakhir dengan awalan ini"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
msgstr "Tautan ini telah diaktifkan untuk verifikasi."
-#: utils/verified_command.py:49
+#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Link ini tidak valid atau kedaluwarsa. Pastikan Anda telah disisipkan dengan benar."
-#: printing/page/print/print.js:403
+#: frappe/printing/page/print/print.js:410
msgid "This may get printed on multiple pages"
msgstr "Ini dapat dicetak pada beberapa halaman"
-#: utils/goal.py:109
+#: frappe/utils/goal.py:109
msgid "This month"
msgstr "Bulan ini"
-#: email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
+msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
-#: email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
-#: templates/emails/auto_email_report.html:57
+#: frappe/templates/emails/auto_email_report.html:57
msgid "This report was generated on {0}"
msgstr "Laporan ini dibuat pada {0}"
-#: public/js/frappe/views/reports/query_report.js:782
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "This report was generated {0}."
msgstr "Laporan ini dihasilkan {0}."
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
msgstr "Permintaan ini belum disetujui oleh pengguna."
-#: templates/includes/navbar/navbar_items.html:95
+#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
msgstr ""
-#: core/doctype/doctype/doctype.js:76
+#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
msgstr ""
-#: website/doctype/web_page/web_page.js:71
+#: frappe/www/attribution.html:11
+msgid "This software is built on top of many open source packages."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:71
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Judul ini akan digunakan sebagai judul halaman web serta tag meta"
-#: public/js/frappe/form/controls/base_input.js:120
+#: frappe/public/js/frappe/form/controls/base_input.js:129
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
-#: website/doctype/web_page/web_page.js:85
+#. Description of the 'Max Report Rows' (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "This value specifies the max number of rows that can be rendered in report view. "
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
msgstr "Ini akan dibuat secara otomatis saat Anda mempublikasikan halaman, Anda juga dapat memasukkan rute sendiri jika Anda mau"
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr "Ini akan ditampilkan dalam modal setelah perutean"
+msgstr ""
#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown to the user in a dialog after routing to the report"
-msgstr "Ini akan ditampilkan kepada pengguna dalam dialog setelah dirutekan ke laporan"
+msgstr ""
-#: www/third_party_apps.html:21
+#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
msgstr "Ini akan log out {0} dari semua perangkat lain"
-#: templates/emails/delete_data_confirmation.html:3
+#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
msgstr "Ini akan menghapus data Anda secara permanen."
-#: desk/doctype/form_tour/form_tour.js:103
+#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
msgstr ""
-#: core/doctype/rq_job/rq_job.js:15
+#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: core/doctype/user/user.py:1209
+#: frappe/core/doctype/user/user.py:1246
msgid "Throttled"
msgstr "Terhempas"
-#. Label of a Small Text field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the thumbnail_url (Small Text) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr "URL thumbnail"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Thursday"
-msgstr "Kamis"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Thursday"
-msgstr "Kamis"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Thursday"
-msgstr "Kamis"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Thursday"
-msgstr "Kamis"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the thursday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Thursday"
-msgstr "Kamis"
-
-#: email/doctype/newsletter/newsletter.js:118
-msgid "Time"
-msgstr "Waktu"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Time"
-msgstr "Waktu"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Time"
-msgstr "Waktu"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Time"
-msgstr "Waktu"
-
-#. Label of a Datetime field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Time"
-msgstr "Waktu"
-
+#. Label of the time (Datetime) field in DocType 'Recorder'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Time"
-msgstr "Waktu"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Time"
-msgstr "Waktu"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Waktu"
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the time_format (Select) field in DocType 'Language'
+#. Label of the time_format (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Format waktu"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Interval"
-msgstr "Jarak waktu"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Seri waktu"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series Based On"
-msgstr "Seri Waktu Berdasarkan"
+msgstr ""
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the time_taken (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Time Taken"
msgstr ""
-#. Label of a Int field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Time Window (Seconds)"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:395
+#. Label of the time_zone (Select) field in DocType 'System Settings'
+#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of the time_zone (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:407
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7"
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Time Zone"
-msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7"
-
-#. Label of a Autocomplete field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Time Zone"
-msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Time Zone"
-msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7"
-
-#. Label of a Text field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_zones (Text) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr "Zona Waktu"
+msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_format (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr "Format waktu"
+msgstr ""
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the time_in_queries (Float) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Time in Queries"
msgstr ""
#. Description of the 'Expiry time of QR Code Image Page' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time in seconds to retain QR code image on server. Min:240"
-msgstr "Waktu dalam hitungan detik untuk mempertahankan gambar QR code di server. Min: 240"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:413
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
msgstr "Diperlukan seri waktu berdasarkan untuk membuat bagan dasbor"
-#: public/js/frappe/form/controls/time.js:104
+#: frappe/public/js/frappe/form/controls/time.js:124
msgid "Time {0} must be in format: {1}"
msgstr "Waktu {0} harus dalam format: {1}"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Timed Out"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:64
+#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the timeline (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Timeline"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline DocType"
-msgstr "DocType Timeline"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the timeline_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr "Timeline Lapangan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Table field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the timeline_links_sections (Section Break) field in DocType
+#. 'Communication'
+#. Label of the timeline_links (Table) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Timeline Links"
-msgstr "Tautan Timeline"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline Name"
-msgstr "Nama Timeline"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1489
+#: frappe/core/doctype/doctype/doctype.py:1538
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "bidang Timeline harus Link atau Dynamic Link"
-#: core/doctype/doctype/doctype.py:1485
+#: frappe/core/doctype/doctype/doctype.py:1534
msgid "Timeline field must be a valid fieldname"
msgstr "bidang Timeline harus fieldname valid"
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the timeout (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the timeout (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Timeout (In Seconds)"
+msgstr ""
+
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Timeseries"
-msgstr "Timeseries"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:123
-#: public/js/frappe/ui/filters/filter.js:28
+#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:28
msgid "Timespan"
msgstr "Rentang waktu"
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Timespan"
-msgstr "Rentang waktu"
-
-#: core/report/transaction_log_report/transaction_log_report.py:112
+#. Label of the timestamp (Datetime) field in DocType 'Access Log'
+#. Label of the timestamp (Datetime) field in DocType 'Transaction Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:112
msgid "Timestamp"
-msgstr "Timestamp"
+msgstr ""
-#. Label of a Datetime field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Timestamp"
-msgstr "Timestamp"
+#: frappe/desk/doctype/system_console/system_console.js:41
+msgid "Tip: Try the new dropdown console using"
+msgstr ""
-#. Label of a Datetime field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Timestamp"
-msgstr "Timestamp"
-
-#: public/js/form_builder/store.js:89
-#: public/js/frappe/views/workspace/workspace.js:599
-#: public/js/frappe/views/workspace/workspace.js:928
-#: public/js/frappe/views/workspace/workspace.js:1175
+#. Label of the title (Data) field in DocType 'DocType State'
+#. Label of the method (Data) field in DocType 'Error Log'
+#. Label of the title (Data) field in DocType 'Page'
+#. Label of the title (Data) field in DocType 'Changelog Feed'
+#. Label of the title (Data) field in DocType 'Form Tour'
+#. Label of the title (Data) field in DocType 'Form Tour Step'
+#. Label of the title (Data) field in DocType 'Module Onboarding'
+#. Label of the title (Data) field in DocType 'Note'
+#. Label of the title (Data) field in DocType 'Onboarding Step'
+#. Label of the title (Data) field in DocType 'System Health Report Errors'
+#. Label of the title (Data) field in DocType 'Workspace'
+#. Label of the title (Data) field in DocType 'Email Group'
+#. Label of the title (Data) field in DocType 'Blog Category'
+#. Label of the title (Data) field in DocType 'Blog Post'
+#. Label of the title (Data) field in DocType 'Blog Settings'
+#. Label of the title (Data) field in DocType 'Discussion Topic'
+#. Label of the title (Data) field in DocType 'Help Article'
+#. Label of the title (Data) field in DocType 'Portal Menu Item'
+#. Label of the title (Data) field in DocType 'Web Form'
+#. Label of the list_title (Data) field in DocType 'Web Form'
+#. Label of the title (Data) field in DocType 'Web Page'
+#. Label of the meta_title (Data) field in DocType 'Web Page'
+#. Label of the title (Data) field in DocType 'Website Sidebar'
+#. Label of the title (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/page/page.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:393
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Title"
msgstr "Judul"
-#. Label of a Data field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Title"
-msgstr "Judul"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the title_field (Data) field in DocType 'DocType'
+#. Label of the title_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Judul Lapangan"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Title Field"
-msgstr "Judul Lapangan"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the title_prefix (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "Judul Prefix"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1426
+#: frappe/core/doctype/doctype/doctype.py:1475
msgid "Title field must be a valid fieldname"
msgstr "Judul lapangan harus fieldname valid"
-#: website/doctype/web_page/web_page.js:70
+#: frappe/website/doctype/web_page/web_page.js:70
msgid "Title of the page"
msgstr "Judul halaman"
-#: public/js/frappe/views/communication.js:52
-#: public/js/frappe/views/inbox/inbox_view.js:70
+#. Label of the recipients (Code) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Untuk"
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:53
+msgctxt "Email Recipients"
msgid "To"
msgstr "Untuk"
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "To"
-msgstr "Untuk"
-
-#: website/report/website_analytics/website_analytics.js:14
+#. Label of the to_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:14
msgid "To Date"
msgstr "Untuk Tanggal"
-#. Label of a Date field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "To Date"
-msgstr "Untuk Tanggal"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the to_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "To Date Field"
-msgstr "Bidang Tanggal"
-
-#: desk/doctype/todo/todo_list.js:12
-msgid "To Do"
-msgstr "To Do"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
-msgstr "To Do"
-
-#: public/js/frappe/form/sidebar/review.js:50
-msgid "To User"
-msgstr "Kepada Pengguna"
+msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"New {{ doc.doctype }} #{{ doc.name }}
"
msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"{{ doc.name }} Delivered
"
msgstr ""
#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"To add dynamic values from the document, use jinja tags like\n"
-"\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "To add dynamic values from the document, use jinja tags like\n\n"
"\n"
"{ \"id\": \"{{ doc.name }}\" }\n"
"
\n"
""
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:101
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the section_break_10 (Section Break) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr "Untuk dan CC"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:35
+#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
+#. Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
msgstr "Untuk mengonfigurasi Ulangi Otomatis, aktifkan "Izinkan Ulangi Otomatis" dari {0}."
-#: www/login.html:73
+#: frappe/www/login.html:76
msgid "To enable it follow the instructions in the following link: {0}"
msgstr "Untuk mengaktifkannya ikuti instruksi di tautan berikut: {0}"
-#: desk/doctype/onboarding_step/onboarding_step.js:18
+#: frappe/core/doctype/server_script/server_script.js:40
+msgid "To enable server scripts, read the {0}."
+msgstr ""
+
+#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
msgid "To export this step as JSON, link it in a Onboarding document and save the document."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:783
+#: frappe/email/doctype/email_account/email_account.js:126
+msgid "To generate password click {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "To get the updated report, click on {0}."
msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}."
-#: www/me.html:51
-msgid "To manage your authorized third party apps"
+#: frappe/email/doctype/email_account/email_account.js:139
+msgid "To know more click {0}"
msgstr ""
#. Description of the 'Console' (Code) field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "To print output use print(text)"
msgstr ""
-#: core/doctype/user_type/user_type.py:295
+#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:8
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
msgstr "Untuk menggunakan Kalender Google, aktifkan {0}."
-#: integrations/doctype/google_contacts/google_contacts.js:8
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
msgstr "Untuk menggunakan Kontak Google, aktifkan {0}."
-#: integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Untuk menggunakan Google Drive, aktifkan {0}."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "To use Google Indexing, enable Google Settings."
msgstr ""
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a Slack Webhook URL."
msgstr ""
-#: public/js/frappe/utils/diffview.js:43
+#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
msgstr ""
+#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
#. Name of a report
-#: desk/doctype/todo/todo.json desk/report/todo/todo.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
msgstr "To Do"
-#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
-msgid "ToDo"
-msgstr "To Do"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "ToDo"
-msgstr "To Do"
-
-#: public/js/frappe/form/controls/date.js:58
-#: public/js/frappe/views/calendar/calendar.js:267
+#: frappe/public/js/frappe/form/controls/date.js:58
+#: frappe/public/js/frappe/ui/filters/filter.js:733
+#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
msgstr "Hari ini"
-#: public/js/frappe/ui/notifications/notifications.js:55
-msgid "Today's Events"
-msgstr "Acara hari ini"
-
-#: public/js/frappe/views/reports/report_view.js:1495
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
-msgstr "Toggle Chart"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Full Width"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:33
+#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr "Toggle Grid View"
+msgstr ""
-#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195
-#: public/js/frappe/views/reports/report_view.js:1499
+#: frappe/public/js/frappe/ui/page.js:201
+#: frappe/public/js/frappe/ui/page.js:203
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
-msgstr "Toggle Sidebar"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1681
+#: frappe/public/js/frappe/list/list_view.js:1817
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr "Toggle Sidebar"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Theme"
msgstr ""
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr "Token"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
msgstr ""
-#. Linked DocType in Connected App's connections
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Token Cache"
+#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth
+#. Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Token Endpoint Auth Method"
msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Token Cache"
-msgstr ""
-
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#. Label of the token_type (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the token_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
msgstr ""
-#: utils/oauth.py:184
+#: frappe/utils/oauth.py:184
msgid "Token is missing"
msgstr "Token hilang"
-#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253
+#: frappe/public/js/frappe/ui/filters/filter.js:739
+msgid "Tomorrow"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
+#: frappe/model/workflow.py:254
msgid "Too Many Documents"
msgstr ""
-#: rate_limiter.py:88
+#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
msgstr "Terlalu Banyak Permintaan"
-#: database/database.py:387
+#: frappe/database/database.py:473
msgid "Too many changes to database in single action."
msgstr ""
-#: core/doctype/user/user.py:984
+#: frappe/utils/background_jobs.py:730
+msgid "Too many queued background jobs ({0}). Please retry after some time."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1034
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Terlalu banyak pengguna mendaftar baru, sehingga pendaftaran dinonaktifkan. Silakan coba kembali dalam satu jam"
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
-msgstr ""
+msgstr "Alat-alat"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr "Puncak"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
+msgid "Top 10"
+msgstr ""
#. Name of a DocType
-#: website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
msgstr "Top Bar Barang"
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Top Bar Items"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
msgstr ""
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Top Center"
+#. Label of the top_errors (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Top Errors"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
msgstr ""
-#: templates/emails/energy_points_summary.html:3
-msgid "Top Performer"
-msgstr "Performa Top"
-
-#: templates/emails/energy_points_summary.html:18
-msgid "Top Reviewer"
-msgstr "Peninjau Teratas"
-
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Top Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Top {0}"
-msgstr "Top {0}"
-
-#. Label of a Link field in DocType 'Discussion Reply'
-#: website/doctype/discussion_reply/discussion_reply.json
-msgctxt "Discussion Reply"
+#. Label of the topic (Link) field in DocType 'Discussion Reply'
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr "Tema"
+msgstr ""
-#: desk/query_report.py:503
+#: frappe/desk/query_report.py:546
+#: frappe/public/js/frappe/views/reports/print_grid.html:45
+#: frappe/public/js/frappe/views/reports/query_report.js:1323
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
-msgstr "Total"
-
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Total Recipients"
msgstr ""
-#. Label of a Int field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Total Subscribers"
-msgstr "Jumlah Pelanggan"
-
-#. Label of a Read Only field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
-msgid "Total Subscribers"
-msgstr "Jumlah Pelanggan"
-
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Total Views"
+#. Label of the total_background_workers (Int) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Background Workers"
msgstr ""
-#. Label of a Duration field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the total_errors (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Errors (last 1 day)"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:259
+msgid "Total Images"
+msgstr ""
+
+#. Label of the total_outgoing_emails (Int) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Outgoing Emails"
+msgstr ""
+
+#. Label of the total_subscribers (Int) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Total Subscribers"
+msgstr ""
+
+#. Label of the total_users (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Total Users"
+msgstr ""
+
+#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
msgstr ""
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Total number of emails to sync in initial sync process "
-msgstr "Total jumlah email yang disinkronisasi dalam proses sinkronisasi awal"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1181
-#: public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
+msgid "Total:"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Total"
-#: public/js/frappe/views/reports/report_view.js:1156
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "Total Row"
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
+#. Label of the trace_id (Data) field in DocType 'Error Log'
+#: frappe/core/doctype/error_log/error_log.json
msgid "Trace ID"
msgstr ""
-#. Label of a Code field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the traceback (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Traceback"
-msgstr "Melacak kembali"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_changes (Check) field in DocType 'DocType'
+#. Label of the track_changes (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "Lacak Perubahan"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Changes"
-msgstr "Lacak Perubahan"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the track_email_status (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr "Lacak Status Email"
+msgstr ""
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
+#. Label of the track_field (Data) field in DocType 'Milestone'
+#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr "Lacak Bidang"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the track_seen (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "track Dilihat"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the track_steps (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_views (Check) field in DocType 'DocType'
+#. Label of the track_views (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Tampilan Track"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Views"
-msgstr "Tampilan Track"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid ""
-"Track if your email has been opened by the recipient.\n"
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Track if your email has been opened by the recipient.\n"
"
\n"
"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\""
msgstr ""
-#: public/js/frappe/utils/utils.js:1744
+#. Description of a DocType
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Track milestones for any document"
+msgstr ""
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "Tracking"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the transaction_hash (Small Text) field in DocType 'Transaction
+#. Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Hash"
-msgstr "Transaksi Hash"
+msgstr ""
#. Name of a DocType
-#: core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Log"
msgstr "Log Transaksi"
#. Name of a report
-#: core/report/transaction_log_report/transaction_log_report.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.json
msgid "Transaction Log Report"
msgstr "Laporan Log Transaksi"
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:31
+msgid "Transgender"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/components/Properties.vue:19
+msgid "Transition Properties"
+msgstr ""
+
+#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr "Aturan Transisi"
+msgstr ""
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the transitions (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr "Transisi"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the translatable (Check) field in DocType 'DocField'
+#. Label of the translatable (Check) field in DocType 'Custom Field'
+#. Label of the translatable (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr "Bisa diterjemahkan"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Translatable"
-msgstr "Bisa diterjemahkan"
+#: frappe/public/js/frappe/views/reports/query_report.js:2233
+msgid "Translate Data"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Translatable"
-msgstr "Bisa diterjemahkan"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the translated_doctype (Check) field in DocType 'DocType'
+#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Translate Link Fields"
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
+msgid "Translate values"
msgstr ""
-#: public/js/frappe/views/translation_manager.js:11
+#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
msgstr "Terjemahkan {0}"
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#. Label of the translated_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr "diterjemahkan Teks"
+msgstr ""
#. Name of a DocType
-#: core/doctype/translation/translation.json
+#: frappe/core/doctype/translation/translation.json
msgid "Translation"
msgstr "Terjemahan"
-#: public/js/frappe/views/translation_manager.js:46
+#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
msgstr "Terjemahan"
+#. Name of a role
+#: frappe/core/doctype/translation/translation.json
+msgid "Translator"
+msgstr ""
+
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Trash"
-msgstr "Sampah"
+msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Tree"
-msgstr "Pohon"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Tree"
-msgstr "Pohon"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:210
+msgid "Tree View"
+msgstr ""
#. Description of the 'Is Tree' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Tree structures are implemented using Nested Set"
-msgstr "Struktur pohon diimplementasikan menggunakan Nested Set"
+msgstr ""
-#: public/js/frappe/views/treeview.js:20
+#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
msgstr "Tampilan pohon tidak tersedia untuk {0}"
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the method (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr "Metode pemicu"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:191
+#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
-msgstr "Trigger Primary Action"
+msgstr ""
-#: tests/test_translate.py:55
+#: frappe/tests/test_translate.py:55
msgid "Trigger caching"
msgstr ""
#. Description of the 'Trigger Method' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)"
-msgstr "Memicu pada metode yang valid seperti \"before_insert\", \"after_update\", dll (tergantung pada DocType yang dipilih)"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:323
+#: frappe/custom/doctype/customize_form/customize_form.js:144
+msgid "Trim Table"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:318
msgid "Try Again"
msgstr ""
-#. Label of a Data field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the try_naming_series (Data) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Try a Naming Series"
msgstr ""
-#: utils/password_strength.py:108
+#: frappe/printing/page/print/print.js:189
+#: frappe/printing/page/print/print.js:195
+msgid "Try the new Print Designer"
+msgstr ""
+
+#: frappe/utils/password_strength.py:106
msgid "Try to avoid repeated words and characters"
msgstr "Cobalah untuk menghindari kata-kata berulang dan karakter"
-#: utils/password_strength.py:100
+#: frappe/utils/password_strength.py:98
msgid "Try to use a longer keyboard pattern with more turns"
msgstr "Cobalah untuk menggunakan pola keyboard yang lebih lama dengan lebih banyak berubah"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Tuesday"
-msgstr "Selasa"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Tuesday"
-msgstr "Selasa"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Tuesday"
-msgstr "Selasa"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Tuesday"
-msgstr "Selasa"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the tuesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Tuesday"
-msgstr "Selasa"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the two_factor_auth (Check) field in DocType 'Role'
+#. Label of the two_factor_authentication (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr "Dua faktor otentikasi"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Two Factor Authentication"
-msgstr "Dua faktor otentikasi"
-
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the two_factor_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication method"
-msgstr "Metode Two Factor Authentication"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_medium (Select) field in DocType 'Communication'
+#. Label of the fieldtype (Select) field in DocType 'DocField'
+#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
+#. Label of the type (Data) field in DocType 'Console Log'
+#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Desktop Icon'
+#. Label of the type (Select) field in DocType 'Notification Log'
+#. Label of the type (Select) field in DocType 'Number Card'
+#. Label of the type (Select) field in DocType 'System Console'
+#. Label of the type (Select) field in DocType 'Workspace'
+#. Label of the type (Select) field in DocType 'Workspace Link'
+#. Label of the type (Select) field in DocType 'Workspace Shortcut'
+#. Label of the type (Select) field in DocType 'Web Template'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
+#: frappe/public/js/frappe/views/workspace/workspace.js:399
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/www/attribution.html:35
msgid "Type"
msgstr "Jenis"
-#. Label of a Data field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Type"
-msgstr "Jenis"
-
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Type"
-msgstr "Jenis"
-
-#: public/js/frappe/form/controls/comment.js:78
+#: frappe/public/js/frappe/form/controls/comment.js:90
msgid "Type a reply / comment"
msgstr ""
-#: templates/includes/search_template.html:51
+#: frappe/templates/includes/search_template.html:51
msgid "Type something in the search box to search"
msgstr "Ketik sesuatu di kotak pencarian untuk mencari"
-#: templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Type title"
msgstr ""
-#: templates/discussions/discussions.js:341
+#: frappe/templates/discussions/discussions.js:341
msgid "Type your reply here..."
msgstr ""
-#: core/doctype/data_export/exporter.py:143
+#: frappe/core/doctype/data_export/exporter.py:143
msgid "Type:"
msgstr "Jenis:"
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the ui_tour (Check) field in DocType 'Form Tour'
+#. Label of the ui_tour (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "UI Tour"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "UI Tour"
+#. Label of the uid (Int) field in DocType 'Communication'
+#. Label of the uid (Data) field in DocType 'Email Flag Queue'
+#. Label of the uid (Data) field in DocType 'Unhandled Email'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "UID"
msgstr ""
-#. Label of a Int field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidnext (Int) field in DocType 'Email Account'
+#. Label of the uidnext (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDNEXT"
-msgstr "UIDNEXT"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDNEXT"
-msgstr "UIDNEXT"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidvalidity (Data) field in DocType 'Email Account'
+#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
-
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "UNSEEN"
-msgstr "TAK TERLIHAT"
+msgstr ""
#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid ""
-"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook"
msgstr ""
-#. Label of a Small Text field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "URL"
-msgstr "URL"
-
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the url (Data) field in DocType 'Workspace Shortcut'
+#. Label of the url (Small Text) field in DocType 'Integration Request'
+#. Label of the url (Text) field in DocType 'Webhook Request Log'
+#. Label of the url (Data) field in DocType 'Top Bar Item'
+#. Label of the url (Data) field in DocType 'Website Slideshow Item'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:471
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL"
-msgstr "URL"
+msgstr ""
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr "URL untuk dokumentasi atau bantuan"
+msgstr ""
-#: core/doctype/file/file.py:216
+#: frappe/core/doctype/file/file.py:219
msgid "URL must start with http:// or https://"
msgstr ""
-#: website/doctype/web_page/web_page.js:84
+#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of a human-readable page with info that developers might need."
+msgstr ""
+
+#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL of a web page providing information about the client."
+msgstr ""
+
+#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info about the protected resource's terms of service."
+msgstr ""
+
+#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth
+#. Settings'
+#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
+msgid "URL of human-readable page with info on requirements about how the client can use the data."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
msgstr "URL halaman"
-#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "URL to go to on clicking the slideshow image"
-msgstr "URL tujuan saat mengklik gambar slideshow"
+#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing."
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:68
+#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing."
+msgstr ""
+
+#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URL that references a logo for the client."
+msgstr ""
+
+#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+msgid "URL to go to on clicking the slideshow image"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+msgid "UTM Campaign"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/utm_medium/utm_medium.json
+msgid "UTM Medium"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "UTM Source"
+msgstr ""
+
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "UUID"
+msgstr ""
+
+#: frappe/desk/form/document_follow.py:79
+msgid "Un-following document {0}"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67
msgid "Unable to find DocType {0}"
msgstr "Tidak dapat menemukan DocType {0}"
-#: public/js/frappe/ui/capture.js:330
+#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
msgstr "Tidak dapat memuat kamera."
-#: public/js/frappe/model/model.js:258
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "Tidak dapat beban: {0}"
-#: utils/csvutils.py:35
+#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
msgstr "Tidak dapat membuka file terlampir. Apakah Anda ekspor sebagai CSV?"
-#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128
+#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
msgstr "Tidak dapat membaca format file untuk {0}"
-#: core/doctype/communication/email.py:173
+#: frappe/core/doctype/communication/email.py:180
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:439
+#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
msgstr "Tidak dapat memperbarui acara"
-#: core/doctype/file/file.py:458
+#: frappe/core/doctype/file/file.py:464
msgid "Unable to write file format for {0}"
msgstr "Tidak dapat menulis format file untuk {0}"
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr "Kondisi tidak ditetapkan"
+msgstr ""
-#: www/error.py:15
-msgid "Uncaught Server Exception"
-msgstr "Pengecualian Server Tidak Tertangkap"
+#: frappe/app.py:396
+msgid "Uncaught Exception"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:93
+#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
msgstr "Tidak berubah"
-#: public/js/frappe/form/toolbar.js:450
+#: frappe/public/js/frappe/form/toolbar.js:518
msgid "Undo"
msgstr ""
-#: public/js/frappe/form/toolbar.js:458
+#: frappe/public/js/frappe/form/toolbar.js:526
msgid "Undo last action"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Unfollow"
msgstr "Berhenti mengikuti"
#. Name of a DocType
-#: email/doctype/unhandled_email/unhandled_email.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Unhandled Email"
msgstr "Email Tak Tertangani"
-#: public/js/frappe/views/workspace/workspace.js:556
-msgid "Unhide Workspace"
+#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Unhandled Emails"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the unique (Check) field in DocType 'DocField'
+#. Label of the unique (Check) field in DocType 'Custom Field'
+#. Label of the unique (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr "Unik"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Unique"
-msgstr "Unik"
+#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n"
+"
\n"
+"Should remain same across multiple versions or updates of the software."
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Unique"
-msgstr "Unik"
+#: frappe/website/report/website_analytics/website_analytics.js:60
+msgid "Unknown"
+msgstr "tidak diketahui"
-#: public/js/frappe/model/model.js:199
+#: frappe/public/js/frappe/model/model.js:209
msgid "Unknown Column: {0}"
msgstr "Kolom diketahui: {0}"
-#: utils/data.py:1215
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: auth.py:299
+#: frappe/auth.py:316
msgid "Unknown User"
msgstr "Pengguna tidak dikenal"
-#: utils/csvutils.py:52
-msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252."
-msgstr "Diketahui encoding berkas. Mencoba utf-8, windows-1250, windows-1252."
+#: frappe/utils/csvutils.py:54
+msgid "Unknown file encoding. Tried to use: {0}"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.js:7
+#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
msgstr ""
-#: website/doctype/blog_post/blog_post.js:36
-#: website/doctype/web_form/web_form.js:77
+#: frappe/public/js/frappe/form/footer/form_timeline.js:632
+#: frappe/website/doctype/blog_post/blog_post.js:36
+#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Unread"
-msgstr "belum dibaca"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the unread_notification_sent (Check) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr "Pemberitahuan belum dibaca Sent"
+msgstr ""
-#: utils/safe_exec.py:438
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+msgid "Unselect All"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr "unshared"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Unshared"
-msgstr "unshared"
-
-#: email/queue.py:68
+#: frappe/email/queue.py:67
msgid "Unsubscribe"
msgstr "Berhenti berlangganan"
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr "Metode berhenti berlangganan"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Unsubscribe Param"
-msgstr "Unsubscribe Param"
+#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Unsubscribe Params"
+msgstr ""
-#: email/queue.py:126
+#. Label of the unsubscribed (Check) field in DocType 'Contact'
+#. Label of the unsubscribed (Check) field in DocType 'User'
+#. Label of the unsubscribed (Check) field in DocType 'Email Group Member'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/queue.py:123
msgid "Unsubscribed"
msgstr "Berhenti berlangganan"
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Unsubscribed"
-msgstr "Berhenti berlangganan"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
-#. Label of a Check field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Unsubscribed"
-msgstr "Berhenti berlangganan"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Unsubscribed"
-msgstr "Berhenti berlangganan"
-
-#: public/js/frappe/data_import/import_preview.js:72
+#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Kolom Tanpa Judul"
-#: core/doctype/file/file.js:28
+#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
msgstr "membuka ritsleting"
-#: public/js/frappe/views/file/file_view.js:132
+#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
msgstr "Buka file {0}"
-#: public/js/frappe/views/file/file_view.js:125
+#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
msgstr "Membuka ritsleting file ..."
-#: desk/doctype/event/event.py:258
+#: frappe/desk/doctype/event/event.py:269
msgid "Upcoming Events for Today"
msgstr "Acara Mendatang untuk Hari Ini"
-#: core/doctype/data_import/data_import_list.js:40
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
-#: custom/doctype/customize_form/customize_form.js:370
-#: desk/doctype/bulk_update/bulk_update.js:15
-#: printing/page/print_format_builder/print_format_builder.js:447
-#: printing/page/print_format_builder/print_format_builder.js:501
-#: printing/page/print_format_builder/print_format_builder.js:670
-#: printing/page/print_format_builder/print_format_builder.js:757
-#: public/js/frappe/form/grid_row.js:402
-#: public/js/frappe/views/workspace/workspace.js:647
+#. Label of the update (Button) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/data_import/data_import_list.js:36
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
+#: frappe/custom/doctype/customize_form/customize_form.js:438
+#: frappe/desk/doctype/bulk_update/bulk_update.js:15
+#: frappe/printing/page/print_format_builder/print_format_builder.js:447
+#: frappe/printing/page/print_format_builder/print_format_builder.js:507
+#: frappe/printing/page/print_format_builder/print_format_builder.js:678
+#: frappe/printing/page/print_format_builder/print_format_builder.js:765
+#: frappe/public/js/frappe/form/grid_row.js:411
msgid "Update"
msgstr "Perbaruan"
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Update"
-msgstr "Perbaruan"
-
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_amendment_naming (Button) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:596
-msgid "Update Details"
-msgstr "Perbarui Rincian"
-
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Update Existing Records"
-msgstr "Perbarui Catatan yang Ada"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the update_field (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Field"
-msgstr "Perbarui Kolom"
+msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:6
-#: core/doctype/installed_applications/installed_applications.js:13
+#: frappe/core/doctype/installed_applications/installed_applications.js:6
+#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:45
+#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:494
+msgid "Update Password"
+msgstr ""
+
+#. Label of the update_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
msgstr ""
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_series_start (Button) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr "Perbarui Nomor Seri"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr "Perbarui Pengaturan"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:13
+#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
msgstr "Perbarui Terjemahan"
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
+#. Label of the update_value (Data) field in DocType 'Workflow Document State'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr "Perbarui Nilai"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Update Value"
-msgstr "Perbarui Nilai"
+#: frappe/utils/change_log.py:381
+msgid "Update from Frappe Cloud"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:310
+#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/web_form/web_form.js:423
-msgid "Updated"
-msgstr "Diperbarui"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
+#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
+#: frappe/public/js/frappe/web_form/web_form.js:427
msgid "Updated"
msgstr "Diperbarui"
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Updated"
-msgstr "Diperbarui"
-
-#: desk/doctype/bulk_update/bulk_update.js:32
+#: frappe/desk/doctype/bulk_update/bulk_update.js:32
msgid "Updated Successfully"
msgstr "Berhasil Diperbarui"
-#: public/js/frappe/desk.js:420
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "Diperbarui Ke Versi Baru 🎉"
-#: public/js/frappe/list/bulk_operations.js:307
+#: frappe/public/js/frappe/list/bulk_operations.js:372
msgid "Updated successfully"
msgstr "Berhasil diperbarui"
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Updates"
-msgstr ""
-
-#: utils/response.py:320
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Memperbarui"
-#: public/js/frappe/form/save.js:11
+#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
msgstr "Memperbarui"
-#: email/doctype/email_queue/email_queue.py:406
+#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:17
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:23
+#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:59
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
msgstr ""
-#: public/js/frappe/form/toolbar.js:126
+#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:98
+#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
msgstr "Memperbarui {0}"
-#: core/doctype/data_import/data_import.js:36
+#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
msgstr "Memperbarui {0} dari {1}, {2}"
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:121
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:122
+#: frappe/public/js/billing.bundle.js:131
+msgid "Upgrade plan"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:331
+msgid "Upgrade your support experience with Frappe Helpdesk"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
msgstr "Mengunggah"
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "Uploaded To Dropbox"
-msgstr "Diunggah Ke Dropbox"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
+msgid "Upload Image"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198
+msgid "Upload file"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201
+msgid "Upload {0} files"
+msgstr ""
+
+#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
+msgid "Uploaded To Dropbox"
+msgstr ""
+
+#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr "Diunggah ke Google Drive"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#, python-format
-msgctxt "Onboarding Step"
msgid "Use % for any non empty value."
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr "Gunakan pengkodean ASCII untuk kata sandi"
+msgstr ""
-#. Label of a Check field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Use First Day of Period"
+msgstr ""
+
+#. Label of the use_html (Check) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_imap (Check) field in DocType 'Email Account'
+#. Label of the use_imap (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "Gunakan IMAP"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use IMAP"
-msgstr "Gunakan IMAP"
+#. Label of the use_number_format_from_currency (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Use Number Format from Currency"
+msgstr ""
-#. Label of a Check field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the use_post (Check) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr "Gunakan POST"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr "Gunakan Diagram Laporan"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_ssl (Check) field in DocType 'Email Account'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
+#. Label of the use_ssl (Check) field in DocType 'Email Domain'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "Gunakan SSL"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use SSL"
-msgstr "Gunakan SSL"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_starttls (Check) field in DocType 'Email Account'
+#. Label of the use_starttls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use STARTTLS"
+#. Label of the use_tls (Check) field in DocType 'Email Account'
+#. Label of the use_tls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use TLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Use TLS"
-msgstr "Gunakan TLS"
-
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use TLS"
-msgstr "Gunakan TLS"
-
-#: utils/password_strength.py:44
+#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
msgstr "Gunakan beberapa kata, hindari frasa umum."
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
msgstr ""
-#: model/db_query.py:434
+#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Use if the default settings don't seem to detect your data correctly"
+msgstr ""
+
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: model/db_query.py:413
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "Penggunaan sub-query atau fungsi dibatasi"
-#: printing/page/print/print.js:272
+#: frappe/printing/page/print/print.js:279
msgid "Use the new Print Format Builder"
msgstr ""
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr "Gunakan fieldname ini untuk menghasilkan judul"
+msgstr ""
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Use this, for example, if all sent emails should also be send to an archive."
+msgstr ""
+
+#. Label of the used_oauth (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
msgstr ""
+#. Label of the user (Link) field in DocType 'Assignment Rule User'
+#. Label of the user (Link) field in DocType 'Reminder'
+#. Label of the user (Link) field in DocType 'Activity Log'
+#. Label of the user (Link) field in DocType 'API Request Log'
+#. Label of the user (Link) field in DocType 'Communication'
+#. Label of the user (Link) field in DocType 'DocShare'
+#. Label of the user (Link) field in DocType 'Log Setting User'
+#. Label of the user (Link) field in DocType 'Permission Inspector'
#. Name of a DocType
-#: core/doctype/user/user.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
-#: desk/page/user_profile/user_profile_controller.js:65
-#: templates/emails/energy_points_summary.html:38
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Assignment Rule User'
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
-msgctxt "Assignment Rule User"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Log Setting User'
-#: core/doctype/log_setting_user/log_setting_user.json
-msgctxt "Log Setting User"
-msgid "User"
-msgstr "Pengguna"
-
-#. Linked DocType in Module Profile's connections
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Note Seen By'
-#: desk/doctype/note_seen_by/note_seen_by.json
-msgctxt "Note Seen By"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "User"
-msgstr "pengguna"
-
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "User"
-msgstr "Pengguna"
-
-#. Linked DocType in Role Profile's connections
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Route History'
-#: desk/doctype/route_history/route_history.json
-msgctxt "Route History"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "User"
-msgstr "Pengguna"
-
+#. Label of the user (Link) field in DocType 'User Group Member'
+#. Label of the user (Link) field in DocType 'User Permission'
#. Label of a Link in the Users Workspace
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User"
+#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Note Seen By'
+#. Label of the user (Link) field in DocType 'Notification Settings'
+#. Label of the user (Link) field in DocType 'Route History'
+#. Label of the user (Link) field in DocType 'Document Follow'
+#. Label of the user (Link) field in DocType 'Google Calendar'
+#. Label of the user (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the user (Link) field in DocType 'OAuth Bearer Token'
+#. Label of the user (Link) field in DocType 'OAuth Client'
+#. Label of the user (Link) field in DocType 'Token Cache'
+#. Label of the user (Link) field in DocType 'Webhook Request Log'
+#. Label of the user (Link) field in DocType 'Blogger'
+#. Label of the user (Link) field in DocType 'Personal Data Download Request'
+#. Label of the user (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:3
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
msgstr "Pengguna"
-#. Label of a Link field in DocType 'User Group Member'
-#: core/doctype/user_group_member/user_group_member.json
-msgctxt "User Group Member"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "User"
-msgstr "Pengguna"
-
-#. Label of a Link field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the user (Link) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "User "
-msgstr "Pengguna"
+msgstr ""
-#: core/doctype/has_role/has_role.py:24
+#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
msgstr "Pengguna {0} 'sudah memiliki peran' {1} '"
#. Name of a DocType
-#: core/doctype/report/user_activity_report.json
+#: frappe/core/doctype/report/user_activity_report.json
msgid "User Activity Report"
msgstr ""
#. Name of a DocType
-#: core/doctype/report/user_activity_report_without_sort.json
+#: frappe/core/doctype/report/user_activity_report_without_sort.json
msgid "User Activity Report Without Sort"
msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the user_agent (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr "Agen pengguna"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the in_create (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr "Pengguna Tidak dapat Buat"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the read_only (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr "Pengguna tidak bisa Cari"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/frappe/desk.js:556
+msgid "User Changed"
+msgstr ""
+
+#. Label of the defaults (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr "Default Pengguna"
+msgstr ""
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_details_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Details"
msgstr ""
+#. Name of a report
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
+msgid "User Doctype Permissions"
+msgstr ""
+
#. Name of a DocType
-#: core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
msgstr ""
-#: core/doctype/user_type/user_type.py:97
+#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_email/user_email.json
+#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
msgstr "Email Pengguna"
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_emails (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr "Email Pengguna"
-
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "User Field"
-msgstr "Bidang Pengguna"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
msgstr ""
-#. Label of a Table MultiSelect field in DocType 'User Group'
-#: core/doctype/user_group/user_group.json
-msgctxt "User Group"
+#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
+#. Group'
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
msgstr ""
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
+#. Label of the userid (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr "ID Pengguna"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr "Properti ID Pengguna"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Description of a DocType
+#: frappe/website/doctype/blogger/blogger.json
+msgid "User ID of a Blogger"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr "Identitas pengguna"
+msgstr ""
-#. Label of a Select field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_id_field (Select) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
msgstr ""
-#: core/doctype/user_type/user_type.py:287
+#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_image (Attach Image) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr "KOSONG"
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
+msgid "User Menu"
+msgstr ""
+
+#. Label of the user_name (Data) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr "Nama pengguna"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
msgstr "Pengguna Izin"
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Permission"
-msgstr "Pengguna Izin"
-
-#: public/js/frappe/views/reports/query_report.js:1772
-#: public/js/frappe/views/reports/report_view.js:1657
+#. Label of a Link in the Users Workspace
+#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/workspace/users/users.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1933
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Permissions Pengguna"
-#: public/js/frappe/list/list_view.js:1639
+#: frappe/public/js/frappe/list/list_view.js:1775
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Permissions Pengguna"
-#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Permission"
-msgid "User Permissions"
-msgstr "Permissions Pengguna"
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "User Permissions are used to limit users to specific records."
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:124
-msgid "User Permissions created sucessfully"
-msgstr "Izin Pengguna dibuat dengan sukses"
+#: frappe/core/doctype/user_permission/user_permission_list.js:124
+msgid "User Permissions created successfully"
+msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgid "User Profile"
-msgstr "Profil pengguna"
-
-#. Label of a Link field in DocType 'LDAP Group Mapping'
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
-msgctxt "LDAP Group Mapping"
+#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+msgid "User Role Profile"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
msgstr ""
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+msgid "User Settings"
+msgstr ""
+
#. Name of a DocType
-#: core/doctype/user_social_login/user_social_login.json
+#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User Social Login"
msgstr "Login Sosial Pengguna"
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the _user_tags (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr "Pengguna Tags"
-
-#. Name of a DocType
-#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82
-msgid "User Type"
-msgstr "Tipe Pengguna"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Type"
-msgstr "Tipe Pengguna"
-
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Type"
-msgid "User Type"
-msgstr "Tipe Pengguna"
-
-#. Name of a DocType
-#: core/doctype/user_type_module/user_type_module.json
-msgid "User Type Module"
msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_type (Link) field in DocType 'User'
+#. Name of a DocType
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type/user_type.py:83
+msgid "User Type"
+msgstr "Tipe Pengguna"
+
+#. Label of the user_type_modules (Table) field in DocType 'User Type'
+#. Name of a DocType
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
msgid "User Type Module"
msgstr ""
#. Description of the 'Allow Login using Mobile Number' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr "Pengguna dapat login menggunakan id email atau nomor ponsel"
+msgstr ""
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr "Pengguna bisa login menggunakan ID Email atau User Name"
+msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:26
-msgid "User does not exist"
-msgstr "pengguna tidak ada"
+#: frappe/templates/includes/login/login.js:292
+msgid "User does not exist."
+msgstr ""
-#: core/doctype/user_type/user_type.py:82
+#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
msgstr ""
-#: core/doctype/docshare/docshare.py:55
+#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
msgstr "Pengguna wajib untuk Berbagi"
-#. Label of a Check field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the user_must_always_select (Check) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr "Pengguna harus selalu pilih"
+msgstr ""
-#: model/delete_doc.py:224
-msgid "User not allowed to delete {0}: {1}"
-msgstr "Pengguna tidak diperbolehkan untuk menghapus {0}: {1}"
-
-#: core/doctype/user_permission/user_permission.py:59
+#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
msgstr "Izin pengguna sudah ada"
-#: www/login.py:153
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:224
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: core/doctype/user/user.py:504
+#: frappe/core/doctype/user/user.py:538
msgid "User {0} cannot be deleted"
msgstr "Pengguna {0} tidak dapat dihapus"
-#: core/doctype/user/user.py:242
+#: frappe/core/doctype/user/user.py:328
msgid "User {0} cannot be disabled"
msgstr "Pengguna {0} tidak dapat dinonaktifkan"
-#: core/doctype/user/user.py:564
+#: frappe/core/doctype/user/user.py:604
msgid "User {0} cannot be renamed"
msgstr "Pengguna {0} tidak dapat diganti"
-#: permissions.py:139
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "Pengguna {0} tidak memiliki akses ke dokumen ini"
-#: permissions.py:162
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Pengguna {0} tidak memiliki akses doctype melalui izin peran untuk dokumen {1}"
-#: templates/emails/data_deletion_approval.html:1
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108
+#: frappe/desk/doctype/workspace/workspace.py:275
+msgid "User {0} does not have the permission to create a Workspace."
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:1
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
msgstr "Pengguna {0} telah meminta penghapusan data"
-#: utils/oauth.py:272
+#: frappe/core/doctype/user/user.py:1375
+msgid "User {0} impersonated as {1}"
+msgstr ""
+
+#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
msgstr "Pengguna {0} dinonaktifkan"
-#: desk/form/assign_to.py:101
+#: frappe/sessions.py:242
+msgid "User {0} is disabled. Please contact your System Manager."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
msgstr ""
-#: www/login.py:99
+#. Label of the username (Data) field in DocType 'User'
+#. Label of the username (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/www/login.py:110
msgid "Username"
msgstr "Nama pengguna"
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Username"
-msgstr "Nama pengguna"
-
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
-msgid "Username"
-msgstr "Nama pengguna"
-
-#: core/doctype/user/user.py:644
+#: frappe/core/doctype/user/user.py:693
msgid "Username {0} already exists"
msgstr "Nama pengguna {0} sudah ada"
+#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
#. Label of a Card Break in the Users Workspace
-#: core/workspace/users/users.json
+#. Label of the users_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
msgstr "Pengguna"
-#. Label of a Table MultiSelect field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Users"
-msgstr "Pengguna"
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
+msgstr ""
-#. Description of the 'Allot Points To Assigned Users' (Check) field in DocType
-#. 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Users assigned to the reference document will get points."
-msgstr "Pengguna yang ditugaskan ke dokumen referensi akan mendapatkan poin."
-
-#: core/page/permission_manager/permission_manager.js:345
+#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
msgstr "Pengguna dengan peran {0}:"
-#: public/js/frappe/ui/theme_switcher.js:70
+#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
msgstr ""
-#: public/js/frappe/desk.js:112
+#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
msgstr "Menggunakan konsol ini dapat memungkinkan penyerang meniru identitas Anda dan mencuri informasi Anda. Jangan masukkan atau tempel kode yang tidak Anda mengerti."
-#. Label of a Percent field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the utilization (Percent) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Utilization"
+msgstr ""
+
+#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Utilization %"
msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr "Sah"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/templates/includes/login/login.js:52
+#: frappe/templates/includes/login/login.js:65
+msgid "Valid Login id required."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:39
+msgid "Valid email and name required"
+msgstr ""
+
+#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr "Validasi Field"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:356
+#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Validate Frappe Mail Settings"
+msgstr ""
+
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Account'
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Domain'
+#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType
+#. 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Validate SSL Certificate"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:360
msgid "Validation Error"
msgstr "Kesalahan Validasi"
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Keabsahan"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:92
-#: public/js/frappe/list/bulk_operations.js:271
-#: public/js/frappe/list/bulk_operations.js:333
+#. Label of the value (Data) field in DocType 'Milestone'
+#. Label of the defvalue (Text) field in DocType 'DefaultValue'
+#. Label of the value (Data) field in DocType 'Document Naming Rule Condition'
+#. Label of the value (Data) field in DocType 'SMS Parameter'
+#. Label of the value (Data) field in DocType 'Query Parameters'
+#. Label of the value (Small Text) field in DocType 'Webhook Header'
+#. Label of the value (Text) field in DocType 'Website Meta Tag'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/public/js/frappe/list/bulk_operations.js:336
+#: frappe/public/js/frappe/list/bulk_operations.js:398
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
msgstr "Nilai"
-#. Label of a Text field in DocType 'DefaultValue'
-#: core/doctype/defaultvalue/defaultvalue.json
-msgctxt "DefaultValue"
-msgid "Value"
-msgstr "Nilai"
-
-#. Label of a Data field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Value"
-msgstr "Nilai"
-
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Value"
-msgstr "Nilai"
-
-#. Label of a Data field in DocType 'Query Parameters'
-#: integrations/doctype/query_parameters/query_parameters.json
-msgctxt "Query Parameters"
-msgid "Value"
-msgstr "Nilai"
-
-#. Label of a Data field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
-msgid "Value"
-msgstr "Nilai"
-
-#. Label of a Small Text field in DocType 'Webhook Header'
-#: integrations/doctype/webhook_header/webhook_header.json
-msgctxt "Webhook Header"
-msgid "Value"
-msgstr "Nilai"
-
-#. Label of a Text field in DocType 'Website Meta Tag'
-#: website/doctype/website_meta_tag/website_meta_tag.json
-msgctxt "Website Meta Tag"
-msgid "Value"
-msgstr "Nilai"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Value Based On"
-msgstr "Nilai Berdasarkan"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Value Change"
-msgstr "Nilai Perubahan"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Value Change"
-msgstr "Nilai Perubahan"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the value_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr "Nilai Berubah"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the property_value (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr "Nilai yang Akan Ditetapkan"
+msgstr ""
-#: model/base_document.py:930 model/document.py:648
+#: frappe/model/base_document.py:1054 frappe/model/document.py:835
msgid "Value cannot be changed for {0}"
msgstr "Nilai tidak dapat diubah untuk {0}"
-#: model/document.py:593
+#: frappe/model/document.py:781
msgid "Value cannot be negative for"
msgstr "Nilai tidak boleh negatif untuk"
-#: model/document.py:597
+#: frappe/model/document.py:785
msgid "Value cannot be negative for {0}: {1}"
msgstr "Nilai tidak boleh negatif untuk {0}: {1}"
-#: custom/doctype/property_setter/property_setter.js:7
+#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
msgstr "Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1"
-#: custom/doctype/customize_form/customize_form.py:611
+#: frappe/custom/doctype/customize_form/customize_form.py:611
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Nilai untuk bidang {0} terlalu panjang di {1}. Panjang harus kurang dari {2} karakter"
-#: model/base_document.py:360
+#: frappe/model/base_document.py:445
msgid "Value for {0} cannot be a list"
msgstr "Nilai untuk {0} tidak bisa daftar"
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr "Nilai dari bidang ini akan ditetapkan sebagai tanggal jatuh tempo di ToDo"
+msgstr ""
-#: model/base_document.py:712
-msgid "Value missing for"
-msgstr "Nilai hilang untuk"
-
-#: core/doctype/data_import/importer.py:698
+#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
msgstr "Nilai harus salah satu dari {0}"
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Value to Validate"
-msgstr "Nilai untuk Divalidasi"
+#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType
+#. 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE."
+msgstr ""
-#: model/base_document.py:997
+#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Value to Validate"
+msgstr ""
+
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "Nilai terlalu besar"
-#: core/doctype/data_import/importer.py:711
+#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
msgstr "Nilai {0} hilang untuk {1}"
-#: core/doctype/data_import/importer.py:742 utils/data.py:877
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Nilai {0} harus dalam format durasi yang valid: dhms"
-#: core/doctype/data_import/importer.py:729
+#: frappe/core/doctype/data_import/importer.py:745
+#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
msgstr "Nilai {0} harus dalam format {1}"
+#: frappe/core/doctype/version/version_view.html:8
+msgid "Values Changed"
+msgstr "Nilai Berubah"
+
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Verdana"
-msgstr "Verdana"
+msgstr ""
-#: twofactor.py:362
-msgid "Verfication Code"
-msgstr "Kode Verifikasi"
+#: frappe/templates/includes/login/login.js:333
+msgid "Verification"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:10
+#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352
+msgid "Verification Code"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
msgstr "Tautan verifikasi"
-#: twofactor.py:251
+#: frappe/templates/includes/login/login.js:383
+msgid "Verification code email not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
msgstr "Kode verifikasi telah dikirim ke alamat email Anda yang terdaftar."
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "Diverifikasi"
+msgstr ""
-#: public/js/frappe/ui/messages.js:352
+#: frappe/public/js/frappe/ui/messages.js:359
+#: frappe/templates/includes/login/login.js:337
msgid "Verify"
msgstr "Memeriksa"
-#: public/js/frappe/ui/messages.js:351
+#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
msgstr "Verifikasi Kata Sandi"
+#: frappe/templates/includes/login/login.js:171
+msgid "Verifying..."
+msgstr ""
+
#. Name of a DocType
-#: core/doctype/version/version.json
+#: frappe/core/doctype/version/version.json
msgid "Version"
msgstr "Versi"
-#: public/js/frappe/desk.js:131
+#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
msgstr "Versi Diperbarui"
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "URL Video"
-
-#. Label of a Select field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "View"
msgstr ""
-#: core/doctype/success_action/success_action.js:58
-#: public/js/frappe/form/success_action.js:89
+#. Label of the view_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
+msgid "View"
+msgstr "Melihat"
+
+#: frappe/core/doctype/success_action/success_action.js:60
+#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
msgstr "Lihat semua"
-#: public/js/frappe/form/toolbar.js:507
+#: frappe/public/js/frappe/form/toolbar.js:580
msgid "View Audit Trail"
msgstr ""
-#: templates/includes/likes/likes.py:34
+#: frappe/templates/includes/likes/likes.py:34
msgid "View Blog Post"
msgstr ""
-#: templates/includes/comments/comments.py:58
+#: frappe/templates/includes/comments/comments.py:56
msgid "View Comment"
msgstr "Lihat Komentar"
-#: public/js/frappe/views/treeview.js:467
+#: frappe/core/doctype/user/user.js:151
+msgid "View Doctype Permissions"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:4
+msgid "View File"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:220
+msgid "View Full Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
msgstr "Lihat Daftar"
#. Name of a DocType
-#: core/doctype/view_log/view_log.json
+#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
msgstr "Melihat log"
-#: core/doctype/user/user.js:133
-#: core/doctype/user_permission/user_permission.js:24
+#: frappe/core/doctype/user/user.js:142
+#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
msgstr "Lihat Dokumen yang Diizinkan"
-#. Label of a Button field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the view_properties (Button) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr "Listing (melalui Customize Form)"
-
-#: social/doctype/energy_point_log/energy_point_log_list.js:20
-msgid "View Ref"
-msgstr "Lihat referensi"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr "Melihat laporan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the view_settings (Section Break) field in DocType 'DocType'
+#. Label of the view_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Lihat Pengaturan"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "View Settings"
-msgstr "Lihat Pengaturan"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the view_switcher (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "View Switcher"
msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py website/doctype/website_settings/website_settings.js:16
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "Lihat Situs Web"
-#: www/confirm_workflow_action.html:12
+#: frappe/www/confirm_workflow_action.html:12
msgid "View document"
msgstr "Lihat dokumen"
-#: core/doctype/file/file.js:31
-msgid "View file"
-msgstr ""
-
-#: templates/emails/auto_email_report.html:60
+#: frappe/templates/emails/auto_email_report.html:60
msgid "View report in your browser"
msgstr "Lihat laporan di browser Anda"
-#: templates/emails/print_link.html:2
+#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
msgstr "Lihat ini dalam browser Anda"
-#: automation/doctype/auto_repeat/auto_repeat.js:43
-#: desk/doctype/calendar_view/calendar_view_list.js:10
-#: desk/doctype/dashboard/dashboard_list.js:10
+#: frappe/public/js/frappe/web_form/web_form.js:454
+msgctxt "Button in web form"
+msgid "View your response"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
+#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
+#: frappe/desk/doctype/dashboard/dashboard_list.js:10
msgid "View {0}"
msgstr "Lihat {0}"
-#. Label of a Data field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
+#. Label of the viewed_by (Data) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr "Dilihat oleh"
-
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Views"
msgstr ""
#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/workspace/build/build.json
msgid "Views"
-msgstr ""
+msgstr "Tampilan"
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the is_virtual (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
msgstr ""
-#: model/virtual_doctype.py:78
+#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
msgstr ""
-#: model/virtual_doctype.py:91
+#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the visibility_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Visit"
-msgstr "Kunjungan"
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41
+msgid "Visible to website/portal users."
+msgstr ""
-#: website/doctype/website_route_meta/website_route_meta.js:7
+#. Option for the 'Type' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Visit"
+msgstr ""
+
+#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
msgstr "Kunjungi Halaman Web"
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the visitor_id (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
msgstr ""
-#: templates/discussions/reply_section.html:38
+#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Warehouse"
msgstr "Gudang"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Peringatan"
-#: public/js/frappe/model/meta.js:179
+#: frappe/custom/doctype/customize_form/customize_form.js:217
+msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1125
+msgid "Warning: Naming is not set"
+msgstr ""
+
+#: frappe/public/js/frappe/model/meta.js:182
msgid "Warning: Unable to find {0} in any table related to {1}"
msgstr "Peringatan: Tidak dapat menemukan {0} dalam tabel mana pun yang terkait dengan {1}"
#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: website/doctype/help_article/templates/help_article.html:24
+#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
msgstr "Apakah artikel ini berguna?"
-#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Watch Video"
-msgstr "Menonton video"
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
+msgid "Watch Tutorial"
+msgstr ""
-#: desk/doctype/workspace/workspace.js:38
+#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Watch Video"
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
msgstr ""
-#: templates/emails/delete_data_confirmation.html:2
+#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
msgstr "Kami telah menerima permintaan penghapusan {0} data yang terkait dengan: {1}"
-#: templates/emails/download_data.html:2
+#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
msgstr "Kami telah menerima permintaan dari Anda untuk mengunduh {0} data Anda yang terkait dengan: {1}"
-#: public/js/frappe/form/controls/password.js:88
+#: frappe/www/attribution.html:12
+msgid "We would like to thank the authors of these packages for their contribution."
+msgstr ""
+
+#: frappe/www/contact.py:50
+msgid "We've received your query!"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_form/web_form.json
-msgid "Web Form"
-msgstr "Formulir web"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Web Form"
-msgstr "Formulir web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Form"
-msgstr "Formulir web"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/workspace/website/website.json
msgid "Web Form"
msgstr "Formulir web"
#. Name of a DocType
-#: website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
msgstr "Formulir web Lapangan"
-#. Label of a Table field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the web_form_fields (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr "Formulir web Fields"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page/web_page.json
-msgid "Web Page"
-msgstr "Halaman web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Page"
-msgstr "Halaman web"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/workspace/website/website.json
msgid "Web Page"
msgstr "Halaman web"
#. Name of a DocType
-#: website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
msgstr "Blok Halaman Web"
-#: public/js/frappe/utils/utils.js:1697
+#: frappe/public/js/frappe/utils/utils.js:1712
msgid "Web Page URL"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
msgstr "Tampilan Halaman Web"
#. Label of a Card Break in the Website Workspace
-#: website/workspace/website/website.json
+#: frappe/website/workspace/website/website.json
msgid "Web Site"
msgstr "Situs web"
+#. Label of the web_template (Link) field in DocType 'Web Page Block'
#. Name of a DocType
-#: website/doctype/web_template/web_template.json
-msgid "Web Template"
-msgstr "Template Web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Template"
-msgstr "Template Web"
-
-#. Label of a Link field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Web Template"
msgstr "Template Web"
#. Name of a DocType
-#: website/doctype/web_template_field/web_template_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
msgstr "Bidang Template Web"
-#. Label of a Code field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr "Nilai Template Web"
+msgstr ""
-#: utils/jinja_globals.py:48
+#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the web_view (Tab Break) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr "web View"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/webhook/webhook.json
-msgid "Webhook"
-msgstr "Webhook"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Webhook"
-msgstr "Webhook"
-
+#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Webhook"
+#. Label of a shortcut in the Integrations Workspace
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Webhook"
-msgstr "Webhook"
-
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Webhook"
-msgstr "Webhook"
+msgstr ""
+#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook'
#. Name of a DocType
-#: integrations/doctype/webhook_data/webhook_data.json
-msgid "Webhook Data"
-msgstr "Data Webhook"
-
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
msgid "Webhook Data"
msgstr "Data Webhook"
#. Name of a DocType
-#: integrations/doctype/webhook_header/webhook_header.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
msgstr "Header Webhook"
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr "Header Webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr "Permintaan Webhook"
+msgstr ""
+#. Label of a Link in the Build Workspace
#. Name of a DocType
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
msgstr ""
-#. Linked DocType in Webhook's connections
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Webhook Request Log"
-msgstr ""
-
-#. Label of a Password field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_secret (Password) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr "Rahasia Webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_security (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr "Keamanan Webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr "Webhook Trigger"
+msgstr ""
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr "URL Webhook"
-
-#. Name of a Workspace
-#: email/doctype/newsletter/newsletter.py:451
-#: website/workspace/website/website.json
-msgid "Website"
-msgstr "Situs Web"
+msgstr ""
#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
+#. Name of a Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/public/js/frappe/ui/apps_switcher.js:125
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/website/workspace/website/website.json
msgid "Website"
msgstr "Situs Web"
#. Name of a report
-#: website/report/website_analytics/website_analytics.json
+#: frappe/website/report/website_analytics/website_analytics.json
msgid "Website Analytics"
msgstr "Analisis Situs Web"
#. Name of a role
-#: core/doctype/comment/comment.json
-#: website/doctype/about_us_settings/about_us_settings.json
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json website/doctype/color/color.json
-#: website/doctype/contact_us_settings/contact_us_settings.json
-#: website/doctype/help_category/help_category.json
-#: website/doctype/portal_settings/portal_settings.json
-#: website/doctype/web_form/web_form.json
-#: website/doctype/web_page/web_page.json
-#: website/doctype/website_script/website_script.json
-#: website/doctype/website_settings/website_settings.json
-#: website/doctype/website_sidebar/website_sidebar.json
-#: website/doctype/website_slideshow/website_slideshow.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr "Website Manager"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_meta_tag/website_meta_tag.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
msgstr "Meta Tag situs web"
#. Name of a DocType
-#: website/doctype/website_route_meta/website_route_meta.json
-msgid "Website Route Meta"
-msgstr "Rute Situs Web Meta"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Route Meta"
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
msgstr "Rute Situs Web Meta"
#. Name of a DocType
-#: website/doctype/website_route_redirect/website_route_redirect.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
msgstr "Pengalihan Rute Situs Web"
#. Name of a DocType
-#: website/doctype/website_script/website_script.json
-msgid "Website Script"
-msgstr "Script Website"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Script"
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/workspace/website/website.json
msgid "Website Script"
msgstr "Script Website"
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the website_search_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Website Search Field"
msgstr ""
-#: core/doctype/doctype/doctype.py:1473
+#: frappe/core/doctype/doctype/doctype.py:1522
msgid "Website Search Field must be a valid fieldname"
msgstr ""
#. Name of a DocType
-#: website/doctype/website_settings/website_settings.json
-msgid "Website Settings"
-msgstr "Pengaturan situs web"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Website Settings"
msgstr "Pengaturan situs web"
+#. Label of the website_sidebar (Link) field in DocType 'Web Form'
+#. Label of the website_sidebar (Link) field in DocType 'Web Page'
#. Name of a DocType
-#: website/doctype/website_sidebar/website_sidebar.json
-msgid "Website Sidebar"
-msgstr "Sidebar situs"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Website Sidebar"
-msgstr "Sidebar situs"
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Website Sidebar"
-msgstr "Sidebar situs"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Sidebar"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/workspace/website/website.json
msgid "Website Sidebar"
msgstr "Sidebar situs"
#. Name of a DocType
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
msgstr "Website Barang Sidebar"
#. Name of a DocType
-#: website/doctype/website_slideshow/website_slideshow.json
-msgid "Website Slideshow"
-msgstr "Situs Slideshow"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
msgstr "Situs Slideshow"
#. Name of a DocType
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
msgstr "Situs web Slideshow Barang"
+#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
-#: website/doctype/website_theme/website_theme.json
-msgid "Website Theme"
-msgstr "Situs Tema"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Website Theme"
-msgstr "Situs Tema"
-
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Website Theme"
-msgstr "Situs Tema"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Theme"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+#: frappe/website/workspace/website/website.json
msgid "Website Theme"
msgstr "Situs Tema"
#. Name of a DocType
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
msgstr "Tema Situs Web Abaikan Aplikasi"
-#. Label of a Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr "Situs Tema Gambar"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image_link (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
msgstr ""
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Websocket"
+msgstr ""
+
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Wednesday"
-msgstr "Rabu"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Wednesday"
-msgstr "Rabu"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Wednesday"
-msgstr "Rabu"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Wednesday"
-msgstr "Rabu"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the wednesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Wednesday"
-msgstr "Rabu"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:269
+#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
msgstr "Minggu"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr "Hari kerja"
-
-#: public/js/frappe/utils/common.js:399
-#: website/report/website_analytics/website_analytics.js:24
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Weekly"
-msgstr "Mingguan"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Weekly"
-msgstr "Mingguan"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Weekly"
-msgstr "Mingguan"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Weekly"
-msgstr "Mingguan"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Weekly"
-msgstr "Mingguan"
-
#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:399
+#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
msgstr "Mingguan"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Weekly Long"
-msgstr "Panjang Mingguan"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr "Panjang Mingguan"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:372
+#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
msgstr ""
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_email_template (Link) field in DocType 'System
+#. Settings'
+#. Label of the welcome_email_template (Link) field in DocType 'Email Group'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr "Template Email Selamat Datang"
+msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Welcome Email Template"
-msgstr "Template Email Selamat Datang"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_url (Data) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
msgstr ""
#. Name of a Workspace
-#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:468
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "Welcome Workspace"
msgstr ""
-#: core/doctype/user/user.py:361
+#: frappe/core/doctype/user/user.py:416
msgid "Welcome email sent"
msgstr "Email Selamat Datang telah dikirim"
-#: core/doctype/user/user.py:436
+#: frappe/core/doctype/user/user.py:477
msgid "Welcome to {0}"
msgstr "Selamat Datang di {0}"
+#: frappe/public/js/frappe/ui/notifications/notifications.js:62
+msgid "What's New"
+msgstr ""
+
#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
-msgstr "Ketika diaktifkan ini akan memungkinkan para tamu untuk mengunggah file ke aplikasi Anda, Anda dapat mengaktifkan ini jika Anda ingin mengumpulkan file dari pengguna tanpa harus mereka masuk, misalnya dalam formulir web aplikasi pekerjaan."
+msgstr ""
+
+#. Description of the 'Store Attached PDF Document' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
+msgstr ""
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:440
-msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "Tampilan DocType terkait mana yang harus dibawa oleh pintasan ini?"
+#: frappe/core/page/permission_manager/permission_manager_help.html:18
+msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
+msgstr ""
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "Tampilan DocType terkait mana yang harus dibawa oleh pintasan ini?"
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the width (Data) field in DocType 'DocField'
+#. Label of the width (Int) field in DocType 'Report Column'
+#. Label of the width (Data) field in DocType 'Custom Field'
+#. Label of the width (Data) field in DocType 'Customize Form Field'
+#. Label of the width (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
-msgstr "Lebar"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Width"
-msgstr "Lebar"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
+msgid "Widths can be set in px or %."
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
-msgid "Width"
-msgstr "Lebar"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Width"
-msgstr "Lebar"
-
-#. Label of a Int field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Width"
-msgstr "Lebar"
-
-#. Label of a Check field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr "Filter Karakter Pengganti"
+msgstr ""
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Will add \"%\" before and after the query"
msgstr ""
#. Description of the 'Short Name' (Data) field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blogger/blogger.json
msgid "Will be used in url (usually first name)."
-msgstr "Akan digunakan dalam url (biasanya nama depan)."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
msgstr "Akan menjadi ID login anda"
-#: printing/page/print_format_builder/print_format_builder.js:424
+#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
msgstr "Hanya akan ditampilkan jika judul bagian diaktifkan"
#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
#. in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0."
-msgstr "Akan menjalankan pekerjaan terjadwal hanya sekali sehari untuk situs tidak aktif. Default 4 hari jika diatur ke 0."
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
+msgstr ""
-#: public/js/frappe/form/print_utils.js:13
+#: frappe/public/js/frappe/form/print_utils.js:38
msgid "With Letter head"
msgstr "Dengan kepala Surat"
-#: workflow/doctype/workflow/workflow.js:140
-msgid "Worflow States Don't Exist"
-msgstr "Status Worflow Tidak Ada"
-
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_information_section (Section Break) field in DocType 'RQ
+#. Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Information"
msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_name (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
msgstr ""
-#. Name of a DocType
-#: workflow/doctype/workflow/workflow.json
-msgid "Workflow"
-msgstr "Alur Kerja"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Workflow"
-msgstr "Alur Kerja"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Workflow"
-msgstr "Alur Kerja"
-
#. Group in DocType's connections
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Workflow"
-msgstr "Alur Kerja"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workflow"
+#. Name of a DocType
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/workflow_builder/store.js:129
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow"
msgstr "Alur Kerja"
#. Name of a DocType
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_action/workflow_action.py:486
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
msgstr "Tindakan Alur Kerja"
#. Name of a DocType
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
msgstr "Induk Tindakan Alur Kerja"
-#. Label of a Data field in DocType 'Workflow Action Master'
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-msgctxt "Workflow Action Master"
+#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
+#. Master'
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr "Nama Tindakan Alur Kerja"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
msgstr ""
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "Tindakan Alur Kerja tidak dibuat untuk status opsional"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:4
+#: frappe/public/js/workflow_builder/store.js:129
+#: frappe/workflow/doctype/workflow/workflow.js:25
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
msgid "Workflow Builder"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
+#. State'
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Workflow Builder ID"
-msgstr ""
-
-#: workflow/doctype/workflow/workflow.js:11
+#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
msgstr ""
-#. Label of a JSON field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_data (JSON) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
msgstr ""
+#: frappe/public/js/workflow_builder/components/Properties.vue:42
+msgid "Workflow Details"
+msgstr ""
+
#. Name of a DocType
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
msgstr "Status Dokumen Alur Kerja"
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_name (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr "Nama Alur Kerja"
+msgstr ""
+#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
msgstr "Status Alur Kerja"
-#. Label of a Data field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Workflow State"
-msgstr "Status Alur Kerja"
-
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr "Kolom Status Alur Kerja"
+msgstr ""
-#: model/workflow.py:63
+#: frappe/model/workflow.py:61
msgid "Workflow State not set"
msgstr "Negara Alur Kerja tidak diatur"
-#: model/workflow.py:201 model/workflow.py:209
+#: frappe/model/workflow.py:204 frappe/model/workflow.py:212
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Transisi status Workflow tidak diizinkan dari {0} ke {1}"
-#: model/workflow.py:327
+#: frappe/workflow/doctype/workflow/workflow.js:140
+msgid "Workflow States Don't Exist"
+msgstr ""
+
+#: frappe/model/workflow.py:328
msgid "Workflow Status"
msgstr "Status Alur Kerja"
#. Name of a DocType
-#: workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
msgstr "Transisi Alur Kerja"
-#. Description of the Onboarding Step 'Setup Approval Workflows'
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions."
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Workflow state represents the current state of a document."
msgstr ""
-#. Name of a DocType
-#: desk/doctype/workspace/workspace.json
-#: public/js/frappe/ui/toolbar/search_utils.js:541
-#: public/js/frappe/views/workspace/workspace.js:10
-msgid "Workspace"
-msgstr ""
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Workspace"
+#: frappe/public/js/workflow_builder/store.js:83
+msgid "Workflow updated successfully"
msgstr ""
+#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workspace"
+#. Name of a DocType
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
+#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
+#: frappe/public/js/frappe/utils/utils.js:932
+#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
-#: public/js/frappe/router.js:194
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
msgstr ""
#. Name of a role
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
msgstr ""
+#. Label of a standard navbar item
+#. Type: Action
#. Name of a DocType
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/hooks.py
+msgid "Workspace Settings"
+msgstr ""
+
+#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Setup Completed"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1265
-msgid "Workspace {0} Created Successfully"
+#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Visibility"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:894
-msgid "Workspace {0} Deleted Successfully"
-msgstr ""
-
-#: public/js/frappe/views/workspace/workspace.js:672
-msgid "Workspace {0} Edited Successfully"
+#: frappe/public/js/frappe/views/workspace/workspace.js:538
+msgid "Workspace {0} created"
msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Write"
-msgstr "Menulis"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
+msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Write"
-msgstr "Menulis"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
+msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Write"
-msgstr "Menulis"
+#: frappe/desk/page/setup_wizard/setup_wizard.py:41
+msgid "Wrapping up"
+msgstr "Membungkus"
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
+#. Label of the write (Check) field in DocType 'Custom DocPerm'
+#. Label of the write (Check) field in DocType 'DocPerm'
+#. Label of the write (Check) field in DocType 'DocShare'
+#. Label of the write (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr "Menulis"
+msgstr ""
-#: model/base_document.py:840
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "Nilai Ambil Dari Salah"
-#: public/js/frappe/views/reports/report_view.js:464
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "Bidang Axis X"
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr "X Field"
+msgstr ""
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "XLSX"
-msgstr "XLSX"
+msgstr ""
-#. Label of a Table field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr "Y Axis"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:471
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
msgstr "Bidang Sumbu Y"
-#: public/js/frappe/views/reports/query_report.js:1132
+#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1224
msgid "Y Field"
-msgstr "Y Field"
-
-#. Label of a Select field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Y Field"
-msgstr "Y Field"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yahoo Mail"
-msgstr "Surat Yahoo"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yandex.Mail"
-msgstr "Yandex.Mail"
+msgstr ""
-#. Label of a Data field in DocType 'Company History'
-#: website/doctype/company_history/company_history.json
-msgctxt "Company History"
+#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart'
+#. Label of the year (Data) field in DocType 'Company History'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/doctype/company_history/company_history.json
msgid "Year"
msgstr "Tahun"
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Year"
-msgstr "Tahun"
-
-#: public/js/frappe/utils/common.js:403
-msgid "Yearly"
-msgstr "Tahunan"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Yearly"
-msgstr "Tahunan"
-
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Yearly"
-msgstr "Tahunan"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Yearly"
-msgstr "Tahunan"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Yearly"
-msgstr "Tahunan"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Yearly"
-msgstr "Tahunan"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Yearly"
-msgstr "Tahunan"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:403
msgid "Yearly"
msgstr "Tahunan"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Yellow"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:127
-#: integrations/doctype/webhook/webhook.py:137
-#: public/js/form_builder/utils.js:336
-#: public/js/frappe/form/controls/link.js:471
-#: public/js/frappe/list/list_sidebar_group_by.js:223
-#: public/js/frappe/views/reports/query_report.js:1513
-#: website/doctype/help_article/templates/help_article.html:25
+#. Option for the 'Standard' (Select) field in DocType 'Page'
+#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
+#. Settings'
+#. Option for the 'Standard' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:92
+#: frappe/email/doctype/notification/notification.py:96
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:121
+#: frappe/integrations/doctype/webhook/webhook.py:128
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:336
+#: frappe/public/js/frappe/form/controls/link.js:494
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1663
+#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ya"
-#: public/js/frappe/ui/messages.js:32
+#: frappe/public/js/frappe/ui/messages.js:32
msgctxt "Approve confirmation dialog"
msgid "Yes"
msgstr "Ya"
-#: public/js/frappe/ui/filters/filter.js:500
+#: frappe/public/js/frappe/ui/filters/filter.js:545
msgctxt "Checkbox is checked"
msgid "Yes"
msgstr "Ya"
-#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
-#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Yes"
-msgstr "Ya"
+#: frappe/public/js/frappe/ui/filters/filter.js:727
+msgid "Yesterday"
+msgstr ""
-#. Option for the 'Standard' (Select) field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Yes"
-msgstr "Ya"
-
-#. Option for the 'Standard' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Yes"
-msgstr "Ya"
-
-#. Option for the 'Is Standard' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Yes"
-msgstr "Ya"
-
-#: public/js/frappe/utils/user.js:33
+#: frappe/public/js/frappe/utils/user.js:33
msgctxt "Name of the current user. For example: You edited this 5 hours ago."
msgid "You"
msgstr "Anda"
-#: public/js/frappe/form/footer/form_timeline.js:462
+#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
msgstr ""
-#: public/js/frappe/dom.js:425
+#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
msgstr "Anda terhubung ke internet."
-#: permissions.py:417
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
+msgid "You are impersonating as another user."
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
+msgid "You are not allowed to access this resource"
+msgstr ""
+
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Anda tidak diizinkan untuk mengakses catatan {0} ini karena itu terkait dengan {1} '{2}' di bidang {3}"
-#: permissions.py:406
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:69
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
msgstr "Anda tidak diizinkan untuk membuat kolom"
-#: core/doctype/report/report.py:93
+#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
msgstr "Anda tidak diizinkan untuk menghapus Laporan Standar"
-#: website/doctype/website_theme/website_theme.py:74
+#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
msgstr "Anda tidak diizinkan menghapus Tema Website standar"
-#: core/doctype/report/report.py:380
+#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
msgstr ""
-#: permissions.py:614
+#: frappe/core/doctype/data_import/exporter.py:121
+#: frappe/core/doctype/data_import/exporter.py:125
+#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Anda tidak diizinkan mengekspor {} doctype"
-#: public/js/frappe/views/treeview.js:431
+#: frappe/public/js/frappe/views/treeview.js:448
msgid "You are not allowed to print this report"
msgstr "Anda tidak diizinkan untuk mencetak laporan ini"
-#: public/js/frappe/views/communication.js:673
+#: frappe/public/js/frappe/views/communication.js:784
msgid "You are not allowed to send emails related to this document"
msgstr "Anda tidak diizinkan mengirim email yang terkait dokumen ini"
-#: website/doctype/web_form/web_form.py:463
+#: frappe/website/doctype/web_form/web_form.py:594
msgid "You are not allowed to update this Web Form Document"
msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini"
-#: public/js/frappe/request.js:35
+#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
msgstr "Anda tidak terhubung ke Internet. Coba lagi setelah beberapa saat."
-#: public/js/frappe/web_form/webform_script.js:22
+#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
msgstr ""
-#: www/app.py:25
+#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
msgstr "Anda tidak diizinkan mengakses halaman ini."
-#: __init__.py:834
-msgid "You are not permitted to access this resource."
+#: frappe/__init__.py:465
+msgid "You are not permitted to access this resource. Login to access"
msgstr ""
-#: public/js/frappe/form/sidebar/document_follow.js:131
+#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Anda sekarang mengikuti dokumen ini. Anda akan menerima pembaruan harian melalui email. Anda dapat mengubahnya di Pengaturan Pengguna."
-#: core/doctype/installed_applications/installed_applications.py:59
+#: frappe/core/doctype/installed_applications/installed_applications.py:98
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
-#: email/doctype/email_account/email_account.js:221
+#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:413
+#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:741
+#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Anda dapat menambahkan properti dinamis dari dokumen dengan menggunakan template Jinja."
-#: templates/emails/new_user.html:22
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:22
msgid "You can also copy-paste following link in your browser"
msgstr ""
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "You can also copy-paste this "
msgstr "Anda juga dapat menyalin-menempel ini"
-#: templates/emails/delete_data_confirmation.html:11
+#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
msgstr "Anda juga dapat menyalin-menempel ini {0} ke peramban Anda"
-#: public/js/frappe/logtypes.js:21
+#: frappe/core/page/permission_manager/permission_manager_help.html:17
+msgid "You can change Submitted documents by cancelling them and then, amending them."
+msgstr ""
+
+#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:199
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: core/doctype/file/file.py:684
+#: frappe/model/delete_doc.py:137
+msgid "You can disable this {0} instead of deleting it."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:736
msgid "You can increase the limit from System Settings."
msgstr ""
-#: utils/synchronization.py:48
+#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
msgstr ""
-#: public/js/frappe/form/controls/markdown_editor.js:74
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
msgstr ""
-#: core/doctype/user_type/user_type.py:103
+#: frappe/public/js/frappe/list/bulk_operations.js:42
+msgid "You can only print upto {0} documents at a time"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
msgstr ""
-#: handler.py:226
-msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents."
+#: frappe/handler.py:182
+msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
msgstr ""
-#: core/doctype/data_export/exporter.py:201
+#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
msgstr "Anda hanya dapat mengunggah hingga 5000 data sekaligus. (Mungkin kurang dalam beberapa kasus)"
-#: desk/query_report.py:336
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "You can select one from the following,"
+msgstr ""
+
+#. Description of the 'Rate limit for email link login' (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "You can set a high value here if multiple users will be logging in from the same network."
+msgstr ""
+
+#: frappe/desk/query_report.py:345
msgid "You can try changing the filters of your report."
msgstr "Anda dapat mencoba mengubah filter laporan Anda."
-#: public/js/frappe/form/link_selector.js:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "You can use Customize Form to set levels on fields."
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:30
msgid "You can use wildcard %"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:387
+#: frappe/custom/doctype/customize_form/customize_form.py:389
msgid "You can't set 'Options' for field {0}"
msgstr "Anda tidak dapat menyetel 'Pilihan' untuk bidang {0}"
-#: custom/doctype/customize_form/customize_form.py:391
+#: frappe/custom/doctype/customize_form/customize_form.py:393
msgid "You can't set 'Translatable' for field {0}"
msgstr "Anda tidak dapat mengatur 'Translatable' untuk field {0}"
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:74
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
msgid "You cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:61
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
msgctxt "Form timeline"
msgid "You cancelled this document {1}"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:417
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Anda tidak dapat membuat bagan dasbor dari satu DocTypes"
-#: social/doctype/energy_point_log/energy_point_log.py:44
-msgid "You cannot give review points to yourself"
-msgstr "Anda tidak dapat memberikan poin ulasan untuk diri sendiri"
-
-#: custom/doctype/customize_form/customize_form.py:383
+#: frappe/custom/doctype/customize_form/customize_form.py:385
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Anda tidak bisa unset 'Read Only' untuk bidang {0}"
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:121
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:110
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:183
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:172
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:442
+#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:138
-#: public/js/frappe/form/sidebar/form_sidebar.js:106
+#: frappe/public/js/frappe/form/footer/form_timeline.js:140
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
msgstr ""
-#: client.py:430
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
+msgctxt "Form timeline"
+msgid "You created this document {0}"
+msgstr ""
+
+#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
msgstr ""
-#: public/js/frappe/request.js:174
+#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Anda tidak memiliki izin yang cukup untuk mengakses sumber ini. Silahkan hubungi manajer Anda untuk mendapatkan akses."
-#: app.py:355
+#: frappe/app.py:381
msgid "You do not have enough permissions to complete the action"
msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan"
-#: public/js/frappe/form/sidebar/review.js:91
-msgid "You do not have enough points"
-msgstr "Anda tidak memiliki poin yang cukup"
-
-#: social/doctype/energy_point_log/energy_point_log.py:296
-msgid "You do not have enough review points"
-msgstr "Anda tidak memiliki poin ulasan yang cukup"
-
-#: www/printview.py:369
-msgid "You do not have permission to view this document"
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
msgstr ""
-#: public/js/frappe/form/form.js:979
+#: frappe/desk/query_report.py:873
+msgid "You do not have permission to access {0}: {1}."
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:960
msgid "You do not have permissions to cancel all linked documents."
msgstr "Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan."
-#: desk/query_report.py:39
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Anda tidak memiliki akses ke Laporan: {0}"
-#: website/doctype/web_form/web_form.py:699
+#: frappe/website/doctype/web_form/web_form.py:797
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: utils/response.py:278
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Anda tidak memiliki izin untuk mengakses file ini"
-#: desk/query_report.py:45
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Anda tidak memiliki izin untuk mendapatkan laporan tentang: {0}"
-#: website/doctype/web_form/web_form.py:167
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Anda tidak memiliki izin untuk mengakses dokumen ini"
-#: social/doctype/energy_point_log/energy_point_log.py:156
-msgid "You gained {0} point"
-msgstr "Anda mendapatkan poin {0}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:158
-msgid "You gained {0} points"
-msgstr "Anda mendapatkan {0} poin"
-
-#: templates/emails/new_message.html:1
+#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from: "
msgstr "Anda memiliki pesan baru dari:"
-#: handler.py:123
+#: frappe/handler.py:118
msgid "You have been successfully logged out"
msgstr "Anda telah berhasil keluar"
-#: custom/doctype/customize_form/customize_form.py:240
+#: frappe/custom/doctype/customize_form/customize_form.py:244
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:347
+#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
-#: templates/includes/likes/likes.py:31
+#: frappe/templates/includes/likes/likes.py:31
msgid "You have received a ❤️ like on your blog post"
msgstr ""
-#: twofactor.py:455
+#: frappe/twofactor.py:432
msgid "You have to enable Two Factor Auth from System Settings."
msgstr ""
-#: public/js/frappe/model/create_new.js:332
+#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
msgstr "Anda belum menyimpan perubahan pada formulir ini. Silakan simpan sebelum Anda melanjutkan."
-#: core/doctype/log_settings/log_settings.py:127
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
+msgid "You have unseen notifications"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
msgstr "Anda memiliki {0} yang tak terlihat"
-#: public/js/frappe/list/list_view.js:468
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
+msgid "You haven't added any Dashboard Charts or Number Cards yet."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:498
msgid "You haven't created a {0} yet"
msgstr ""
-#: rate_limiter.py:150
+#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:149
-#: public/js/frappe/form/sidebar/form_sidebar.js:95
+#: frappe/public/js/frappe/form/footer/form_timeline.js:151
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:308
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr ""
-#: website/doctype/web_form/web_form.py:669
+#: frappe/website/doctype/web_form/web_form.py:793
msgid "You must be logged in to use this form."
msgstr ""
-#: website/doctype/web_form/web_form.py:503
+#: frappe/website/doctype/web_form/web_form.py:634
msgid "You must login to submit this form"
msgstr "Anda harus login untuk mengirimkan formulir ini"
-#: desk/doctype/workspace/workspace.py:69
+#: frappe/model/document.py:358
+msgid "You need the '{0}' permission on {1} {2} to perform this action."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:127
+msgid "You need to be Workspace Manager to delete a public workspace."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: website/doctype/web_form/web_form.py:90
+#: frappe/www/attribution.py:16
+msgid "You need to be a system user to access this page."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Anda perlu berada dalam mode developer untuk mengedit Formulir Web Standar"
-#: utils/response.py:259
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses back-up."
-#: www/me.py:13 www/third_party_apps.py:10
+#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
msgstr "Anda harus login untuk mengakses halaman ini"
-#: website/doctype/web_form/web_form.py:158
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "Anda harus login untuk mengakses ini {0}."
-#: www/login.html:73
+#: frappe/public/js/frappe/widgets/links_widget.js:63
+msgid "You need to create these first: "
+msgstr ""
+
+#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
msgstr "Anda harus mengaktifkan JavaScript agar aplikasi Anda berfungsi."
-#: core/doctype/docshare/docshare.py:62
+#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
msgstr "Anda harus memiliki izin \"Berbagi\""
-#: utils/print_format.py:156
+#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
msgstr "Anda harus menginstal pycup untuk menggunakan fitur ini!"
-#: email/doctype/email_account/email_account.py:140
+#: frappe/core/doctype/recorder/recorder.js:38
+msgid "You need to select indexes you want to add first."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
msgstr ""
-#: model/rename_doc.py:385
-msgid "You need write permission to rename"
-msgstr "Anda memerlukan izin tulis untuk mengubah nama"
+#: frappe/model/rename_doc.py:391
+msgid "You need write permission on {0} {1} to merge"
+msgstr ""
-#: client.py:458
+#: frappe/model/rename_doc.py:386
+msgid "You need write permission on {0} {1} to rename"
+msgstr ""
+
+#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:418
+#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:525
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
msgstr "Tampaknya Anda baik untuk pergi!"
-#: public/js/frappe/list/bulk_operations.js:29
+#: frappe/templates/includes/contact.js:20
+msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:31
msgid "You selected Draft or Cancelled documents"
msgstr "Anda memilih dokumen yang masih bersifat Rancangan atau yang telah Dibatalkan"
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:48
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
msgctxt "Form timeline"
msgid "You submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:35
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
msgctxt "Form timeline"
msgid "You submitted this document {0}"
msgstr ""
-#: public/js/frappe/form/sidebar/document_follow.js:144
+#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
msgstr "Anda berhenti mengikuti dokumen ini"
-#: public/js/frappe/form/footer/form_timeline.js:182
+#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:385
+#: frappe/public/js/frappe/desk.js:553
+msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:57
+msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
msgstr "Negara Anda"
-#: desk/page/setup_wizard/setup_wizard.js:377
+#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
msgstr "Bahasa Anda"
-#: templates/includes/comments/comments.html:21
+#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
msgstr "Nama Anda"
-#: patches/v14_0/update_workspace2.py:34
+#: frappe/public/js/frappe/list/bulk_operations.js:132
+msgid "Your PDF is ready for download"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
msgstr "Pintasan Anda"
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
msgstr ""
-#: auth.py:465
+#: frappe/auth.py:514
msgid "Your account has been locked and will resume after {0} seconds"
msgstr "Akun Anda telah dikunci dan akan dilanjutkan setelah {0} detik"
-#: desk/form/assign_to.py:268
+#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
msgstr "Tugas Anda pada {0} {1} telah dihapus oleh {2}"
-#: templates/pages/integrations/gcalendar-success.html:11
+#: frappe/core/doctype/file/file.js:74
+msgid "Your browser does not support the audio element."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:56
+msgid "Your browser does not support the video element."
+msgstr ""
+
+#: frappe/templates/pages/integrations/gcalendar-success.html:11
msgid "Your connection request to Google Calendar was successfully accepted"
msgstr "Permintaan koneksi Anda ke Google Kalender berhasil diterima"
-#: www/contact.html:35
+#: frappe/www/contact.html:35
msgid "Your email address"
msgstr "Alamat email anda"
-#: public/js/frappe/web_form/web_form.js:424
+#: frappe/public/js/frappe/web_form/web_form.js:428
msgid "Your form has been successfully updated"
msgstr ""
-#: templates/emails/new_user.html:6
+#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
msgstr "Id login Anda"
-#: www/update-password.html:165
+#: frappe/www/update-password.html:192
msgid "Your new password has been set successfully."
msgstr ""
-#: www/update-password.html:145
+#: frappe/www/update-password.html:172
msgid "Your old password is incorrect."
msgstr ""
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr "Nama dan alamat organisasi Anda untuk footer email."
+msgstr ""
-#: templates/emails/auto_reply.html:2
+#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Permintaan Anda telah diterima. Kami akan segera menanggapi. Jika Anda memiliki informasi tambahan, silakan balas email ini."
-#: app.py:346
+#: frappe/app.py:374
msgid "Your session has expired, please login again to continue."
msgstr "Sesi Anda telah kedaluwarsa, silahkan login kembali untuk melanjutkan"
-#: templates/emails/verification_code.html:1
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
+msgid "Your site is undergoing maintenance or being updated."
+msgstr ""
+
+#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
msgstr ""
-#. Success message of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Your website is all set up!"
-msgstr ""
-
-#: utils/data.py:1518
+#: frappe/utils/data.py:1558
msgid "Zero"
msgstr "Nol"
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr "Nol berarti mengirim pembaruan data kapan saja"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265
+msgid "[Action taken by {0}]"
+msgstr ""
+
+#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_doctype"
-msgstr "_doctype"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the _report (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_report"
-msgstr "_laporan"
+msgstr ""
-#: utils/background_jobs.py:94
+#: frappe/database/database.py:360
+msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
+msgstr ""
+
+#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:219
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "adjust"
-msgstr "penyesuaian"
-
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr "after_insert"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-center"
-msgstr "rata-tengah"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-justify"
-msgstr "rata-kanan-kiri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-left"
-msgstr "rata-kiri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-right"
-msgstr "rata-kanan"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr "Merubah"
+msgstr ""
-#: public/js/frappe/utils/utils.js:396 utils/data.py:1528
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564
msgid "and"
msgstr "dan"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-down"
-msgstr "panah-bawah"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-left"
-msgstr "panah-kiri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-right"
-msgstr "panah-kanan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-up"
-msgstr "panah-atas"
-
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "ascending"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "asterisk"
-msgstr "asterisk"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "backward"
-msgstr "mundur"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ban-circle"
-msgstr "lingkaran-larangan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "barcode"
-msgstr "barcode"
-
-#: model/document.py:1337
-msgid "beginning with"
-msgstr "dimulai dengan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bell"
-msgstr "bel"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr "biru"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bold"
-msgstr "tebal"
+#: frappe/public/js/frappe/form/workflow.js:35
+msgid "by Role"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "book"
-msgstr "buku"
+#. Label of the profile (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "cProfile Output"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bookmark"
-msgstr "penanda"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "briefcase"
-msgstr "tas kantor"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bullhorn"
-msgstr "pengeras suara"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:270
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
msgid "calendar"
msgstr "kalender"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "calendar"
-msgstr "kalender"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "camera"
-msgstr "kamera"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr "Batalkan"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "certificate"
-msgstr "sertifikat"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "check"
-msgstr "Check"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-down"
-msgstr "chevron-down"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-left"
-msgstr "chevron-kiri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-right"
-msgstr "chevron-kanan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-up"
-msgstr "chevron-up"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-down"
-msgstr "lingkaran-panah-down"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-left"
-msgstr "lingkaran-panah-kiri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-right"
-msgstr "lingkaran-panah-kanan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-up"
-msgstr "lingkaran-panah-up"
-
-#: templates/includes/list/filters.html:19
+#: frappe/templates/includes/list/filters.html:19
msgid "clear"
msgstr "jelas"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "cog"
-msgstr "gigi"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "comment"
-msgstr "komentar"
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
+msgid "commented"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr "Buat"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
msgstr ""
-#: public/js/frappe/utils/utils.js:1113
+#: frappe/public/js/frappe/form/controls/duration.js:218
+#: frappe/public/js/frappe/utils/utils.js:1119
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr "d"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "darkgrey"
-msgstr "Abu-abu gelap"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:65
+#: frappe/core/page/dashboard_view/dashboard_view.js:65
msgid "dashboard"
msgstr "dasbor"
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd-mm-yyyy"
-msgstr "dd-mm-yyyy"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd.mm.yyyy"
-msgstr "dd.mm.yyyy"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd/mm/yyyy"
-msgstr "hh / bb / tttt"
-
-#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "default"
msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "dd.mm.yyyy"
+msgstr ""
+
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
+#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "dd/mm/yyyy"
+msgstr ""
+
+#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr "Hapus"
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:163
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
msgstr "tipe dokumen ..., misalnya pelanggan"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download"
-msgstr "unduh"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download-alt"
-msgstr "mengunduh-alt"
-
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr "misalnya \"Support \",\" Penjualan \",\" Jerry Yang \""
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:183
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ..."
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "misalnya pop.gmail.com / imap.gmail.com"
-
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "misalnya pop.gmail.com / imap.gmail.com"
+msgstr ""
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr "misalnya replies@yourcomany.com. Semua balasan akan datang ke inbox ini."
+msgstr ""
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. smtp.gmail.com"
-msgstr "misalnya smtp.gmail.com"
-
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr "misalnya smtp.gmail.com"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:98
+#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
msgstr "misalnya:"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "edit"
-msgstr "Ubah"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eject"
-msgstr "mengeluarkan"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "emacs"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "email"
-msgstr "surel"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "email"
-msgstr "surel"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "email inbox"
msgstr "Kotak Masuk Surel"
-#: permissions.py:411 permissions.py:422
-#: public/js/frappe/form/controls/link.js:479
+#: frappe/permissions.py:425 frappe/permissions.py:436
+#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "kosong"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "envelope"
-msgstr "amplop"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "exclamation-sign"
-msgstr "seru-sign"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr "Ekspor"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-close"
-msgstr "eye-close"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-open"
-msgstr "eye-terbuka"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "facebook"
-msgstr "facebook"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "facetime-video"
-msgstr "facetime video"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr "fairlogin"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-backward"
-msgstr "cepat mundur"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-forward"
-msgstr "fast-forward"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "file"
-msgstr "berkas"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "film"
-msgstr "film"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "filter"
-msgstr "Filter"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fire"
-msgstr "api"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "flag"
-msgstr "tanda"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-close"
-msgstr "folder-close"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-open"
-msgstr "folder terbuka"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "font"
-msgstr "fon"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "forward"
-msgstr "depan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fullscreen"
-msgstr "fullscreen"
-
-#: public/js/frappe/utils/energy_point_utils.js:61
-msgid "gained by {0} via automatic rule {1}"
-msgstr "diperoleh sebesar {0} melalui aturan otomatis {1}"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "gift"
-msgstr "hadiah"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "glass"
-msgstr "kaca"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "globe"
-msgstr "di seluruh dunia."
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr "hijau"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "grey"
msgstr ""
-#: utils/backups.py:375
+#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: public/js/frappe/utils/utils.js:1117
+#: frappe/public/js/frappe/form/controls/duration.js:219
+#: frappe/public/js/frappe/utils/utils.js:1123
msgctxt "Hours (Field: Duration)"
msgid "h"
-msgstr "h"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-down"
-msgstr "tangan-ke bawah"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-left"
-msgstr "tangan kiri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-right"
-msgstr "tangan kanan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-up"
-msgstr "tangan-ke atas"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hdd"
-msgstr "hdd"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "headphones"
-msgstr "headphone"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "heart"
-msgstr "isinya dihati"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "home"
-msgstr "rumah"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:280
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296
msgid "hub"
msgstr "pusat"
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the icon (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr "icon"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr "Impor"
+msgstr ""
#. Description of the 'Read Time' (Int) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "in minutes"
-msgstr "dalam menit"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "inbox"
-msgstr "Kotak Masuk"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-left"
-msgstr "indent-kiri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-right"
-msgstr "indent kanan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "info-sign"
-msgstr "info-tanda"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "italic"
-msgstr "italic"
-
-#: templates/signup.html:11 www/login.html:10
+#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:46
+#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
msgstr "baru saja"
-#: desk/desktop.py:254 desk/query_report.py:279
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "leaf"
-msgstr "cuti"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "light-blue"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "link"
-msgstr "Link"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr "linkedin"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "list"
-msgstr "daftar"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list"
-msgstr "daftar"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list-alt"
-msgstr "daftar-alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "lock"
-msgstr "mengunci"
-
-#: www/third_party_apps.html:41
+#: frappe/www/third_party_apps.html:43
msgid "logged in"
msgstr "Login"
+#: frappe/website/doctype/web_form/web_form.js:362
+msgid "login_required"
+msgstr ""
+
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "long"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
msgstr ""
-#: public/js/frappe/utils/utils.js:1121
+#: frappe/public/js/frappe/form/controls/duration.js:220
+#: frappe/public/js/frappe/utils/utils.js:1127
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr "m"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "magnet"
-msgstr "magnet"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "map-marker"
-msgstr "peta-penanda"
-
-#: model/rename_doc.py:214
+#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "digabung {0} ke {1}"
-#: website/doctype/blog_post/templates/blog_post.html:25
-#: website/doctype/blog_post/templates/blog_post_row.html:36
+#: frappe/website/doctype/blog_post/templates/blog_post.html:25
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36
msgid "min read"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus"
-msgstr "kurang"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus-sign"
-msgstr "minus tanda"
-
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr "mm-dd-yyyy"
+msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr "hh / bb / tttt"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "module"
-msgstr "modul"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:178
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
msgstr "nama modul ..."
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "move"
-msgstr "pindah"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "music"
-msgstr "musik"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:144
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160
msgid "new"
msgstr "baru"
-#: public/js/frappe/ui/toolbar/awesome_bar.js:158
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
msgid "new type of document"
msgstr "jenis baru dokumen"
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_failed (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr "upaya tidak gagal"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
msgstr ""
-#: model/document.py:1336
-msgid "none of"
-msgstr "tidak ada"
-
-#. Label of a Check field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
+#. Label of the notified (Check) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:25
+#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
msgstr "sekarang"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "off"
-msgstr "lepas"
+#: frappe/public/js/frappe/form/grid_pagination.js:116
+msgid "of"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok"
-msgstr "ok"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-circle"
-msgstr "ok-lingkaran"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-sign"
-msgstr "ok-tanda"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the old_parent (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr "old_parent"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_cancel"
-msgstr "on_cancel"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr "dalam perubahan"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_submit"
-msgstr "on_submit"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr "on_trash"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update"
-msgstr "on_update"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update_after_submit"
-msgstr "on_update_after_submit"
+msgstr ""
-#: model/document.py:1335
-msgid "one of"
-msgstr "Salah satu"
-
-#: utils/data.py:1535
-msgid "only."
-msgstr "saja."
-
-#: public/js/frappe/utils/utils.js:393 www/login.html:87
+#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
+#: frappe/www/login.py:112
msgid "or"
msgstr "atau"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr "jeruk"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "page"
-msgstr "halaman"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pause"
-msgstr "jeda"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pencil"
-msgstr "pensil"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "picture"
-msgstr "gambar"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "plain"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plane"
-msgstr "pesawat"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play"
-msgstr "bermain"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play-circle"
-msgstr "bermain-lingkaran"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus"
-msgstr "plus"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus-sign"
-msgstr "tanda plus"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr "mencetak"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "print"
-msgstr "mencetak"
-
-#. Label of a HTML field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the processlist (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr "ungu"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "qrcode"
-msgstr "kode qr"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "query-report"
-msgstr "laporan-query"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "question-sign"
-msgstr "tanda tanya"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "random"
-msgstr "acak"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr "Membaca"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr "merah"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "refresh"
-msgstr "menyegarkan"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove"
-msgstr "menghapus"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-circle"
-msgstr "hapus-lingkaran"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-sign"
-msgstr "hapus-tanda"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:221
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234
msgid "removed rows for {0}"
msgstr ""
-#: model/rename_doc.py:217
+#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
msgstr "berganti nama dari {0} ke {1}"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "repeat"
-msgstr "ulangi"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr "Laporan"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-full"
-msgstr "mengubah ukuran-penuh"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-horizontal"
-msgstr "resize-horisontal"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-small"
-msgstr "resize-kecil"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-vertical"
-msgstr "resize-vertikal"
-
-#. Label of a HTML field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
+#. Label of the response (HTML) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr "tanggapan"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:60
+#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
msgstr "dipulihkan {0} sebagai {1}"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "retweet"
-msgstr "-retweet"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "road"
-msgstr "jalan"
-
-#: public/js/frappe/utils/utils.js:1125
+#: frappe/public/js/frappe/form/controls/duration.js:221
+#: frappe/public/js/frappe/utils/utils.js:1131
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr "s"
+msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "s256"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "screenshot"
-msgstr "screenshot"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "search"
-msgstr "Pencarian"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "select"
-msgstr "Pilih"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr "saham"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share"
-msgstr "saham"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share-alt"
-msgstr "share-alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "shopping-cart"
-msgstr "shopping-cart"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "short"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "short"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "signal"
-msgstr "sinyal"
-
-#: public/js/frappe/widgets/number_card_widget.js:265
+#: frappe/public/js/frappe/widgets/number_card_widget.js:298
msgid "since last month"
msgstr "sejak bulan lalu"
-#: public/js/frappe/widgets/number_card_widget.js:264
+#: frappe/public/js/frappe/widgets/number_card_widget.js:297
msgid "since last week"
msgstr "sejak minggu lalu"
-#: public/js/frappe/widgets/number_card_widget.js:266
+#: frappe/public/js/frappe/widgets/number_card_widget.js:299
msgid "since last year"
msgstr "sejak tahun lalu"
-#: public/js/frappe/widgets/number_card_widget.js:263
+#: frappe/public/js/frappe/widgets/number_card_widget.js:296
msgid "since yesterday"
msgstr "Dari Kemarin"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star"
-msgstr "bintang"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star-empty"
-msgstr "Bintang-kosong"
-
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:194
+#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-backward"
-msgstr "langkah-mundur"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-forward"
-msgstr "langkah-maju"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "stop"
-msgstr "berhenti"
-
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
msgstr ""
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
msgstr ""
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr "Kirim"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tag"
-msgstr "Label"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:173
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
msgstr "nama tag ..., misalnya #tag"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tags"
-msgstr "tag"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tasks"
-msgstr "tugas"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:168
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
msgstr "teks dalam tipe dokumen"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-height"
-msgstr "text-height"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-width"
-msgstr "text-width"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th"
-msgstr "th"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-large"
-msgstr "th-besar"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-list"
-msgstr "th-list"
-
-#: public/js/frappe/form/controls/data.js:35
+#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
msgstr ""
-#: tests/test_translate.py:158
+#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-down"
-msgstr "thumbs-down"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-up"
-msgstr "thumbs-up"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "time"
-msgstr "Durasi"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tint"
-msgstr "warna"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "trash"
-msgstr "sampah"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr "Indonesia"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "upload"
-msgstr "unggah"
+#: frappe/public/js/frappe/change_log.html:7
+msgid "updated to {0}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:340
+#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "user"
-msgstr "pengguna"
-
-#: public/js/frappe/ui/filters/filter.js:339
+#: frappe/public/js/frappe/ui/filters/filter.js:360
msgid "values separated by commas"
msgstr "nilai-nilai dipisahkan oleh koma"
-#. Label of a HTML field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the version_table (HTML) field in DocType 'Audit Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:386
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
msgstr "melalui Aturan Penugasan"
-#: core/doctype/data_import/importer.py:259
-#: core/doctype/data_import/importer.py:280
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
+msgid "via Auto Repeat"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:271
+#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
msgstr "melalui Impor Data"
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
msgstr ""
-#: email/doctype/notification/notification.py:214
+#: frappe/email/doctype/notification/notification.py:361
msgid "via Notification"
msgstr "melalui Notifikasi"
-#: public/js/frappe/utils/energy_point_utils.js:46
-msgid "via automatic rule {0} on {1}"
-msgstr "via aturan otomatis {0} pada {1}"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:17
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
msgstr "melalui {0}"
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-down"
-msgstr "Volume-down"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vim"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-off"
-msgstr "Volume-off"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vscode"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-up"
-msgstr "volume-up"
-
-#: templates/includes/oauth_confirmation.html:5
+#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "warning-sign"
-msgstr "sinyal-peringatan"
-
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "wrench"
-msgstr "kunci"
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "wkhtmltopdf"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:622
+msgid "wkhtmltopdf 0.12.x (with patched qt)."
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr "Menulis"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr "kuning"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:58
+#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
msgstr "kemarin"
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr "yyyy-mm-dd"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-in"
-msgstr "perbesar"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-out"
-msgstr "perkecil"
-
-#: desk/doctype/event/event.js:83
-#: integrations/doctype/google_drive/google_drive.js:19
+#: frappe/desk/doctype/event/event.js:87
+#: frappe/public/js/frappe/form/footer/form_timeline.js:547
msgid "{0}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:81
-#: public/js/frappe/ui/toolbar/search_utils.js:82
-msgid "{0} ${label}"
-msgstr ""
-
-#: public/js/frappe/ui/toolbar/search_utils.js:177
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198
msgid "{0} ${type}"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:77
-#: public/js/frappe/views/gantt/gantt_view.js:54
+#: frappe/public/js/frappe/data_import/data_exporter.js:80
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:54
msgid "{0} ({1})"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:76
+#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
msgstr "{0} ({1}) (1 baris wajib)"
-#: public/js/frappe/views/gantt/gantt_view.js:53
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:346
-#: public/js/frappe/ui/toolbar/awesome_bar.js:349
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
msgid "{0} = {1}"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:29
+#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
msgstr "{0} Kalender"
-#: public/js/frappe/views/reports/report_view.js:544
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} Bagan"
-#: core/page/dashboard_view/dashboard_view.js:67
-#: public/js/frappe/ui/toolbar/search_utils.js:331
-#: public/js/frappe/ui/toolbar/search_utils.js:332
-#: public/js/frappe/utils/utils.js:929
-#: public/js/frappe/views/dashboard/dashboard_view.js:10
+#: frappe/core/page/dashboard_view/dashboard_view.js:67
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} Dasbor"
-#: public/js/frappe/form/grid_row.js:456
-#: public/js/frappe/list/list_settings.js:224
-#: public/js/frappe/views/kanban/kanban_settings.js:178
+#: frappe/public/js/frappe/form/grid_row.js:470
+#: frappe/public/js/frappe/list/list_settings.js:227
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
msgstr "{0} Bidang"
-#: integrations/doctype/google_calendar/google_calendar.py:360
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
msgstr "{0} Acara Kalender Google disinkronkan."
-#: integrations/doctype/google_contacts/google_contacts.py:190
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
msgstr "{0} Kontak Google disinkronkan."
-#: public/js/frappe/form/footer/form_timeline.js:463
+#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
msgstr ""
-#: public/js/frappe/utils/utils.js:923
-#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
+#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
+#: frappe/www/list.html:8
msgid "{0} List"
msgstr "{0} Daftar"
-#: public/js/frappe/utils/pretty_date.js:37
+#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
-msgstr "{0} M"
+msgstr ""
-#: public/js/frappe/views/map/map_view.js:14
+#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
msgstr ""
-#: public/js/frappe/utils/utils.js:926
-msgid "{0} Modules"
-msgstr "{0} Modul"
-
-#: public/js/frappe/form/quick_entry.js:113
+#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
msgstr "{0} Nama"
-#: model/base_document.py:1027
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
-#: public/js/frappe/utils/utils.js:920
-#: public/js/frappe/widgets/chart_widget.js:325
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/widgets/chart_widget.js:366
msgid "{0} Report"
msgstr "{0} Laporan"
-#: public/js/frappe/list/list_settings.js:32
-#: public/js/frappe/views/kanban/kanban_settings.js:26
+#: frappe/public/js/frappe/views/reports/query_report.js:955
+msgid "{0} Reports"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:32
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
msgstr "{0} Pengaturan"
-#: public/js/frappe/views/treeview.js:139
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
+#: frappe/public/js/frappe/views/treeview.js:152
msgid "{0} Tree"
-msgstr "{0} Tree"
-
-#: public/js/frappe/list/base_list.js:206
-msgid "{0} View"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:126
-#: public/js/frappe/form/sidebar/form_sidebar.js:86
+#: frappe/public/js/frappe/form/footer/form_timeline.js:128
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
msgstr "{0} Tampilan Halaman"
-#: public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+msgid "{0} Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:225
msgid "{0} added"
msgstr "{0} ditambahkan"
-#: public/js/frappe/form/controls/data.js:203
+#: frappe/public/js/frappe/form/controls/data.js:204
msgid "{0} already exists. Select another name"
msgstr "{0} sudah ada. Pilih nama lain"
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:37
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
msgstr "{0} sudah berhenti berlangganan"
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:50
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} sudah berhenti berlangganan untuk {1} {2}"
-#: utils/data.py:1715
+#: frappe/utils/data.py:1751
msgid "{0} and {1}"
msgstr "{0} dan {1}"
-#: public/js/frappe/utils/energy_point_utils.js:38
-msgid "{0} appreciated on {1}"
-msgstr "{0} dihargai pada {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:126
-#: social/doctype/energy_point_log/energy_point_log.py:163
-msgid "{0} appreciated your work on {1} with {2} point"
-msgstr "{0} menghargai karya Anda pada {1} dengan {2} poin"
-
-#: social/doctype/energy_point_log/energy_point_log.py:128
-#: social/doctype/energy_point_log/energy_point_log.py:165
-msgid "{0} appreciated your work on {1} with {2} points"
-msgstr "{0} menghargai karya Anda pada {1} dengan {2} poin"
-
-#: public/js/frappe/utils/energy_point_utils.js:53
-msgid "{0} appreciated {1}"
-msgstr "{0} dihargai {1}"
-
-#: public/js/frappe/form/sidebar/review.js:148
-msgid "{0} appreciation point for {1}"
-msgstr ""
-
-#: public/js/frappe/form/sidebar/review.js:150
-msgid "{0} appreciation points for {1}"
-msgstr ""
-
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:72
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
msgstr "{0} saat ini {1}"
-#: printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:95
msgid "{0} are required"
msgstr "{0} wajib diisi"
-#: desk/form/assign_to.py:275
+#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
msgstr "{0} menetapkan tugas baru {1} {2} untuk Anda"
-#: desk/doctype/todo/todo.py:48
+#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
msgstr "{0} ditugaskan {1}: {2}"
-#: public/js/frappe/form/footer/form_timeline.js:414
+#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:77
+#: frappe/core/doctype/system_settings/system_settings.py:150
+msgid "{0} can not be more than {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:68
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: public/js/form_builder/store.js:185
+#: frappe/model/document.py:548
+msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:124
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:115
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:186
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:177
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:443
+#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:380
+#: frappe/website/doctype/blog_post/blog_post.py:382
msgid "{0} comments"
msgstr "{0} komentar"
-#: public/js/frappe/views/interaction.js:261
+#: frappe/core/doctype/doctype/doctype.py:1605
+msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} berhasil dibuat"
-#: public/js/frappe/form/footer/form_timeline.js:139
-#: public/js/frappe/form/sidebar/form_sidebar.js:107
+#: frappe/public/js/frappe/form/footer/form_timeline.js:141
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:154
-msgid "{0} criticism point for {1}"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
+msgctxt "Form timeline"
+msgid "{0} created this document {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:156
-msgid "{0} criticism points for {1}"
-msgstr ""
-
-#: public/js/frappe/utils/energy_point_utils.js:41
-msgid "{0} criticized on {1}"
-msgstr "{0} dikritik pada {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:132
-#: social/doctype/energy_point_log/energy_point_log.py:170
-msgid "{0} criticized your work on {1} with {2} point"
-msgstr "{0} mengkritik karya Anda pada {1} dengan {2} poin"
-
-#: social/doctype/energy_point_log/energy_point_log.py:134
-#: social/doctype/energy_point_log/energy_point_log.py:172
-msgid "{0} criticized your work on {1} with {2} points"
-msgstr "{0} mengkritik karya Anda pada {1} dengan {2} poin"
-
-#: public/js/frappe/utils/energy_point_utils.js:56
-msgid "{0} criticized {1}"
-msgstr "{0} dikritik {1}"
-
-#: public/js/frappe/utils/pretty_date.js:33
+#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
msgstr "{0} h"
-#: public/js/frappe/utils/pretty_date.js:60
+#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
msgstr "{0} hari yang lalu"
-#: website/doctype/website_settings/website_settings.py:96
-#: website/doctype/website_settings/website_settings.py:116
+#: frappe/website/doctype/website_settings/website_settings.py:96
+#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} tidak ada di baris {1}"
-#: database/mariadb/schema.py:131 database/postgres/schema.py:184
+#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} field tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang non-unik"
-#: core/doctype/data_import/importer.py:1017
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1071
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:97
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:157
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:120
-msgid "{0} gained {1} point for {2} {3}"
-msgstr "{0} diperoleh {1} poin untuk {2} {3}"
-
-#: templates/emails/energy_points_summary.html:8
-msgid "{0} gained {1} points"
-msgstr ""
-
-#: social/doctype/energy_point_log/energy_point_log.py:122
-msgid "{0} gained {1} points for {2} {3}"
-msgstr "{0} diperoleh {1} poin untuk {2} {3}"
-
-#: templates/emails/energy_points_summary.html:23
-msgid "{0} gave {1} points"
-msgstr ""
-
-#: public/js/frappe/utils/pretty_date.js:29
+#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
msgstr "{0} j"
-#: core/doctype/user_permission/user_permission.py:76
+#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
msgstr "{0} telah menetapkan nilai default untuk {1}."
-#: email/doctype/newsletter/newsletter.py:382
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} telah berhasil ditambahkan ke Kelompok Email."
-
-#: email/queue.py:127
+#: frappe/email/queue.py:124
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} telah meninggalkan percakapan di {1} {2}"
-#: __init__.py:2373
-msgid "{0} has no versions tracked."
-msgstr "{0} tidak memiliki versi yang dilacak."
-
-#: public/js/frappe/utils/pretty_date.js:54
+#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
msgstr "{0} jam yang lalu"
-#: website/doctype/web_form/templates/web_form.html:145
+#: frappe/website/doctype/web_form/templates/web_form.html:148
msgid "{0} if you are not redirected within {1} seconds"
msgstr ""
-#: website/doctype/website_settings/website_settings.py:102
-#: website/doctype/website_settings/website_settings.py:122
+#: frappe/website/doctype/website_settings/website_settings.py:102
+#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} di baris {1} tidak dapat memiliki URL dan item turunan"
-#: core/doctype/doctype/doctype.py:916
+#: frappe/core/doctype/doctype/doctype.py:934
msgid "{0} is a mandatory field"
msgstr "{0} adalah kolom wajib"
-#: core/doctype/file/file.py:503
+#: frappe/core/doctype/file/file.py:544
msgid "{0} is a not a valid zip file"
msgstr ""
-#: core/doctype/doctype/doctype.py:1559
+#: frappe/core/doctype/doctype/doctype.py:1618
msgid "{0} is an invalid Data field."
msgstr "{0} adalah bidang Data yang tidak valid."
-#: automation/doctype/auto_repeat/auto_repeat.py:147
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} adalah alamat email yang tidak valid di 'Penerima'"
-#: public/js/frappe/views/reports/report_view.js:1394
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:41
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:69
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
msgstr "{0} saat ini {1}"
-#: public/js/frappe/views/reports/report_view.js:1363
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1383
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1373
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1413
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:169
+#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
msgstr "{0} wajib diisi"
-#: core/doctype/document_naming_rule/document_naming_rule.py:49
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
-#: www/printview.py:350
+#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
msgstr "{0} bukan format pencetakan mentah."
-#: public/js/frappe/views/calendar/calendar.js:81
+#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
+msgid "{0} is not a valid Cron expression."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} bukan DocType untuk Dynamic Link yang valid"
-#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189
+#: frappe/email/doctype/email_group/email_group.py:131
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} bukan Alamat Email valid"
-#: utils/__init__.py:157
+#: frappe/geo/doctype/country/country.py:30
+msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} bukanlah Nama yang valid"
-#: utils/__init__.py:136
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} bukan Nomor Telepon yang valid"
-#: model/workflow.py:186
+#: frappe/model/workflow.py:189
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} bukan Status Alur Kerja yang valid. Perbarui Alur Kerja anda dan coba lagi."
-#: permissions.py:795
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: permissions.py:815
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:109
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:117
msgid "{0} is not a valid report format. Report format should one of the following {1}"
msgstr "{0} bukan format laporan yang valid. Format laporan harus salah satu dari yang berikut {1}"
-#: core/doctype/file/file.py:483
+#: frappe/core/doctype/file/file.py:524
msgid "{0} is not a zip file"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1368
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1415
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1409
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1419
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: printing/doctype/print_format/print_format.py:166
+#: frappe/printing/doctype/print_format/print_format.py:173
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} sekarang menjadi format cetak standar untuk doctype {1}"
-#: public/js/frappe/views/reports/report_view.js:1402
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:263 model/naming.py:201
-#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131
+#: frappe/email/doctype/email_account/email_account.py:304
+#: frappe/model/naming.py:218
+#: frappe/printing/doctype/print_format/print_format.py:98
+#: frappe/printing/doctype/print_format/print_format.py:101
+#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} diperlukan"
-#: public/js/frappe/views/reports/report_view.js:1418
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1397
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
-#: public/js/frappe/list/list_view.js:1556
+#: frappe/public/js/frappe/list/list_view.js:1692
msgid "{0} items selected"
msgstr "{0} item dipilih"
-#: public/js/frappe/form/footer/form_timeline.js:150
-#: public/js/frappe/form/sidebar/form_sidebar.js:96
+#: frappe/core/doctype/user/user.py:1384
+msgid "{0} just impersonated as you. They gave this reason: {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:152
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
-#: core/doctype/activity_log/feed.py:13
+#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
msgstr "{0} Telah login"
-#: core/doctype/activity_log/feed.py:19
+#: frappe/core/doctype/activity_log/feed.py:19
msgid "{0} logged out: {1}"
msgstr "{0} log out: {1}"
-#: public/js/frappe/utils/pretty_date.js:27
+#: frappe/public/js/frappe/utils/pretty_date.js:27
msgid "{0} m"
-msgstr "{0} m"
+msgstr ""
-#: desk/notifications.py:373
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} menyebut Anda dalam komentar di {1} {2}"
-#: public/js/frappe/utils/pretty_date.js:50
+#: frappe/public/js/frappe/utils/pretty_date.js:50
msgid "{0} minutes ago"
msgstr "{0} menit yang lalu"
-#: public/js/frappe/utils/pretty_date.js:68
+#: frappe/public/js/frappe/utils/pretty_date.js:68
msgid "{0} months ago"
msgstr "{0} bulan yang lalu"
-#: model/document.py:1564
+#: frappe/model/document.py:1801
msgid "{0} must be after {1}"
msgstr "{0} harus setelah {1}"
-#: utils/csvutils.py:136
+#: frappe/model/document.py:1560
+msgid "{0} must be beginning with '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1562
+msgid "{0} must be equal to '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1558
+msgid "{0} must be none of {1}"
+msgstr ""
+
+#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} harus merupakan salah satu {1}"
-#: model/base_document.py:771
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} harus diatur terlebih dahulu"
-#: model/base_document.py:629
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} harus merupakan kode unik"
-#: core/doctype/language/language.py:42
-msgid ""
-"{0} must begin and end with a letter and can only contain letters,\n"
-"\t\t\t\thyphen or underscore."
+#: frappe/model/document.py:1564
+msgid "{0} must be {1} {2}"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:93
+#: frappe/core/doctype/language/language.py:79
+msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore."
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:90
msgid "{0} not a valid State"
msgstr "{0} bukan Keadaan yang berlaku"
-#: model/rename_doc.py:388
+#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
msgstr "{0} tidak dapat dinamakan kembali"
-#: desk/doctype/desktop_icon/desktop_icon.py:371
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
msgstr "{0} tidak ditemukan"
-#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956
+#: frappe/core/doctype/report/report.py:427
+#: frappe/public/js/frappe/list/list_view.js:1068
msgid "{0} of {1}"
msgstr "{0} dari {1}"
-#: public/js/frappe/list/list_view.js:958
+#: frappe/public/js/frappe/list/list_view.js:1070
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} dari {1} ({2} baris dengan anak-anak)"
-#: email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
+#: frappe/utils/data.py:1566
+msgctxt "Money in words"
+msgid "{0} only."
msgstr ""
-#: utils/data.py:1705
+#: frappe/utils/data.py:1741
msgid "{0} or {1}"
msgstr "{0} atau {1}"
-#: core/doctype/user_permission/user_permission_list.js:177
+#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
msgstr "{0} catatan dihapus"
-#: public/js/frappe/logtypes.js:22
+#: frappe/public/js/frappe/logtypes.js:22
msgid "{0} records are not automatically deleted."
msgstr ""
-#: public/js/frappe/logtypes.js:29
+#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:179
+#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
msgstr "{0} catatan dihapus"
-#: public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
msgstr "{0} catatan akan diekspor"
-#: public/js/frappe/form/footer/form_timeline.js:419
+#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
msgstr ""
-#: desk/doctype/todo/todo.py:58
+#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:139
-#: social/doctype/energy_point_log/energy_point_log.py:178
-msgid "{0} reverted your point on {1}"
-msgstr "{0} mengembalikan poin Anda pada {1}"
+#: frappe/public/js/frappe/roles_editor.js:62
+msgid "{0} role does not have permission on any doctype"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:141
-#: social/doctype/energy_point_log/energy_point_log.py:180
-msgid "{0} reverted your points on {1}"
-msgstr "{0} mengembalikan poin Anda pada {1}"
+#: frappe/model/document.py:1794
+msgid "{0} row #{1}: "
+msgstr ""
-#: public/js/frappe/utils/energy_point_utils.js:44
-#: public/js/frappe/utils/energy_point_utils.js:59
-msgid "{0} reverted {1}"
-msgstr "{0} dikembalikan {1}"
-
-#: desk/query_report.py:583
+#: frappe/desk/query_report.py:625
msgid "{0} saved successfully"
msgstr "{0} berhasil disimpan"
-#: desk/doctype/todo/todo.py:44
+#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
msgstr "{0} penugasan sendiri tugas ini: {1}"
-#: share.py:238
+#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} berbagi dokumen {1} {2} dengan Anda"
-#: core/doctype/docshare/docshare.py:79
+#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
msgstr "{0} berbagi dokumen ini dengan semua orang"
-#: core/doctype/docshare/docshare.py:82
+#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
msgstr "{0} berbagi dokumen ini dengan {1}"
-#: core/doctype/doctype/doctype.py:320
+#: frappe/core/doctype/doctype/doctype.py:316
msgid "{0} should be indexed because it's referred in dashboard connections"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:136
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141
msgid "{0} should not be same as {1}"
msgstr "{0} tidak boleh sama dengan {1}"
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:51
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:42
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
msgctxt "Form timeline"
msgid "{0} submitted this document {1}"
msgstr ""
-#: email/doctype/email_group/email_group.py:61
-#: email/doctype/email_group/email_group.py:132
+#: frappe/email/doctype/email_group/email_group.py:62
+#: frappe/email/doctype/email_group/email_group.py:133
msgid "{0} subscribers added"
msgstr "{0} Pelanggan telah ditambahkan"
-#: email/queue.py:70
+#: frappe/email/queue.py:69
msgid "{0} to stop receiving emails of this type"
msgstr "{0} untuk berhenti menerima email jenis ini"
-#: public/js/frappe/form/controls/date_range.js:46
-#: public/js/frappe/form/controls/date_range.js:62
-#: public/js/frappe/form/formatters.js:218
+#: frappe/public/js/frappe/form/controls/date_range.js:48
+#: frappe/public/js/frappe/form/controls/date_range.js:64
+#: frappe/public/js/frappe/form/formatters.js:234
msgid "{0} to {1}"
msgstr "{0} sampai {1}"
-#: core/doctype/docshare/docshare.py:91
+#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
msgstr "{0} berhenti berbagi dokumen ini dengan {1}"
-#: custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:253
msgid "{0} updated"
msgstr "{0} diperbarui"
-#: public/js/frappe/form/controls/multiselect_list.js:162
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
msgstr "{0} nilai dipilih"
-#: public/js/frappe/form/footer/form_timeline.js:183
+#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:35
+#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr "{0} w"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:64
+#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
msgstr "{0} minggu yang lalu"
-#: public/js/frappe/utils/pretty_date.js:39
+#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
msgstr "{0} t"
-#: public/js/frappe/utils/pretty_date.js:72
+#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
msgstr "{0} tahun lalu"
-#: public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
msgstr "{0} {1} ditambahkan"
-#: public/js/frappe/utils/dashboard_utils.js:270
+#: frappe/public/js/frappe/utils/dashboard_utils.js:270
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} ditambahkan ke Dasbor {2}"
-#: model/base_document.py:562 model/rename_doc.py:112
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} sudah ada"
-#: model/base_document.py:873
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} tidak dapat \"{2}\". Seharusnya salah satu dari \"{3}\""
-#: utils/nestedset.py:343
+#: frappe/utils/nestedset.py:340
msgid "{0} {1} cannot be a leaf node as it has children"
msgstr "{0} {1} tidak bisa menjadi node tumpuan karena memiliki node anak"
-#: model/rename_doc.py:377
+#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} belum ada, pilih target baru untuk menggabungkan"
-#: public/js/frappe/form/form.js:970
+#: frappe/public/js/frappe/form/form.js:951
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2}"
-#: model/document.py:170 permissions.py:566
+#: frappe/model/document.py:258 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} tidak ditemukan"
-#: model/delete_doc.py:231
+#: frappe/model/delete_doc.py:248
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Rekaman yang Dikirim tidak dapat dihapus. Anda harus {2} Membatalkan {3} dulu."
-#: model/base_document.py:988
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, Baris {1}"
-#: model/base_document.py:993
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+msgid "{0}/{1} complete | Please leave this tab open until completion."
+msgstr ""
+
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) akan terpotong, karena karakter maksimum yang diizinkan adalah {2}"
-#: core/doctype/doctype/doctype.py:1741
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "{0}: Cannot set Amend without Cancel"
msgstr "{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu"
-#: core/doctype/doctype/doctype.py:1759
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Cannot set Assign Amend if not Submittable"
msgstr "{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan"
-#: core/doctype/doctype/doctype.py:1757
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Assign Submit if not Submittable"
msgstr "{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable"
-#: core/doctype/doctype/doctype.py:1736
+#: frappe/core/doctype/doctype/doctype.py:1795
msgid "{0}: Cannot set Cancel without Submit"
msgstr "{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan"
-#: core/doctype/doctype/doctype.py:1743
+#: frappe/core/doctype/doctype/doctype.py:1802
msgid "{0}: Cannot set Import without Create"
msgstr "{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu"
-#: core/doctype/doctype/doctype.py:1739
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
msgstr "{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan"
-#: core/doctype/doctype/doctype.py:1763
+#: frappe/core/doctype/doctype/doctype.py:1822
msgid "{0}: Cannot set import as {1} is not importable"
msgstr "{0}: Tidak dapat melakukan impor karena {1} bukan data yang dapat diimpor"
-#: automation/doctype/auto_repeat/auto_repeat.py:393
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Gagal melampirkan dokumen berulang baru. Untuk mengaktifkan melampirkan dokumen di email pemberitahuan ulangi otomatis, aktifkan {1} di Pengaturan Cetak"
-#: core/doctype/doctype/doctype.py:1377
+#: frappe/core/doctype/doctype/doctype.py:1426
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Field '{1}' tidak dapat ditetapkan sebagai Unik karena memiliki nilai-nilai non-unik"
-#: core/doctype/doctype/doctype.py:1285
+#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Bidang {1} berturut-turut {2} tidak dapat disembunyikan dan wajib tanpa default"
-#: core/doctype/doctype/doctype.py:1244
+#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Bidang {1} dari tipe {2} tidak boleh wajib"
-#: core/doctype/doctype/doctype.py:1232
+#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Fieldname {1} muncul beberapa kali dalam baris {2}"
-#: core/doctype/doctype/doctype.py:1362
+#: frappe/core/doctype/doctype/doctype.py:1413
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Fieldtype {1} untuk {2} tidak boleh unik"
-#: core/doctype/doctype/doctype.py:1698
+#: frappe/core/doctype/doctype/doctype.py:1755
msgid "{0}: No basic permissions set"
msgstr "{0}: Tidak ada perizinan dasar yang ditetapkan"
-#: core/doctype/doctype/doctype.py:1712
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Hanya satu aturan diperbolehkan dengan Peran yang sama, Tingkat dan {1}"
-#: core/doctype/doctype/doctype.py:1266
+#: frappe/core/doctype/doctype/doctype.py:1315
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Opsi harus berupa DocType yang valid untuk bidang {1} di baris {2}"
-#: core/doctype/doctype/doctype.py:1255
+#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Opsi yang diperlukan untuk bidang jenis Tautan atau jenis tabel {1} di baris {2}"
-#: core/doctype/doctype/doctype.py:1273
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Opsi {1} harus sama dengan nama doctype {2} untuk isian {3}"
-#: core/doctype/doctype/doctype.py:1727
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "{0}: Other permission rules may also apply"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1784
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Izin pada tingkat 0 harus ditetapkan sebelum tingkat yang lebih tinggi ditetapkan"
-#: public/js/frappe/form/controls/data.js:50
+#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1219
+#: frappe/core/doctype/doctype/doctype.py:1268
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
-#: contacts/doctype/address/address.js:35
-#: contacts/doctype/contact/contact.js:78
-#: public/js/frappe/views/workspace/workspace.js:169
+#: frappe/contacts/doctype/address/address.js:35
+#: frappe/contacts/doctype/contact/contact.js:88
msgid "{0}: {1}"
msgstr ""
-#: workflow/doctype/workflow_action/workflow_action.py:172
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} diatur untuk menyatakan {2}"
-#: public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:1282
msgid "{0}: {1} vs {2}"
-msgstr "{0}: {1} vs {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1385
+#: frappe/core/doctype/doctype/doctype.py:1434
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: Fieldtype {1} untuk {2} tidak dapat diindeks"
-#: public/js/frappe/utils/datatable.js:12
+#: frappe/public/js/frappe/form/quick_entry.js:195
+msgid "{1} saved"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:13
+#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:16
+#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
msgstr ""
-#: public/js/frappe/utils/datatable.js:17
+#: frappe/public/js/frappe/utils/datatable.js:17
msgid "{count} rows selected"
msgstr ""
-#: core/doctype/doctype/doctype.py:1439
+#: frappe/core/doctype/doctype/doctype.py:1488
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}."
-#: public/js/frappe/form/form.js:553
+#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
msgstr "{} Selesai"
-#: utils/data.py:2418
+#: frappe/utils/data.py:2523
msgid "{} Invalid python code on line {}"
msgstr ""
-#: utils/data.py:2427
+#: frappe/utils/data.py:2532
msgid "{} Possibly invalid python code.
{}"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:54
+#. Count format of shortcut in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "{} Published"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:40
+#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
msgstr ""
-#: email/doctype/email_account/email_account.py:193
-#: email/doctype/email_account/email_account.py:200
+#: frappe/email/doctype/email_account/email_account.py:223
+#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: utils/data.py:123
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} bukan string tanggal yang valid."
-#: commands/utils.py:519
+#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
-#: database/db_manager.py:81
+#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
msgstr ""
-#: utils/backups.py:441
+#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
msgstr ""
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
+msgid "← Back to upload files"
+msgstr ""
+
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index a74b2c56da..1400f4927b 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-22 21:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -1632,7 +1632,7 @@ msgstr "Zezwól na dużą liczbę edycji"
#. Label of the allow_edit (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Allow Bulk Editing"
-msgstr ""
+msgstr "Zezwalaj na masową edycję"
#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System
#. Settings'
@@ -1780,7 +1780,8 @@ msgstr ""
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Allow editing even if the doctype has a workflow set up.\n\n"
"Does nothing if a workflow isn't set up."
-msgstr ""
+msgstr "Opcja \"Zezwalaj na masową edycję\" pozwala na edycję wielu rekordów naraz, nawet jeśli dany typ dokumentu ma zdefiniowany obieg pracy.\n"
+"Jeśli obieg pracy nie jest ustawiony, opcja ta nie ma żadnego wpływu."
#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -7122,7 +7123,7 @@ msgstr "Wyłącz automatyczne odświeżanie"
#. 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Automatic Recency Filters"
-msgstr ""
+msgstr "Wyłącz automatyczne filtry aktualności"
#. Label of the disable_change_log_notification (Check) field in DocType
#. 'System Settings'
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index 144f3b0b53..eaa758a7b2 100644
--- a/frappe/locale/pt_BR.po
+++ b/frappe/locale/pt_BR.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-22 21:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -3043,7 +3043,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
-msgstr ""
+msgstr "CCO"
#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
@@ -3691,7 +3691,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:77
msgctxt "Email Recipients"
msgid "CC"
-msgstr ""
+msgstr "Cc"
#. Label of the cmd (Data) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 2072a76fdc..19aa178092 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-22 21:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -20257,12 +20257,12 @@ msgstr "Lila"
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Push Notification Settings"
-msgstr "Tryck ut Avisering Inställningar"
+msgstr "Skicka ut Avisering Inställningar"
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Push Notifications"
-msgstr "Tryck ut Aviseringar"
+msgstr "Skicka ut Aviseringar"
#. Label of the push_to_google_calendar (Check) field in DocType 'Google
#. Calendar'
@@ -25966,7 +25966,7 @@ msgstr "Nästa Schemalagda datum kan inte vara senare än Slut Datum."
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
-msgstr "Tryck ut Relä Server URL nyckel (`push_relay_server_url`) saknas i webbplats konfiguration"
+msgstr "Skicka ut Relä Server URL nyckel (`push_relay_server_url`) saknas i webbplats konfiguration"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
diff --git a/frappe/locale/th.po b/frappe/locale/th.po
index 20a0efc090..2fe8ca9cc7 100644
--- a/frappe/locale/th.po
+++ b/frappe/locale/th.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-22 21:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -3043,7 +3043,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:87
msgctxt "Email Recipients"
msgid "BCC"
-msgstr ""
+msgstr "BCC"
#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
@@ -7242,7 +7242,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:30
msgctxt "Discard Email"
msgid "Discard"
-msgstr ""
+msgstr "ยกเลิก"
#: frappe/public/js/frappe/form/form.js:848
msgid "Discard {0}"
From 74683428cf0af9c9d75533cc0638913f10367a53 Mon Sep 17 00:00:00 2001
From: "Kitti U. @ Ecosoft"
Date: Wed, 23 Jul 2025 12:15:39 +0700
Subject: [PATCH 185/211] feat: Add hook on print pdf (#33387)
---
frappe/utils/print_utils.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/frappe/utils/print_utils.py b/frappe/utils/print_utils.py
index db14eb94e1..f32f38771a 100644
--- a/frappe/utils/print_utils.py
+++ b/frappe/utils/print_utils.py
@@ -87,6 +87,9 @@ def get_print(
if pdf:
return pdf
+ for hook in frappe.get_hooks("on_print_pdf"):
+ frappe.call(hook, doctype=doctype, name=name, print_format=print_format)
+
return get_pdf(html, options=pdf_options, output=output)
From 93b47008995cba96fb087f4f7805084b456798ce Mon Sep 17 00:00:00 2001
From: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
Date: Wed, 23 Jul 2025 14:41:51 +0200
Subject: [PATCH 186/211] fix: make labels in error message translatable
(#33166)
---
frappe/model/base_document.py | 4 ++--
frappe/model/document.py | 4 ++--
frappe/utils/data.py | 4 +++-
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py
index 7797b4d9ce..2480d13375 100644
--- a/frappe/model/base_document.py
+++ b/frappe/model/base_document.py
@@ -873,7 +873,7 @@ class BaseDocument:
assert df.fieldtype == "Dynamic Link"
doctype = self.get(df.options)
if not doctype:
- frappe.throw(_("{0} must be set first").format(self.meta.get_label(df.options)))
+ frappe.throw(_("{0} must be set first").format(_(self.meta.get_label(df.options))))
invalidate_distinct_link_doctypes(df.parent, df.options, doctype)
meta = frappe.get_meta(doctype)
@@ -1051,7 +1051,7 @@ class BaseDocument:
if self.get(fieldname) != value:
frappe.throw(
- _("Value cannot be changed for {0}").format(self.meta.get_label(fieldname)),
+ _("Value cannot be changed for {0}").format(_(self.meta.get_label(fieldname))),
frappe.CannotChangeConstantError,
)
diff --git a/frappe/model/document.py b/frappe/model/document.py
index 3c2d601d1d..148ecf2d9e 100644
--- a/frappe/model/document.py
+++ b/frappe/model/document.py
@@ -833,7 +833,7 @@ class Document(BaseDocument):
if fail:
frappe.throw(
_("Value cannot be changed for {0}").format(
- frappe.bold(self.meta.get_label(field.fieldname))
+ frappe.bold(_(self.meta.get_label(field.fieldname)))
),
exc=frappe.CannotChangeConstantError,
)
@@ -1569,7 +1569,7 @@ class Document(BaseDocument):
def validate_table_has_rows(self, parentfield, raise_exception=None):
"""Raise exception if Table field is empty."""
if not (isinstance(self.get(parentfield), list) and len(self.get(parentfield)) > 0):
- label = self.meta.get_label(parentfield)
+ label = _(self.meta.get_label(parentfield))
frappe.throw(
_("Table {0} cannot be empty").format(label), raise_exception or frappe.EmptyTableError
)
diff --git a/frappe/utils/data.py b/frappe/utils/data.py
index d7c6cc3374..5cbab86cce 100644
--- a/frappe/utils/data.py
+++ b/frappe/utils/data.py
@@ -1911,8 +1911,10 @@ def get_link_to_report(
e.g. get_link_to_report("Revenue Report", "Link Label") returns:
'Link Label'.
"""
+ from frappe import _
+
if not label:
- label = name
+ label = _(name)
if filters:
conditions = []
From 3efc476da92cc08f4c45a5a39b9812fb80bc3686 Mon Sep 17 00:00:00 2001
From: mahsem <137205921+mahsem@users.noreply.github.com>
Date: Wed, 23 Jul 2025 14:44:33 +0200
Subject: [PATCH 187/211] fix: web_form_context_title_translation (#33173)
---
frappe/website/doctype/web_form/web_form.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/website/doctype/web_form/web_form.py b/frappe/website/doctype/web_form/web_form.py
index a02afab0c0..07bc9038d4 100644
--- a/frappe/website/doctype/web_form/web_form.py
+++ b/frappe/website/doctype/web_form/web_form.py
@@ -401,7 +401,7 @@ def get_context(context):
context.parents = frappe.safe_eval(self.breadcrumbs, {"_": _})
if self.show_list and frappe.form_dict.is_new:
- context.title = _("New {0}").format(context.title)
+ context.title = _("New {0}").format(_(context.title))
context.has_header = (frappe.form_dict.name or frappe.form_dict.is_new) and (
frappe.session.user != "Guest" or not self.login_required
From aca28018973ff9f10c176321516a76109673b548 Mon Sep 17 00:00:00 2001
From: Niraj Gautam
Date: Wed, 23 Jul 2025 18:19:52 +0530
Subject: [PATCH 188/211] Parse html to text in export_query (#32794)
* fix: Parse html to text in export_query
* chore: Use xlsx data for csv content
---
frappe/desk/query_report.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py
index 00974c8169..2e17eccea5 100644
--- a/frappe/desk/query_report.py
+++ b/frappe/desk/query_report.py
@@ -356,7 +356,12 @@ def export_query():
)
if file_format_type == "CSV":
- content = get_csv_bytes(xlsx_data, csv_params)
+ from frappe.utils.xlsxutils import handle_html
+
+ content = get_csv_bytes(
+ [[handle_html(frappe.as_unicode(v)) if isinstance(v, str) else v for v in r] for r in xlsx_data],
+ csv_params,
+ )
file_extension = "csv"
elif file_format_type == "Excel":
from frappe.utils.xlsxutils import make_xlsx
From 6174af97551d8ce7306548191c32b267a9bccac3 Mon Sep 17 00:00:00 2001
From: MochaMind
Date: Thu, 24 Jul 2025 03:23:13 +0530
Subject: [PATCH 189/211] fix: Serbian (Latin) translations
---
frappe/locale/sr_CS.po | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po
index 90f6b66b1f..230c038287 100644
--- a/frappe/locale/sr_CS.po
+++ b/frappe/locale/sr_CS.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-23 21:53\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -11911,7 +11911,7 @@ msgstr "Sakrivena polja"
#: frappe/public/js/frappe/views/reports/query_report.js:1641
msgid "Hidden columns include: {0}"
-msgstr ""
+msgstr "Sakrivene kolone uključuju: {0}"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -12864,7 +12864,7 @@ msgstr "Uključi filtere"
#: frappe/public/js/frappe/views/reports/query_report.js:1639
msgid "Include hidden columns"
-msgstr ""
+msgstr "Uključi sakrivene kolone"
#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
@@ -27321,7 +27321,7 @@ msgstr "Prevodi"
#. Name of a role
#: frappe/core/doctype/translation/translation.json
msgid "Translator"
-msgstr ""
+msgstr "Prevodilac"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
From f08776b208a0d2893b7c3a92852dd8ba33eb622f Mon Sep 17 00:00:00 2001
From: MochaMind
Date: Thu, 24 Jul 2025 03:23:15 +0530
Subject: [PATCH 190/211] fix: Serbian (Cyrillic) translations
---
frappe/locale/sr.po | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
index 2d0d68650b..ac1562971f 100644
--- a/frappe/locale/sr.po
+++ b/frappe/locale/sr.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-07-20 09:35+0000\n"
-"PO-Revision-Date: 2025-07-21 21:50\n"
+"PO-Revision-Date: 2025-07-23 21:53\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -11910,7 +11910,7 @@ msgstr "Сакривена поља"
#: frappe/public/js/frappe/views/reports/query_report.js:1641
msgid "Hidden columns include: {0}"
-msgstr ""
+msgstr "Сакривене колоне укључују: {0}"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -12863,7 +12863,7 @@ msgstr "Укључи филтере"
#: frappe/public/js/frappe/views/reports/query_report.js:1639
msgid "Include hidden columns"
-msgstr ""
+msgstr "Укључи сакривене колоне"
#: frappe/public/js/frappe/views/reports/query_report.js:1611
msgid "Include indentation"
@@ -27320,7 +27320,7 @@ msgstr "Преводи"
#. Name of a role
#: frappe/core/doctype/translation/translation.json
msgid "Translator"
-msgstr ""
+msgstr "Преводилац"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
From 5877b980a53b1db14e1f1aa04bf8cae8c7b9730e Mon Sep 17 00:00:00 2001
From: sokumon
Date: Thu, 24 Jul 2025 10:17:17 +0530
Subject: [PATCH 191/211] fix: restrict workflow actions in report view
---
frappe/public/js/frappe/views/reports/report_view.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/frappe/public/js/frappe/views/reports/report_view.js b/frappe/public/js/frappe/views/reports/report_view.js
index 550fd4a419..414785e22d 100644
--- a/frappe/public/js/frappe/views/reports/report_view.js
+++ b/frappe/public/js/frappe/views/reports/report_view.js
@@ -59,11 +59,15 @@ frappe.views.ReportView = class ReportView extends frappe.views.ListView {
}
setup_events() {
+ const me = this;
if (this.list_view_settings?.disable_auto_refresh) {
return;
}
frappe.realtime.doctype_subscribe(this.doctype);
frappe.realtime.on("list_update", (data) => this.on_update(data));
+ this.page.actions_btn_group.on("show.bs.dropdown", () => {
+ me.toggle_workflow_actions();
+ });
}
setup_page() {
From c6a2e6595abebfbd35d11fbf69ed5c14707db886 Mon Sep 17 00:00:00 2001
From: Vehbi Unal <126095007+vehbiu@users.noreply.github.com>
Date: Wed, 23 Jul 2025 13:11:59 -0500
Subject: [PATCH 192/211] fix(utils): convert phone numbers passed into
validate_phone_number to strings
---
frappe/utils/__init__.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/frappe/utils/__init__.py b/frappe/utils/__init__.py
index 7cb5decb3b..c1362bb33b 100644
--- a/frappe/utils/__init__.py
+++ b/frappe/utils/__init__.py
@@ -142,6 +142,9 @@ def validate_phone_number(phone_number, throw=False):
if not phone_number:
return False
+ if not isinstance(phone_number, str):
+ phone_number = str(phone_number)
+
phone_number = phone_number.strip()
match = PHONE_NUMBER_PATTERN.match(phone_number)
From d0006d1fd742bf9bee8f2c8c7c726c9814cdb1d4 Mon Sep 17 00:00:00 2001
From: marination <25857446+marination@users.noreply.github.com>
Date: Thu, 24 Jul 2025 19:20:52 +0200
Subject: [PATCH 193/211] fix: Cut long list view button labels with ellipsis
and tooltip
---
frappe/public/js/frappe/list/list_view.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js
index 3c99298830..ad4e2cef19 100644
--- a/frappe/public/js/frappe/list/list_view.js
+++ b/frappe/public/js/frappe/list/list_view.js
@@ -998,7 +998,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList {
let button_container = "";
if (this.settings.button) {
const button_html = `
-